/******************************************************************************* * (C) Copyright 2014 Teknux.org (http://teknux.org/). * * Licensed 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. * * Contributors: * "Pierre PINON" * "Francois EYL" * "Laurent MARCHAL" * *******************************************************************************/ package org.teknux.jettybootstrap.test.jettybootstrap; public class SimpleResponse { private Integer statusCode = null; private String content = null; public SimpleResponse() { } public SimpleResponse(Integer statusCode, String content) { this.statusCode = statusCode; this.content = content; } public Integer getStatusCode() { return statusCode; } public void setStatusCode(Integer statusCode) { this.statusCode = statusCode; } public String getContent() { return content; } public void setContent(String content) { this.content = content; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((content == null) ? 0 : content.hashCode()); result = prime * result + ((statusCode == null) ? 0 : statusCode.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; SimpleResponse other = (SimpleResponse) obj; if (content == null) { if (other.content != null) return false; } else if (!content.equals(other.content)) return false; if (statusCode == null) { if (other.statusCode != null) return false; } else if (!statusCode.equals(other.statusCode)) return false; return true; } @Override public String toString() { return "SimpleResponse [statusCode=" + statusCode + ", content=" + content + "]"; } }