View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2017.04.23 at 07:23:18 PM CEST 
6   //
7   
8   
9   package com.hack23.cia.model.internal.application.system.impl;
10  
11  import javax.xml.bind.annotation.XmlEnum;
12  import javax.xml.bind.annotation.XmlType;
13  
14  
15  /**
16   * <p>Java class for ApplicationSessionType.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * <p>
20   * <pre>
21   * &lt;simpleType name="ApplicationSessionType"&gt;
22   *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
23   *     &lt;enumeration value="ANONYMOUS"/&gt;
24   *     &lt;enumeration value="REGISTERED_USER"/&gt;
25   *     &lt;enumeration value="SYSTEM"/&gt;
26   *   &lt;/restriction&gt;
27   * &lt;/simpleType&gt;
28   * </pre>
29   * 
30   */
31  @XmlType(name = "ApplicationSessionType")
32  @XmlEnum
33  public enum ApplicationSessionType {
34  
35      ANONYMOUS,
36      REGISTERED_USER,
37      SYSTEM;
38  
39      public String value() {
40          return name();
41      }
42  
43      public static ApplicationSessionType fromValue(String v) {
44          return valueOf(v);
45      }
46  
47  }