View Javadoc
1   
2   package org.miloss.fgsms.services.interfaces.policyconfiguration;
3   
4   import javax.xml.bind.annotation.XmlEnum;
5   import javax.xml.bind.annotation.XmlType;
6   
7   
8   /**
9    * <p>Java class for TransportAuthenticationStyle.
10   * 
11   * <p>The following schema fragment specifies the expected content contained within this class.
12   * <p>
13   * <pre>
14   * &lt;simpleType name="TransportAuthenticationStyle">
15   *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
16   *     &lt;enumeration value="HTTP_BASIC"/>
17   *     &lt;enumeration value="HTTP_NTLM"/>
18   *     &lt;enumeration value="HTTP_DIGEST"/>
19   *     &lt;enumeration value="OTHER"/>
20   *     &lt;enumeration value="NA"/>
21   *   &lt;/restriction>
22   * &lt;/simpleType>
23   * </pre>
24   * 
25   */
26  @XmlType(name = "TransportAuthenticationStyle")
27  @XmlEnum
28  public enum TransportAuthenticationStyle {
29  
30      HTTP_BASIC,
31      HTTP_NTLM,
32      HTTP_DIGEST,
33      OTHER,
34  
35      /**
36       * default value
37       * 
38       */
39      NA;
40  
41      public String value() {
42          return name();
43      }
44  
45      public static TransportAuthenticationStyle fromValue(String v) {
46          return valueOf(v);
47      }
48  
49  }