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

org.apache.cxf.transports.http.configuration.ServerCacheControlType 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, v2.0-b52-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.02.05 at 01:58:14 PM EST 
//


package org.apache.cxf.transports.http.configuration;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;


/**
 * 

Java class for serverCacheControlType. * *

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

*

 * <simpleType name="serverCacheControlType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="no-cache"/>
 *     <enumeration value="public"/>
 *     <enumeration value="private"/>
 *     <enumeration value="no-store"/>
 *     <enumeration value="no-transform"/>
 *     <enumeration value="must-revalidate"/>
 *     <enumeration value="proxy-revalidate"/>
 *     <enumeration value="max-age"/>
 *     <enumeration value="s-max-age"/>
 *     <enumeration value="cache-extension"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlEnum public enum ServerCacheControlType { @XmlEnumValue("cache-extension") CACHE_EXTENSION("cache-extension"), @XmlEnumValue("max-age") MAX_AGE("max-age"), @XmlEnumValue("must-revalidate") MUST_REVALIDATE("must-revalidate"), @XmlEnumValue("no-cache") NO_CACHE("no-cache"), @XmlEnumValue("no-store") NO_STORE("no-store"), @XmlEnumValue("no-transform") NO_TRANSFORM("no-transform"), @XmlEnumValue("private") PRIVATE("private"), @XmlEnumValue("proxy-revalidate") PROXY_REVALIDATE("proxy-revalidate"), @XmlEnumValue("public") PUBLIC("public"), @XmlEnumValue("s-max-age") S_MAX_AGE("s-max-age"); private final String value; ServerCacheControlType(String v) { value = v; } public String value() { return value; } public static ServerCacheControlType fromValue(String v) { for (ServerCacheControlType c: ServerCacheControlType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v.toString()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy