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 * <simpleType name="ConfigurationGroup">
22 * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
23 * <enumeration value="AUTHENTICATION"/>
24 * <enumeration value="AUTHORIZATION"/>
25 * <enumeration value="AGENT"/>
26 * <enumeration value="EXTERNAL_SERVICES"/>
27 * </restriction>
28 * </simpleType>
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 }