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 ApplicationOperationType.
17   * 
18   * <p>The following schema fragment specifies the expected content contained within this class.
19   * <p>
20   * <pre>
21   * &lt;simpleType name="ApplicationOperationType"&gt;
22   *   &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt;
23   *     &lt;enumeration value="CREATE"/&gt;
24   *     &lt;enumeration value="READ"/&gt;
25   *     &lt;enumeration value="UPDATE"/&gt;
26   *     &lt;enumeration value="DELETE"/&gt;
27   *     &lt;enumeration value="AUTHENTICATION"/&gt;
28   *     &lt;enumeration value="AUTHORIZATION"/&gt;
29   *   &lt;/restriction&gt;
30   * &lt;/simpleType&gt;
31   * </pre>
32   * 
33   */
34  @XmlType(name = "ApplicationOperationType")
35  @XmlEnum
36  public enum ApplicationOperationType {
37  
38      CREATE,
39      READ,
40      UPDATE,
41      DELETE,
42      AUTHENTICATION,
43      AUTHORIZATION;
44  
45      public String value() {
46          return name();
47      }
48  
49      public static ApplicationOperationType fromValue(String v) {
50          return valueOf(v);
51      }
52  
53  }