org.apache.cxf.configuration.security.SecureRandomParameters Maven / Gradle / Ivy
//
// 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: 2013.09.18 at 12:23:15 PM EDT
//
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", namespace = "http://cxf.apache.org/configuration/security")
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);
}
}