/** * 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. */ package org.deephacks.westty.tests; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EnumType; import javax.persistence.Enumerated; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "JSON") public class JsonEntity { @Id @Column(name = "ID") private String id; @Column(name = "PROTOCOL") @Enumerated(EnumType.STRING) private Protocol protocol; @Column(name = "JSON") private String json; public JsonEntity() { } public JsonEntity(String id, Protocol protocol, String json) { this.id = id; this.protocol = protocol; this.json = json; } public Protocol getProtocol() { return protocol; } public void setProtocol(Protocol protocol) { this.protocol = protocol; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getJson() { return json; } public void setJson(String json) { this.json = json; } public static enum Protocol { PROTOBUF, JAXRS, EVENTBUS; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; JsonEntity that = (JsonEntity) o; if (id != null ? !id.equals(that.id) : that.id != null) return false; if (json != null ? !json.equals(that.json) : that.json != null) return false; if (protocol != that.protocol) return false; return true; } @Override public int hashCode() { int result = id != null ? id.hashCode() : 0; result = 31 * result + (protocol != null ? protocol.hashCode() : 0); result = 31 * result + (json != null ? json.hashCode() : 0); return result; } }