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

org.apache.xml.security.binding.xmlenc11.ObjectFactory 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.binding.xmlenc11;

import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;


/**
 * This object contains factory methods for each 
 * Java content interface and Java element interface 
 * generated in the org.apache.xml.security.binding.xmlenc11 package. 
 * 

An ObjectFactory allows you to programatically * construct new instances of the Java representation * for XML content. The Java representation of XML * content can consist of schema derived interfaces * and classes representing the binding of schema * type definitions, element declarations and model * groups. Factory methods for each of these are * provided in this class. * */ @XmlRegistry public class ObjectFactory { private final static QName _KeyDerivationMethod_QNAME = new QName("http://www.w3.org/2009/xmlenc11#", "KeyDerivationMethod"); private final static QName _MGF_QNAME = new QName("http://www.w3.org/2009/xmlenc11#", "MGF"); private final static QName _DerivedKey_QNAME = new QName("http://www.w3.org/2009/xmlenc11#", "DerivedKey"); private final static QName _ConcatKDFParams_QNAME = new QName("http://www.w3.org/2009/xmlenc11#", "ConcatKDFParams"); private final static QName _PBKDF2Params_QNAME = new QName("http://www.w3.org/2009/xmlenc11#", "PBKDF2-params"); /** * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.apache.xml.security.binding.xmlenc11 * */ public ObjectFactory() { } /** * Create an instance of {@link PBKDF2ParameterType } * */ public PBKDF2ParameterType createPBKDF2ParameterType() { return new PBKDF2ParameterType(); } /** * Create an instance of {@link MGFType } * */ public MGFType createMGFType() { return new MGFType(); } /** * Create an instance of {@link KeyDerivationMethodType } * */ public KeyDerivationMethodType createKeyDerivationMethodType() { return new KeyDerivationMethodType(); } /** * Create an instance of {@link ConcatKDFParamsType } * */ public ConcatKDFParamsType createConcatKDFParamsType() { return new ConcatKDFParamsType(); } /** * Create an instance of {@link DerivedKeyType } * */ public DerivedKeyType createDerivedKeyType() { return new DerivedKeyType(); } /** * Create an instance of {@link PRFAlgorithmIdentifierType } * */ public PRFAlgorithmIdentifierType createPRFAlgorithmIdentifierType() { return new PRFAlgorithmIdentifierType(); } /** * Create an instance of {@link AlgorithmIdentifierType } * */ public AlgorithmIdentifierType createAlgorithmIdentifierType() { return new AlgorithmIdentifierType(); } /** * Create an instance of {@link PBKDF2ParameterType.Salt } * */ public PBKDF2ParameterType.Salt createPBKDF2ParameterTypeSalt() { return new PBKDF2ParameterType.Salt(); } /** * Create an instance of {@link JAXBElement }{@code <}{@link KeyDerivationMethodType }{@code >}} * */ @XmlElementDecl(namespace = "http://www.w3.org/2009/xmlenc11#", name = "KeyDerivationMethod") public JAXBElement createKeyDerivationMethod(KeyDerivationMethodType value) { return new JAXBElement(_KeyDerivationMethod_QNAME, KeyDerivationMethodType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link MGFType }{@code >}} * */ @XmlElementDecl(namespace = "http://www.w3.org/2009/xmlenc11#", name = "MGF") public JAXBElement createMGF(MGFType value) { return new JAXBElement(_MGF_QNAME, MGFType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link DerivedKeyType }{@code >}} * */ @XmlElementDecl(namespace = "http://www.w3.org/2009/xmlenc11#", name = "DerivedKey") public JAXBElement createDerivedKey(DerivedKeyType value) { return new JAXBElement(_DerivedKey_QNAME, DerivedKeyType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link ConcatKDFParamsType }{@code >}} * */ @XmlElementDecl(namespace = "http://www.w3.org/2009/xmlenc11#", name = "ConcatKDFParams") public JAXBElement createConcatKDFParams(ConcatKDFParamsType value) { return new JAXBElement(_ConcatKDFParams_QNAME, ConcatKDFParamsType.class, null, value); } /** * Create an instance of {@link JAXBElement }{@code <}{@link PBKDF2ParameterType }{@code >}} * */ @XmlElementDecl(namespace = "http://www.w3.org/2009/xmlenc11#", name = "PBKDF2-params") public JAXBElement createPBKDF2Params(PBKDF2ParameterType value) { return new JAXBElement(_PBKDF2Params_QNAME, PBKDF2ParameterType.class, null, value); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy