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

org.certificateservices.messages.csmessages.jaxb.Organisation 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.21 at 02:30:00 PM CEST 
//


package org.certificateservices.messages.csmessages.jaxb;

import java.math.BigInteger;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for Organisation complex type. * *

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

 * <complexType name="Organisation">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="shortName" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="displayName" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="obfuscatedName" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring"/>
 *         <element name="description" type="{http://certificateservices.org/xsd/csmessages2_0}descriptionstring" minOccurs="0"/>
 *         <element name="matchAdminWith" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
 *         <element name="issuerDistinguishedName" type="{http://certificateservices.org/xsd/csmessages2_0}notemptystring" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Organisation", namespace = "http://certificateservices.org/xsd/csmessages2_0", propOrder = { "shortName", "displayName", "obfuscatedName", "description", "matchAdminWith", "issuerDistinguishedName" }) public class Organisation { @XmlElement(required = true) protected String shortName; @XmlElement(required = true) protected String displayName; @XmlElement(required = true) protected String obfuscatedName; protected String description; protected BigInteger matchAdminWith; protected String issuerDistinguishedName; /** * Gets the value of the shortName property. * * @return * possible object is * {@link String } * */ public String getShortName() { return shortName; } /** * Sets the value of the shortName property. * * @param value * allowed object is * {@link String } * */ public void setShortName(String value) { this.shortName = value; } /** * Gets the value of the displayName property. * * @return * possible object is * {@link String } * */ public String getDisplayName() { return displayName; } /** * Sets the value of the displayName property. * * @param value * allowed object is * {@link String } * */ public void setDisplayName(String value) { this.displayName = value; } /** * Gets the value of the obfuscatedName property. * * @return * possible object is * {@link String } * */ public String getObfuscatedName() { return obfuscatedName; } /** * Sets the value of the obfuscatedName property. * * @param value * allowed object is * {@link String } * */ public void setObfuscatedName(String value) { this.obfuscatedName = 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; } /** * Gets the value of the matchAdminWith property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMatchAdminWith() { return matchAdminWith; } /** * Sets the value of the matchAdminWith property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMatchAdminWith(BigInteger value) { this.matchAdminWith = value; } /** * Gets the value of the issuerDistinguishedName property. * * @return * possible object is * {@link String } * */ public String getIssuerDistinguishedName() { return issuerDistinguishedName; } /** * Sets the value of the issuerDistinguishedName property. * * @param value * allowed object is * {@link String } * */ public void setIssuerDistinguishedName(String value) { this.issuerDistinguishedName = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy