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

com.evrythng.thng.resource.model.store.FixedAmountAdiInputParameters Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (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