All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.crabshue.commons.xml.schema.Protocol Maven / Gradle / Ivy

package com.crabshue.commons.xml.schema;


import lombok.AllArgsConstructor;
import lombok.Getter;

/**
 * Enumeration of protocols, and their prefix.
 *
 */
@Getter
@AllArgsConstructor
public enum Protocol {

    HTTP("http:"),

    HTTPS("https:"),

    FILE("file:");

    private final String prefix;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy