com.ociweb.pronghorn.network.config.HTTPRevision Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pronghorn Show documentation
Show all versions of pronghorn Show documentation
Primary dependency for any project using the Pronghorn framework
package com.ociweb.pronghorn.network.config;
public interface HTTPRevision {
static final int BITS = 4;//max of 16 supported
static final int MASK = (1<<4)-1;
int ordinal();
CharSequence getKey();
byte[] getBytes();
}