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

me.sniggle.matemonkey4j.robospice.dealer.DealerByIdRequest Maven / Gradle / Ivy

The newest version!
package me.sniggle.matemonkey4j.robospice.dealer;

import me.sniggle.matemonkey4j.api.model.Dealer;
import me.sniggle.matemonkey4j.dealer.DealerByIdCallable;
import me.sniggle.matemonkey4j.robospice.BaseMateMonkeyRequest;

/**
 * @author tuxbox, sniggle.me
 *
 * Request wrapper for DealerByIdCallable
 */
public class DealerByIdRequest extends BaseMateMonkeyRequest {

  /**
   *
   * @param id
   *    the id of the dealer to request
   */
  public DealerByIdRequest(long id) {
    super(Dealer.class, new DealerByIdCallable(id));
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy