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