com.omgm.speedy.eps.soap.model.ParamBarcodeInfo Maven / Gradle / Ivy
package com.omgm.speedy.eps.soap.model;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for paramBarcodeInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="paramBarcodeInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="barcodeLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="barcodeValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
* Instance of this class are used as parameters for providing barcode inpuit fot pdf generation web service calls
*
* @since 1.0.0
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "paramBarcodeInfo", propOrder = {
"barcodeLabel",
"barcodeValue"
})
public class ParamBarcodeInfo {
/**
* Barcode value. For barcode formats other than 'CODE128' it must contain digits only.
* MANDATORY: YES
*/
protected String barcodeLabel;
/**
* Barcode label. It is printed just below the barcode image.
* For barcode formats other than 'CODE128' barcodeLabel must be equal to barcodeValue.
* MANDATORY: NO
*/
protected String barcodeValue;
/**
* Gets the barcode label
* @return Barcode label
*/
public String getBarcodeLabel() {
return barcodeLabel;
}
/**
* Sets the barcode label.
* For barcode formats other than 'CODE128' it must contain digits only
* @param barcodeLabel Barcode label
*/
public void setBarcodeLabel(String barcodeLabel) {
this.barcodeLabel = barcodeLabel;
}
/**
* Gets the barcode value
* @return Barcode value
*/
public String getBarcodeValue() {
return barcodeValue;
}
/**
* Sets the barcode value.
* It is printed just below the barcode image.
* For barcode formats other than 'CODE128' barcode label must be equal to barcode value
* @param barcodeValue Barcode value
*/
public void setBarcodeValue(String barcodeValue) {
this.barcodeValue = barcodeValue;
}
}