
com.github.becausetesting.httpclient.bean.HttpVersion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
A common libraries used for testing framework.
package com.github.becausetesting.httpclient.bean;
public enum HttpVersion {
HTTP_1_1("HTTP 1.1", "1.1"),
HTTP_1_0("HTTP 1.0", "1.0");
private String msg;
private String versionNumber;
HttpVersion(String desc, String versionNumber) {
this.msg = desc;
this.versionNumber = versionNumber;
}
public String versionNumber() {
return versionNumber;
}
@Override
public String toString() {
return msg;
}
public static HttpVersion getDefault() {
return HTTP_1_1;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy