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

com.ociweb.pronghorn.network.config.HTTPRevisionDefaults Maven / Gradle / Ivy

There is a newer version: 1.0.43
Show newest version
package com.ociweb.pronghorn.network.config;

public enum HTTPRevisionDefaults implements HTTPRevision {

    HTTP_0_9("HTTP/0.9"), 
    HTTP_1_0("HTTP/1.0"),
    HTTP_1_1("HTTP/1.1");
    
    private CharSequence key;
    private byte[] bytes;
    
    private HTTPRevisionDefaults(String headerKey) {
        key = headerKey;
        bytes = headerKey.trim().getBytes();
    }
    
    public CharSequence getKey() {
        return key;
    }
    
    public byte[] getBytes() {
        return bytes;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy