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

org.certificateservices.messages.sysconfig.jaxb.GetActiveConfigurationResponse 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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

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


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://certificateservices.org/xsd/csmessages2_0}CSResponse">
 *       <sequence>
 *         <element name="systemConfiguration" type="{http://certificateservices.org/xsd/sysconfig2_0}SystemConfiguration"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "systemConfiguration" }) @XmlRootElement(name = "GetActiveConfigurationResponse", namespace = "http://certificateservices.org/xsd/sysconfig2_0") public class GetActiveConfigurationResponse extends CSResponse { @XmlElement(namespace = "http://certificateservices.org/xsd/sysconfig2_0", required = true) protected SystemConfiguration systemConfiguration; /** * Gets the value of the systemConfiguration property. * * @return * possible object is * {@link SystemConfiguration } * */ public SystemConfiguration getSystemConfiguration() { return systemConfiguration; } /** * Sets the value of the systemConfiguration property. * * @param value * allowed object is * {@link SystemConfiguration } * */ public void setSystemConfiguration(SystemConfiguration value) { this.systemConfiguration = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy