org.gs4tr.projectdirector.model.dto.xsd.OrganizationInfo 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 OrganizationInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="OrganizationInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ticket" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="currencyCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="domain" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="theme" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "OrganizationInfo", propOrder = {
"name",
"ticket",
"currencyCode",
"domain",
"theme",
"enabled"
})
public class OrganizationInfo {
@XmlElement(required = true, nillable = true)
protected String name;
@XmlElement(required = true, nillable = true)
protected String ticket;
@XmlElement(required = true, nillable = true)
protected String currencyCode;
@XmlElement(required = true, nillable = true)
protected String domain;
@XmlElement(required = true, nillable = true)
protected String theme;
@XmlElement(required = true, type = Boolean.class, nillable = true)
protected Boolean enabled;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the ticket property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTicket() {
return ticket;
}
/**
* Sets the value of the ticket property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTicket(String value) {
this.ticket = value;
}
/**
* Gets the value of the currencyCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCurrencyCode() {
return currencyCode;
}
/**
* Sets the value of the currencyCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCurrencyCode(String value) {
this.currencyCode = value;
}
/**
* Gets the value of the domain property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDomain() {
return domain;
}
/**
* Sets the value of the domain property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDomain(String value) {
this.domain = value;
}
/**
* Gets the value of the theme property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTheme() {
return theme;
}
/**
* Sets the value of the theme property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTheme(String value) {
this.theme = value;
}
/**
* Gets the value of the enabled property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isEnabled() {
return enabled;
}
/**
* Sets the value of the enabled property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setEnabled(Boolean value) {
this.enabled = value;
}
}