All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.mainstringargs.alpaca.rest.clock.ClockRequestBuilder Maven / Gradle / Ivy

There is a newer version: 5.0.13
Show newest version
package io.github.mainstringargs.alpaca.rest.clock;

import io.github.mainstringargs.alpaca.rest.AlpacaRequestBuilder;

/**
 * The Class ClockRequestBuilder.
 */
public abstract class ClockRequestBuilder extends AlpacaRequestBuilder {


  /** The Constant CLOCK_ENDPOINT. */
  public final static String CLOCK_ENDPOINT = "clock";

  /**
   * Instantiates a new clock request builder.
   *
   * @param baseUrl the base url
   */
  public ClockRequestBuilder(String baseUrl) {
    super(baseUrl);
  }

  /*
   * (non-Javadoc)
   * 
   * @see io.github.mainstringargs.alpaca.rest.AlpacaUrlBuilder#endpoint()
   */
  @Override
  public String getEndpoint() {
    return CLOCK_ENDPOINT;
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy