com.crabshue.commons.xml.schema.Protocol Maven / Gradle / Ivy
package com.crabshue.commons.xml.schema;
/**
* Enumeration of protocols, and their prefix.
*
* @author vinh
*/
public enum Protocol {
HTTP("http:"),
HTTPS("https:"),
FILE("file:");
private final String prefix;
Protocol(final String prefix) {
this.prefix = prefix;
}
public String getPrefix() {
return prefix;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy