com.openshift.internal.restclient.model.ServicePort Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2015 Red Hat, Inc.
* Distributed under license by Red Hat, Inc. All rights reserved.
* This program is made available under the terms of the
* Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
******************************************************************************/
package com.openshift.internal.restclient.model;
import static com.openshift.internal.util.JBossDmrExtentions.asInt;
import static com.openshift.internal.util.JBossDmrExtentions.asString;
import static com.openshift.internal.util.JBossDmrExtentions.set;
import java.util.HashMap;
import java.util.Map;
import org.jboss.dmr.ModelNode;
import com.openshift.restclient.model.IServicePort;
/**
* @author jeff.cantrill
*/
public class ServicePort extends ModelNodeAdapter implements IServicePort {
private static final String PROPERTY_NAME = "name";
private static final String PROPERTY_PORT = "port";
private static final String PROPERTY_PROTOCOL = "protocol";
private static final String PROPERTY_TARGET_PORT = "targetPort";
private static final Map KEY_MAP = new HashMap<>();
static {
KEY_MAP.put(PROPERTY_NAME, new String[] {PROPERTY_NAME});
KEY_MAP.put(PROPERTY_PORT, new String[] {PROPERTY_PORT});
KEY_MAP.put(PROPERTY_PROTOCOL, new String[] {PROPERTY_PROTOCOL});
KEY_MAP.put(PROPERTY_TARGET_PORT, new String[] {PROPERTY_TARGET_PORT});
}
public ServicePort(ModelNode node) {
super(node, KEY_MAP);
}
/**
* copy constructor
* @param the node to copy
* @param spec
*/
public ServicePort(ModelNode node, IServicePort port) {
this(node);
setName(port.getName());
setPort(port.getPort());
setProtocol(port.getProtocol());
setTargetPort(port.getTargetPort());
}
@Override
public String getName() {
return asString(getNode(), KEY_MAP, PROPERTY_NAME);
}
@Override
public void setName(String name) {
set(getNode(), KEY_MAP, PROPERTY_NAME, name);
}
@Override
public int getTargetPort() {
return asInt(getNode(), KEY_MAP, PROPERTY_TARGET_PORT);
}
@Override
public void setTargetPort(int port) {
set(getNode(), KEY_MAP, PROPERTY_TARGET_PORT, port);
}
@Override
public void setPort(int port) {
set(getNode(), KEY_MAP, PROPERTY_PORT, port);
}
@Override
public int getPort() {
return asInt(getNode(), KEY_MAP, PROPERTY_PORT);
}
@Override
public String getProtocol() {
return asString(getNode(), KEY_MAP, PROPERTY_PROTOCOL);
}
public void setProtocol(String proto) {
set(getNode(), KEY_MAP, PROPERTY_PROTOCOL, proto);
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + getPort();
result = prime * result + getTargetPort();
result = prime * result + ((getName() == null) ? 0 : getName().hashCode());
result = prime * result + ((getProtocol() == null) ? 0 : getProtocol().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;
ServicePort other = (ServicePort) obj;
if (getPort() != other.getPort())
return false;
if (getTargetPort() != other.getTargetPort())
return false;
if (getName() == null) {
if (other.getName() != null)
return false;
} else if (!getName().equals(other.getName()))
return false;
if (getProtocol() == null) {
if (other.getProtocol() != null)
return false;
} else if (!getProtocol().equals(other.getProtocol()))
return false;
return true;
}
@Override
public String toString() {
return toJson(false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy