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

org.apache.xml.security.configuration.AlgorithmType Maven / Gradle / Ivy

Go to download

Apache XML Security for Java supports XML-Signature Syntax and Processing, W3C Recommendation 12 February 2002, and XML Encryption Syntax and Processing, W3C Recommendation 10 December 2002. As of version 1.4, the library supports the standard Java API JSR-105: XML Digital Signature APIs.

There is a newer version: 4.0.2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.04.28 at 10:57:34 AM IST 
//


package org.apache.xml.security.configuration;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;


/**
 * 

Java class for AlgorithmType complex type. * *

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

 * <complexType name="AlgorithmType">
 *   <simpleContent>
 *     <extension base="<http://www.w3.org/2001/XMLSchema>string">
 *       <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="Description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="AlgorithmClass" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="RequirementLevel" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="SpecificationURL" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="JCEProvider" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="JCEName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="KeyLength" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="IVLength" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="RequiredKey" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AlgorithmType", namespace = "http://www.xmlsecurity.org/NS/configuration", propOrder = { "value" }) public class AlgorithmType { @XmlValue protected String value; @XmlAttribute(name = "URI", required = true) @XmlSchemaType(name = "anyURI") protected String uri; @XmlAttribute(name = "Description", required = true) protected String description; @XmlAttribute(name = "AlgorithmClass", required = true) protected String algorithmClass; @XmlAttribute(name = "RequirementLevel", required = true) protected String requirementLevel; @XmlAttribute(name = "SpecificationURL") protected String specificationURL; @XmlAttribute(name = "JCEProvider") protected String jceProvider; @XmlAttribute(name = "JCEName", required = true) protected String jceName; @XmlAttribute(name = "KeyLength") protected Integer keyLength; @XmlAttribute(name = "IVLength") protected Integer ivLength; @XmlAttribute(name = "RequiredKey") protected String requiredKey; /** * 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 uri property. * * @return * possible object is * {@link String } * */ public String getURI() { return uri; } /** * Sets the value of the uri property. * * @param value * allowed object is * {@link String } * */ public void setURI(String value) { this.uri = 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 algorithmClass property. * * @return * possible object is * {@link String } * */ public String getAlgorithmClass() { return algorithmClass; } /** * Sets the value of the algorithmClass property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithmClass(String value) { this.algorithmClass = value; } /** * Gets the value of the requirementLevel property. * * @return * possible object is * {@link String } * */ public String getRequirementLevel() { return requirementLevel; } /** * Sets the value of the requirementLevel property. * * @param value * allowed object is * {@link String } * */ public void setRequirementLevel(String value) { this.requirementLevel = value; } /** * Gets the value of the specificationURL property. * * @return * possible object is * {@link String } * */ public String getSpecificationURL() { return specificationURL; } /** * Sets the value of the specificationURL property. * * @param value * allowed object is * {@link String } * */ public void setSpecificationURL(String value) { this.specificationURL = value; } /** * Gets the value of the jceProvider property. * * @return * possible object is * {@link String } * */ public String getJCEProvider() { return jceProvider; } /** * Sets the value of the jceProvider property. * * @param value * allowed object is * {@link String } * */ public void setJCEProvider(String value) { this.jceProvider = value; } /** * Gets the value of the jceName property. * * @return * possible object is * {@link String } * */ public String getJCEName() { return jceName; } /** * Sets the value of the jceName property. * * @param value * allowed object is * {@link String } * */ public void setJCEName(String value) { this.jceName = value; } /** * Gets the value of the keyLength property. * * @return * possible object is * {@link Integer } * */ public Integer getKeyLength() { return keyLength; } /** * Sets the value of the keyLength property. * * @param value * allowed object is * {@link Integer } * */ public void setKeyLength(Integer value) { this.keyLength = value; } /** * Gets the value of the ivLength property. * * @return * possible object is * {@link Integer } * */ public Integer getIVLength() { return ivLength; } /** * Sets the value of the ivLength property. * * @param value * allowed object is * {@link Integer } * */ public void setIVLength(Integer value) { this.ivLength = value; } /** * Gets the value of the requiredKey property. * * @return * possible object is * {@link String } * */ public String getRequiredKey() { return requiredKey; } /** * Sets the value of the requiredKey property. * * @param value * allowed object is * {@link String } * */ public void setRequiredKey(String value) { this.requiredKey = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy