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

org.apache.xml.security.configuration.ConfigurationType 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.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.06.13 at 04:35:08 PM 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.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ConfigurationType complex type. * *

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

 * <complexType name="ConfigurationType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Properties" type="{http://www.xmlsecurity.org/NS/configuration}PropertiesType"/>
 *         <element name="SecurityHeaderHandlers" type="{http://www.xmlsecurity.org/NS/configuration}SecurityHeaderHandlersType"/>
 *         <element name="TransformAlgorithms" type="{http://www.xmlsecurity.org/NS/configuration}TransformAlgorithmsType"/>
 *         <element name="JCEAlgorithmMappings" type="{http://www.xmlsecurity.org/NS/configuration}JCEAlgorithmMappingsType"/>
 *         <element name="ResourceResolvers" type="{http://www.xmlsecurity.org/NS/configuration}ResourceResolversType"/>
 *       </sequence>
 *       <attribute name="target" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ConfigurationType", namespace = "http://www.xmlsecurity.org/NS/configuration", propOrder = { "properties", "securityHeaderHandlers", "transformAlgorithms", "jceAlgorithmMappings", "resourceResolvers" }) public class ConfigurationType { @XmlElement(name = "Properties", namespace = "http://www.xmlsecurity.org/NS/configuration", required = true) protected PropertiesType properties; @XmlElement(name = "SecurityHeaderHandlers", namespace = "http://www.xmlsecurity.org/NS/configuration", required = true) protected SecurityHeaderHandlersType securityHeaderHandlers; @XmlElement(name = "TransformAlgorithms", namespace = "http://www.xmlsecurity.org/NS/configuration", required = true) protected TransformAlgorithmsType transformAlgorithms; @XmlElement(name = "JCEAlgorithmMappings", namespace = "http://www.xmlsecurity.org/NS/configuration", required = true) protected JCEAlgorithmMappingsType jceAlgorithmMappings; @XmlElement(name = "ResourceResolvers", namespace = "http://www.xmlsecurity.org/NS/configuration", required = true) protected ResourceResolversType resourceResolvers; @XmlAttribute(name = "target") protected String target; /** * Gets the value of the properties property. * * @return * possible object is * {@link PropertiesType } * */ public PropertiesType getProperties() { return properties; } /** * Sets the value of the properties property. * * @param value * allowed object is * {@link PropertiesType } * */ public void setProperties(PropertiesType value) { this.properties = value; } /** * Gets the value of the securityHeaderHandlers property. * * @return * possible object is * {@link SecurityHeaderHandlersType } * */ public SecurityHeaderHandlersType getSecurityHeaderHandlers() { return securityHeaderHandlers; } /** * Sets the value of the securityHeaderHandlers property. * * @param value * allowed object is * {@link SecurityHeaderHandlersType } * */ public void setSecurityHeaderHandlers(SecurityHeaderHandlersType value) { this.securityHeaderHandlers = value; } /** * Gets the value of the transformAlgorithms property. * * @return * possible object is * {@link TransformAlgorithmsType } * */ public TransformAlgorithmsType getTransformAlgorithms() { return transformAlgorithms; } /** * Sets the value of the transformAlgorithms property. * * @param value * allowed object is * {@link TransformAlgorithmsType } * */ public void setTransformAlgorithms(TransformAlgorithmsType value) { this.transformAlgorithms = value; } /** * Gets the value of the jceAlgorithmMappings property. * * @return * possible object is * {@link JCEAlgorithmMappingsType } * */ public JCEAlgorithmMappingsType getJCEAlgorithmMappings() { return jceAlgorithmMappings; } /** * Sets the value of the jceAlgorithmMappings property. * * @param value * allowed object is * {@link JCEAlgorithmMappingsType } * */ public void setJCEAlgorithmMappings(JCEAlgorithmMappingsType value) { this.jceAlgorithmMappings = value; } /** * Gets the value of the resourceResolvers property. * * @return * possible object is * {@link ResourceResolversType } * */ public ResourceResolversType getResourceResolvers() { return resourceResolvers; } /** * Sets the value of the resourceResolvers property. * * @param value * allowed object is * {@link ResourceResolversType } * */ public void setResourceResolvers(ResourceResolversType value) { this.resourceResolvers = value; } /** * Gets the value of the target property. * * @return * possible object is * {@link String } * */ public String getTarget() { return target; } /** * Sets the value of the target property. * * @param value * allowed object is * {@link String } * */ public void setTarget(String value) { this.target = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy