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

org.certificateservices.messages.sysconfig.jaxb.SystemConfiguration Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.05.22 at 12:49:39 PM CEST 
//


package org.certificateservices.messages.sysconfig.jaxb;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;

import org.certificateservices.messages.csmessages.jaxb.Organisation;


/**
 * 

Java class for SystemConfiguration complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SystemConfiguration">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="application" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="configurationData" type="{http://certificateservices.org/xsd/sysconfig2_0}ConfigurationData"/>
 *         <element name="organisation" type="{http://certificateservices.org/xsd/csmessages2_0}Organisation"/>
 *         <element name="adminUniqueId" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring" minOccurs="0"/>
 *         <element name="adminDisplayName" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring" minOccurs="0"/>
 *         <element name="description" type="{http://certificateservices.org/xsd/csmessages2_0}descriptionstring" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SystemConfiguration", namespace = "http://certificateservices.org/xsd/sysconfig2_0", propOrder = { "application", "configurationData", "organisation", "adminUniqueId", "adminDisplayName", "description" }) public class SystemConfiguration { @XmlElement(required = true) protected String application; @XmlElement(required = true) protected ConfigurationData configurationData; @XmlElement(required = true) protected Organisation organisation; protected String adminUniqueId; protected String adminDisplayName; protected String description; /** * Gets the value of the application property. * * @return * possible object is * {@link String } * */ public String getApplication() { return application; } /** * Sets the value of the application property. * * @param value * allowed object is * {@link String } * */ public void setApplication(String value) { this.application = value; } /** * Gets the value of the configurationData property. * * @return * possible object is * {@link ConfigurationData } * */ public ConfigurationData getConfigurationData() { return configurationData; } /** * Sets the value of the configurationData property. * * @param value * allowed object is * {@link ConfigurationData } * */ public void setConfigurationData(ConfigurationData value) { this.configurationData = value; } /** * Gets the value of the organisation property. * * @return * possible object is * {@link Organisation } * */ public Organisation getOrganisation() { return organisation; } /** * Sets the value of the organisation property. * * @param value * allowed object is * {@link Organisation } * */ public void setOrganisation(Organisation value) { this.organisation = value; } /** * Gets the value of the adminUniqueId property. * * @return * possible object is * {@link String } * */ public String getAdminUniqueId() { return adminUniqueId; } /** * Sets the value of the adminUniqueId property. * * @param value * allowed object is * {@link String } * */ public void setAdminUniqueId(String value) { this.adminUniqueId = value; } /** * Gets the value of the adminDisplayName property. * * @return * possible object is * {@link String } * */ public String getAdminDisplayName() { return adminDisplayName; } /** * Sets the value of the adminDisplayName property. * * @param value * allowed object is * {@link String } * */ public void setAdminDisplayName(String value) { this.adminDisplayName = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy