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

NpsSDK.Attribute Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package NpsSDK;

public class Attribute {
	
    private String attributeName;
    private String attributeType;
    private Boolean isMandatory;
    
    
	public String getAttributeName() {
		return attributeName;
	}
	public void setAttributeName(String attributeName) {
		this.attributeName = attributeName;
	}
	
	public Boolean isMandatory() {
		return isMandatory;
	}
	public void setIsMandatory(Boolean isMandatory) {
		this.isMandatory = isMandatory;
	}
	
	public String getAttributeType() {
		return attributeType;
	}
	public void setAttributeType(String attributeType) {
		this.attributeType = attributeType;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy