| | |
| | | * CDDL HEADER END |
| | | * |
| | | * |
| | | * Copyright 2008 Sun Microsystems, Inc. |
| | | * Copyright 2008-2009 Sun Microsystems, Inc. |
| | | */ |
| | | |
| | | package org.opends.server.tools.dsreplication; |
| | |
| | | * ReplicationCliArgumentParser is not enough. |
| | | * |
| | | */ |
| | | class EnableReplicationUserData extends ReplicationUserData |
| | | public class EnableReplicationUserData extends ReplicationUserData |
| | | { |
| | | private String hostName1; |
| | | private int port1; |
| | |
| | | * Returns the host name of the first server. |
| | | * @return the host name of the first server. |
| | | */ |
| | | String getHostName1() |
| | | public String getHostName1() |
| | | { |
| | | return hostName1; |
| | | } |
| | |
| | | * Sets the host name of the first server. |
| | | * @param hostName1 the host name of the first server. |
| | | */ |
| | | void setHostName1(String hostName1) |
| | | public void setHostName1(String hostName1) |
| | | { |
| | | this.hostName1 = hostName1; |
| | | } |
| | |
| | | * Returns the port of the first server. |
| | | * @return the port of the first server. |
| | | */ |
| | | int getPort1() |
| | | public int getPort1() |
| | | { |
| | | return port1; |
| | | } |
| | |
| | | * Sets the port of the first server. |
| | | * @param port1 the port of the first server. |
| | | */ |
| | | void setPort1(int port1) |
| | | public void setPort1(int port1) |
| | | { |
| | | this.port1 = port1; |
| | | } |
| | |
| | | * Returns the password for the first server. |
| | | * @return the password for the first server. |
| | | */ |
| | | String getPwd1() |
| | | public String getPwd1() |
| | | { |
| | | return pwd1; |
| | | } |
| | |
| | | * Sets the password for the first server. |
| | | * @param pwd1 the password for the first server. |
| | | */ |
| | | void setPwd1(String pwd1) |
| | | public void setPwd1(String pwd1) |
| | | { |
| | | this.pwd1 = pwd1; |
| | | } |
| | |
| | | * Returns the host name of the second server. |
| | | * @return the host name of the second server. |
| | | */ |
| | | String getHostName2() |
| | | public String getHostName2() |
| | | { |
| | | return hostName2; |
| | | } |
| | |
| | | * Sets the host name of the second server. |
| | | * @param host2Name the host name of the second server. |
| | | */ |
| | | void setHostName2(String host2Name) |
| | | public void setHostName2(String host2Name) |
| | | { |
| | | this.hostName2 = host2Name; |
| | | } |
| | |
| | | * Returns the port of the second server. |
| | | * @return the port of the second server. |
| | | */ |
| | | int getPort2() |
| | | public int getPort2() |
| | | { |
| | | return port2; |
| | | } |
| | |
| | | * Sets the port of the second server. |
| | | * @param port2 the port of the second server. |
| | | */ |
| | | void setPort2(int port2) |
| | | public void setPort2(int port2) |
| | | { |
| | | this.port2 = port2; |
| | | } |
| | |
| | | * Returns the password for the second server. |
| | | * @return the password for the second server. |
| | | */ |
| | | String getPwd2() |
| | | public String getPwd2() |
| | | { |
| | | return pwd2; |
| | | } |
| | |
| | | * Sets the password for the second server. |
| | | * @param pwd2 the password for the second server. |
| | | */ |
| | | void setPwd2(String pwd2) |
| | | public void setPwd2(String pwd2) |
| | | { |
| | | this.pwd2 = pwd2; |
| | | } |
| | |
| | | * Returns the dn to be used to bind to the first server. |
| | | * @return the dn to be used to bind to the first server. |
| | | */ |
| | | String getBindDn1() |
| | | public String getBindDn1() |
| | | { |
| | | return bindDn1; |
| | | } |
| | |
| | | * Sets the dn to be used to bind to the first server. |
| | | * @param bindDn1 the dn to be used to bind to the first server. |
| | | */ |
| | | void setBindDn1(String bindDn1) |
| | | public void setBindDn1(String bindDn1) |
| | | { |
| | | this.bindDn1 = bindDn1; |
| | | } |
| | |
| | | * Returns the dn to be used to bind to the second server. |
| | | * @return the dn to be used to bind to the second server. |
| | | */ |
| | | String getBindDn2() |
| | | public String getBindDn2() |
| | | { |
| | | return bindDn2; |
| | | } |
| | |
| | | * Sets the dn to be used to bind to the second server. |
| | | * @param bindDn2 the dn to be used to bind to the second server. |
| | | */ |
| | | void setBindDn2(String bindDn2) |
| | | public void setBindDn2(String bindDn2) |
| | | { |
| | | this.bindDn2 = bindDn2; |
| | | } |
| | |
| | | * @return the replication port to be used on the first server if it is not |
| | | * defined yet. |
| | | */ |
| | | int getReplicationPort1() |
| | | public int getReplicationPort1() |
| | | { |
| | | return replicationPort1; |
| | | } |
| | |
| | | * @param replicationPort1 the replication port to be used on the first server |
| | | * if it is not defined yet. |
| | | */ |
| | | void setReplicationPort1(int replicationPort1) |
| | | public void setReplicationPort1(int replicationPort1) |
| | | { |
| | | this.replicationPort1 = replicationPort1; |
| | | } |
| | |
| | | * @return the replication port to be used on the second server if it is not |
| | | * defined yet. |
| | | */ |
| | | int getReplicationPort2() |
| | | public int getReplicationPort2() |
| | | { |
| | | return replicationPort2; |
| | | } |
| | |
| | | * @param replicationPort2 the replication port to be used on the second |
| | | * server if it is not defined yet. |
| | | */ |
| | | void setReplicationPort2(int replicationPort2) |
| | | public void setReplicationPort2(int replicationPort2) |
| | | { |
| | | this.replicationPort2 = replicationPort2; |
| | | } |