// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2013.08.09 at 10:45:26 AM EST // package org.jentrata.ebxml.cpa; import java.math.BigInteger; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.XmlValue; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <simpleContent> * <extension base="<http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd>non-empty-string"> * <attribute name="minimumStrength" type="{http://www.w3.org/2001/XMLSchema}integer" /> * <attribute name="oid" type="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}non-empty-string" /> * <attribute name="w3c" type="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}non-empty-string" /> * <attribute name="enumerationType" type="{http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd}non-empty-string" /> * </extension> * </simpleContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "value" }) @XmlRootElement(name = "EncryptionAlgorithm") public class EncryptionAlgorithm { @XmlValue protected String value; @XmlAttribute(name = "minimumStrength", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd") protected BigInteger minimumStrength; @XmlAttribute(name = "oid", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd") protected String oid; @XmlAttribute(name = "w3c", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd") protected String w3C; @XmlAttribute(name = "enumerationType", namespace = "http://www.oasis-open.org/committees/ebxml-cppa/schema/cpp-cpa-2_0.xsd") protected String enumerationType; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the minimumStrength property. * * @return * possible object is * {@link BigInteger } * */ public BigInteger getMinimumStrength() { return minimumStrength; } /** * Sets the value of the minimumStrength property. * * @param value * allowed object is * {@link BigInteger } * */ public void setMinimumStrength(BigInteger value) { this.minimumStrength = value; } /** * Gets the value of the oid property. * * @return * possible object is * {@link String } * */ public String getOid() { return oid; } /** * Sets the value of the oid property. * * @param value * allowed object is * {@link String } * */ public void setOid(String value) { this.oid = value; } /** * Gets the value of the w3C property. * * @return * possible object is * {@link String } * */ public String getW3C() { return w3C; } /** * Sets the value of the w3C property. * * @param value * allowed object is * {@link String } * */ public void setW3C(String value) { this.w3C = value; } /** * Gets the value of the enumerationType property. * * @return * possible object is * {@link String } * */ public String getEnumerationType() { return enumerationType; } /** * Sets the value of the enumerationType property. * * @param value * allowed object is * {@link String } * */ public void setEnumerationType(String value) { this.enumerationType = value; } }