org.gs4tr.projectdirector.model.dto.xsd.Policy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of globallink-connect-api Show documentation
Show all versions of globallink-connect-api Show documentation
GlobalLink Connect Java is a library to connect your system to GlobalLink Project Director SOAP API.
The newest version!
package org.gs4tr.projectdirector.model.dto.xsd;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Policy complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Policy">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="policyId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="policyType" type="{http://dto.model.projectdirector.gs4tr.org/xsd}RoleTypeEnum"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Policy", propOrder = {
"category",
"policyId",
"policyType"
})
public class Policy {
@XmlElement(required = true, nillable = true)
protected String category;
@XmlElement(required = true, nillable = true)
protected String policyId;
@XmlElement(required = true, nillable = true)
protected RoleTypeEnum policyType;
/**
* Gets the value of the category property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCategory() {
return category;
}
/**
* Sets the value of the category property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCategory(String value) {
this.category = value;
}
/**
* Gets the value of the policyId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPolicyId() {
return policyId;
}
/**
* Sets the value of the policyId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPolicyId(String value) {
this.policyId = value;
}
/**
* Gets the value of the policyType property.
*
* @return
* possible object is
* {@link RoleTypeEnum }
*
*/
public RoleTypeEnum getPolicyType() {
return policyType;
}
/**
* Sets the value of the policyType property.
*
* @param value
* allowed object is
* {@link RoleTypeEnum }
*
*/
public void setPolicyType(RoleTypeEnum value) {
this.policyType = value;
}
}