![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.FixedAmountAdiInputParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (c) Copyright 2015 EVRYTHNG Ltd London / Zurich
* www.evrythng.com
*/
package com.evrythng.thng.resource.model.store;
/**
* Input for the BatchPopulatingTask. Defines a shortId template, and a quantity.
*/
public class FixedAmountAdiInputParameters extends BaseAdiInputParameters {
private Number quantity;
public static final String FIELD_QUANTITY = "quantity";
private ShortIdTemplate shortIdTemplate;
public static final String FIELD_SHORT_ID_TEMPLATE = "shortIdTemplate";
public Number getQuantity() {
return quantity;
}
public void setQuantity(final Number quantity) {
this.quantity = quantity;
}
public ShortIdTemplate getShortIdTemplate() {
return shortIdTemplate;
}
public void setShortIdTemplate(final ShortIdTemplate shortIdTemplate) {
this.shortIdTemplate = shortIdTemplate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy