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

org.apache.cxf.configuration.security.CertStoreType 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: 2012.10.05 at 02:33:05 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.XmlType;


/**
 * 
 *         A CertStoreType represents a catenated sequence of X.509 certificates, 
 *         in PEM or DER format.
 *         The "url", "file", and "resource" attributes are intended to be
 *         mutually exclusive, though this assumption is not encoded in schema.
 *         The precedence order observed by the runtime is 
 *         1) "file", 2) "resource", and 3) "url".
 *         
 * 
 * 

Java class for CertStoreType complex type. * *

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

 * <complexType name="CertStoreType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="file" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="resource" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="url" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CertStoreType") public class CertStoreType { @XmlAttribute(name = "file") protected String file; @XmlAttribute(name = "resource") protected String resource; @XmlAttribute(name = "url") protected String url; /** * Gets the value of the file property. * * @return * possible object is * {@link String } * */ public String getFile() { return file; } /** * Sets the value of the file property. * * @param value * allowed object is * {@link String } * */ public void setFile(String value) { this.file = value; } public boolean isSetFile() { return (this.file!= null); } /** * Gets the value of the resource property. * * @return * possible object is * {@link String } * */ public String getResource() { return resource; } /** * Sets the value of the resource property. * * @param value * allowed object is * {@link String } * */ public void setResource(String value) { this.resource = value; } public boolean isSetResource() { return (this.resource!= null); } /** * Gets the value of the url property. * * @return * possible object is * {@link String } * */ public String getUrl() { return url; } /** * Sets the value of the url property. * * @param value * allowed object is * {@link String } * */ public void setUrl(String value) { this.url = value; } public boolean isSetUrl() { return (this.url!= null); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy