-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' for 0.1.11
- Loading branch information
Showing
48 changed files
with
3,599 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
mqtt-spy-common/src/main/java/pl/baczkowicz/mqttspy/common/generated/SslModeEnum.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// | ||
// Copyright (c) 2015 Kamil Baczkowicz | ||
// | ||
// CSOFF: a.* | ||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 | ||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | ||
// Any modifications to this file will be lost upon recompilation of the source schema. | ||
// Timestamp removed by maven-replacer-plugin to avoid detecting changes - see the project POM for details | ||
// | ||
|
||
|
||
package pl.baczkowicz.mqttspy.common.generated; | ||
|
||
import javax.xml.bind.annotation.XmlEnum; | ||
import javax.xml.bind.annotation.XmlType; | ||
|
||
|
||
/** | ||
* <p>Java class for SslModeEnum. | ||
* | ||
* <p>The following schema fragment specifies the expected content contained within this class. | ||
* <p> | ||
* <pre> | ||
* <simpleType name="SslModeEnum"> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string"> | ||
* <enumeration value="DISABLED"/> | ||
* <enumeration value="SERVER_ONLY"/> | ||
* <enumeration value="SERVER_AND_CLIENT"/> | ||
* <enumeration value="PROPERTIES"/> | ||
* </restriction> | ||
* </simpleType> | ||
* </pre> | ||
* | ||
*/ | ||
@SuppressWarnings("all") | ||
@XmlType(name = "SslModeEnum") | ||
@XmlEnum | ||
public enum SslModeEnum { | ||
|
||
DISABLED, | ||
SERVER_ONLY, | ||
SERVER_AND_CLIENT, | ||
PROPERTIES; | ||
|
||
public String value() { | ||
return name(); | ||
} | ||
|
||
public static SslModeEnum fromValue(String v) { | ||
return valueOf(v); | ||
} | ||
|
||
} |
Oops, something went wrong.