/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at legal-notices/CDDLv1_0.txt * or http://forgerock.org/license/CDDLv1.0.html. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at legal-notices/CDDLv1_0.txt. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: * Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END * * * Copyright 2008-2009 Sun Microsystems, Inc. * Portions Copyright 2015 ForgeRock AS. */ package org.opends.server.tools.dsreplication; import org.opends.server.types.HostPort; /** * This class is used to store the information provided by the user to * initialize replication. It is required because when we are in interactive * mode the ReplicationCliArgumentParser is not enough. */ public class SourceDestinationServerUserData extends ReplicationUserData { private String hostNameSource; private int portSource; private String hostNameDestination; private int portDestination; /** * Returns the host name of the source server. * @return the host name of the source server. */ public String getHostNameSource() { return hostNameSource; } /** * Sets the host name of the source server. * @param hostNameSource the host name of the source server. */ public void setHostNameSource(String hostNameSource) { this.hostNameSource = hostNameSource; } /** * Returns the port of the source server. * @return the port of the source server. */ public int getPortSource() { return portSource; } /** * Sets the port of the source server. * @param portSource the port of the source server. */ public void setPortSource(int portSource) { this.portSource = portSource; } /** * Returns the host name of the destination server. * @return the host name of the destination server. */ public String getHostNameDestination() { return new HostPort(hostNameDestination, portDestination).toString(); } /** * Returns a host:port string for the source server. * @return a host:port string for the source server */ public String getSourceHostPort() { return new HostPort(hostNameSource, portSource).toString(); } /** * Returns a host:port string for the destination server. * @return a host:port string for the destination server */ public String getDestinationHostPort() { return hostNameDestination + ":" + portDestination; } /** * Sets the host name of the destination server. * @param hostNameDestination the host name of the destination server. */ public void setHostNameDestination(String hostNameDestination) { this.hostNameDestination = hostNameDestination; } /** * Returns the port of the destination server. * @return the port of the destination server. */ public int getPortDestination() { return portDestination; } /** * Sets the port of the destination server. * @param portDestination the port of the destination server. */ public void setPortDestination(int portDestination) { this.portDestination = portDestination; } /** * Returns a {@link HostPort} representing the source server. * @return a {@link HostPort} representing the source server */ public HostPort getSource() { return new HostPort(hostNameSource, portSource); } /** * Returns a {@link HostPort} representing the destination server. * @return a {@link HostPort} representing the destination server */ public HostPort getDestination() { return new HostPort(hostNameDestination, portDestination); } }