/* * Copyright 2014 NAVER Corp. * * 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 com.navercorp.pinpoint.plugin.jdbc.oracle.parser; /** * @author emeroad */ public class Address { private String protocol; private String host; private String port; public Address(String protocol, String host, String port) { this.protocol = protocol; this.host = host; this.port = port; } public String getProtocol() { return protocol; } public void setProtocol(String protocol) { this.protocol = protocol; } public String getHost() { return host; } public void setHost(String host) { this.host = host; } public String getPort() { return port; } public void setPort(String port) { this.port = port; } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Address address = (Address) o; if (host != null ? !host.equals(address.host) : address.host != null) return false; if (port != null ? !port.equals(address.port) : address.port != null) return false; if (protocol != null ? !protocol.equals(address.protocol) : address.protocol != null) return false; return true; } @Override public int hashCode() { int result = protocol != null ? protocol.hashCode() : 0; result = 31 * result + (host != null ? host.hashCode() : 0); result = 31 * result + (port != null ? port.hashCode() : 0); return result; } @Override public String toString() { final StringBuilder sb = new StringBuilder(); sb.append("Address"); sb.append("{protocol='").append(protocol).append('\''); sb.append(", host='").append(host).append('\''); sb.append(", port='").append(port).append('\''); sb.append('}'); return sb.toString(); } }