
org.jclouds.http.HttpResponse Maven / Gradle / Ivy
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.jclouds.http;
import org.jclouds.javax.annotation.Nullable;
import org.jclouds.io.Payload;
import com.google.common.collect.ImmutableMultimap;
import com.google.common.collect.Multimap;
/**
* Represents a response produced from {@link HttpCommandExecutorService}
*
* @author Adrian Cole
*/
public class HttpResponse extends HttpMessage {
public static Builder builder() {
return new Builder();
}
public static class Builder extends HttpMessage.Builder {
private int statusCode;
private String message;
public Builder message(String message) {
this.message = message;
return this;
}
public Builder statusCode(int statusCode) {
this.statusCode = statusCode;
return this;
}
@Override
public Builder payload(Payload payload) {
return (Builder) super.payload(payload);
}
@Override
public Builder headers(Multimap headers) {
return (Builder) super.headers(headers);
}
public HttpResponse build() {
return new HttpResponse(statusCode, message, payload, headers);
}
public static Builder from(HttpResponse input) {
return new Builder().message(input.getMessage()).statusCode(input.getStatusCode()).payload(input.getPayload())
.headers(input.getHeaders());
}
}
private final int statusCode;
private final String message;
public HttpResponse(int statusCode, String message, @Nullable Payload payload) {
this(statusCode, message, payload, ImmutableMultimap. of());
}
public HttpResponse(int statusCode, String message, @Nullable Payload payload, Multimap headers) {
super(payload, headers);
this.statusCode = statusCode;
this.message = message;
}
public int getStatusCode() {
return statusCode;
}
public String getMessage() {
return message;
}
@Override
public String toString() {
return "[message=" + message + ", statusCode=" + statusCode + ", headers=" + headers + ", payload=" + payload
+ "]";
}
public String getStatusLine() {
return String.format("HTTP/1.1 %d %s", getStatusCode(), getMessage());
}
@Override
public Builder toBuilder() {
return Builder.from(this);
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + ((payload == null) ? 0 : payload.hashCode());
result = prime * result + ((headers == null) ? 0 : headers.hashCode());
result = prime * result + ((message == null) ? 0 : message.hashCode());
result = prime * result + statusCode;
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
HttpResponse other = (HttpResponse) obj;
if (payload == null) {
if (other.payload != null)
return false;
} else if (!payload.equals(other.payload))
return false;
if (headers == null) {
if (other.headers != null)
return false;
} else if (!headers.equals(other.headers))
return false;
if (message == null) {
if (other.message != null)
return false;
} else if (!message.equals(other.message))
return false;
if (statusCode != other.statusCode)
return false;
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy