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

org.apache.cxf.configuration.security.SecureRandomParameters Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
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: 2011.12.15 at 11:10:53 AM EST 
//


package org.apache.cxf.configuration.security;

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;


/**
 * 
 *         This structure holds the parameters for the Secure Random Number
 *         generator used in the JSSE.
 *         
 * 
 * 

Java class for SecureRandomParameters complex type. * *

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

 * <complexType name="SecureRandomParameters">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="algorithm" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *       <attribute name="provider" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SecureRandomParameters") public class SecureRandomParameters { @XmlAttribute(name = "algorithm") @XmlSchemaType(name = "anySimpleType") protected String algorithm; @XmlAttribute(name = "provider") @XmlSchemaType(name = "anySimpleType") protected String provider; /** * Gets the value of the algorithm property. * * @return * possible object is * {@link String } * */ public String getAlgorithm() { return algorithm; } /** * Sets the value of the algorithm property. * * @param value * allowed object is * {@link String } * */ public void setAlgorithm(String value) { this.algorithm = value; } public boolean isSetAlgorithm() { return (this.algorithm!= null); } /** * Gets the value of the provider property. * * @return * possible object is * {@link String } * */ public String getProvider() { return provider; } /** * Sets the value of the provider property. * * @param value * allowed object is * {@link String } * */ public void setProvider(String value) { this.provider = value; } public boolean isSetProvider() { return (this.provider!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy