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

org.apache.cxf.transports.http.configuration.ClientCacheControlType Maven / Gradle / Ivy

There is a newer version: 2.7.18
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2009.05.22 at 12:16:54 PM EDT 
//


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

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


/**
 * 

Java class for clientCacheControlType. * *

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

*

 * <simpleType name="clientCacheControlType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="no-cache"/>
 *     <enumeration value="no-store"/>
 *     <enumeration value="max-age"/>
 *     <enumeration value="max-stale"/>
 *     <enumeration value="min-fresh"/>
 *     <enumeration value="no-transform"/>
 *     <enumeration value="only-if-cached"/>
 *     <enumeration value="cache-extension"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "clientCacheControlType") @XmlEnum public enum ClientCacheControlType { @XmlEnumValue("no-cache") NO_CACHE("no-cache"), @XmlEnumValue("no-store") NO_STORE("no-store"), @XmlEnumValue("max-age") MAX_AGE("max-age"), @XmlEnumValue("max-stale") MAX_STALE("max-stale"), @XmlEnumValue("min-fresh") MIN_FRESH("min-fresh"), @XmlEnumValue("no-transform") NO_TRANSFORM("no-transform"), @XmlEnumValue("only-if-cached") ONLY_IF_CACHED("only-if-cached"), @XmlEnumValue("cache-extension") CACHE_EXTENSION("cache-extension"); private final String value; ClientCacheControlType(String v) { value = v; } public String value() { return value; } public static ClientCacheControlType fromValue(String v) { for (ClientCacheControlType c: ClientCacheControlType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy