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

org.apache.cxf.ws.security.sts.provider.model.wstrust14.ChoiceChallengeType Maven / Gradle / Ivy

There is a newer version: 2.7.18
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.05.30 at 11:05:18 AM EDT 
//


package org.apache.cxf.ws.security.sts.provider.model.wstrust14;

import java.util.HashMap;
import java.util.Map;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyAttribute;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.namespace.QName;


/**
 * 

Java class for ChoiceChallengeType complex type. * *

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

 * <complexType name="ChoiceChallengeType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Choice" type="{http://docs.oasis-open.org/ws-sx/ws-trust/200802}ChoiceType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="RefID" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="Label" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="ExactlyOne" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ChoiceChallengeType", propOrder = { "choice" }) public class ChoiceChallengeType { @XmlElement(name = "Choice") protected ChoiceType choice; @XmlAttribute(name = "RefID", required = true) @XmlSchemaType(name = "anyURI") protected String refID; @XmlAttribute(name = "Label") protected String label; @XmlAttribute(name = "ExactlyOne") protected Boolean exactlyOne; @XmlAnyAttribute private Map otherAttributes = new HashMap(); /** * Gets the value of the choice property. * * @return * possible object is * {@link ChoiceType } * */ public ChoiceType getChoice() { return choice; } /** * Sets the value of the choice property. * * @param value * allowed object is * {@link ChoiceType } * */ public void setChoice(ChoiceType value) { this.choice = value; } /** * Gets the value of the refID property. * * @return * possible object is * {@link String } * */ public String getRefID() { return refID; } /** * Sets the value of the refID property. * * @param value * allowed object is * {@link String } * */ public void setRefID(String value) { this.refID = value; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the exactlyOne property. * * @return * possible object is * {@link Boolean } * */ public Boolean isExactlyOne() { return exactlyOne; } /** * Sets the value of the exactlyOne property. * * @param value * allowed object is * {@link Boolean } * */ public void setExactlyOne(Boolean value) { this.exactlyOne = value; } /** * Gets a map that contains attributes that aren't bound to any typed property on this class. * *

* the map is keyed by the name of the attribute and * the value is the string value of the attribute. * * the map returned by this method is live, and you can add new attribute * by updating the map directly. Because of this design, there's no setter. * * * @return * always non-null */ public Map getOtherAttributes() { return otherAttributes; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy