Home | History | Annotate | Download | only in http

Lines Matching refs:minor

47  * protocol name, major version number, and minor version number.
67 /** Minor version number of the protocol */
68 protected final int minor;
76 * @param minor the minor version number of the protocol
78 public ProtocolVersion(String protocol, int major, int minor) {
87 if (minor < 0) {
89 ("Protocol minor version number may not be negative");
93 this.minor = minor;
115 * Returns the minor version number of the HTTP protocol.
117 * @return the minor version number.
120 return minor;
134 * @param minor the minor version
139 public ProtocolVersion forVersion(int major, int minor) {
141 if ((major == this.major) && (minor == this.minor)) {
146 return new ProtocolVersion(this.protocol, major, minor);
156 return this.protocol.hashCode() ^ (this.major * 100000) ^ this.minor;
163 * protocol name, major version number, and minor version number.
184 (this.minor == that.minor));
279 buffer.append(Integer.toString(this.minor));