EPP RTK
for Java v 0.7.2

org.openrtk.idl.epp0705
Class epp_LoginReq

java.lang.Object
  |
  +--org.openrtk.idl.epp0705.epp_LoginReq
All Implemented Interfaces:
org.omg.CORBA.portable.IDLEntity, java.io.Serializable

public class epp_LoginReq
extends java.lang.Object
implements org.omg.CORBA.portable.IDLEntity

Class that contains the elements necessary to establish a session with an EPP server.

$Header: /cvsroot/epp-rtk/epp-rtk/java/src/org/openrtk/idl/epp0705/epp_LoginReq.java,v 1.1 2003/03/20 22:42:18 tubadanm Exp $
$Revision: 1.1 $
$Date: 2003/03/20 22:42:18 $

See Also:
com.tucows.oxrs.epp.rtk.xml.EPPLogin, epp_LoginRsp, Serialized Form

Field Summary
 java.lang.String m_client_id
          The client identifier created on the server.
 epp_Command m_cmd
          The common and generic command element.
 java.lang.String[] m_extensions
          The array of service extensions.
 java.lang.String m_new_password
          The new client password to be used for the future session establishment.
 epp_Options m_options
          The options element that contains client's choices on the protocol version and response language
 java.lang.String m_password
          The client password.
 java.lang.String[] m_services
          The array of service URIs.
 
Constructor Summary
epp_LoginReq()
          Empty constructor
epp_LoginReq(epp_Command _m_cmd, java.lang.String _m_client_id, java.lang.String _m_password, java.lang.String _m_new_password, epp_Options _m_options, java.lang.String[] _m_services, java.lang.String[] _m_extensions)
          The constructor with initializing variables.
 
Method Summary
 java.lang.String getClientId()
          Accessor method for the client identifier created on the server
 epp_Command getCmd()
          Accessor method for the common and generic command element
 java.lang.String[] getExtensions()
          Accessor method for the array of service extensions supported by the server
 java.lang.String getNewPassword()
          Accessor method for the new client password
 epp_Options getOptions()
          Accessor method for the options element that contains client's choices
 java.lang.String getPassword()
          Accessor method for the client password
 java.lang.String[] getServices()
          Accessor method for the array of services supported by the server
 void setClientId(java.lang.String value)
          Accessor method for the client identifier created on the server
 void setCmd(epp_Command value)
          Accessor method for the common and generic command element
 void setExtensions(java.lang.String[] value)
          Accessor method for the array of service extensions supported by the server
 void setNewPassword(java.lang.String value)
          Accessor method for the new client password
 void setOptions(epp_Options value)
          Accessor method for the options element that contains client's choices
 void setPassword(java.lang.String value)
          Accessor method for the client password
 void setServices(java.lang.String[] value)
          Accessor method for the array of services supported by the server
 java.lang.String toString()
          Converts this class into a string.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

m_cmd

public epp_Command m_cmd
The common and generic command element.

See Also:
setCmd(org.openrtk.idl.epp0705.epp_Command), getCmd()

m_client_id

public java.lang.String m_client_id
The client identifier created on the server.

See Also:
setClientId(String), getClientId()

m_password

public java.lang.String m_password
The client password.

See Also:
setPassword(String), getPassword()

m_new_password

public java.lang.String m_new_password
The new client password to be used for the future session establishment.

See Also:
setNewPassword(String), getNewPassword()

m_options

public epp_Options m_options
The options element that contains client's choices on the protocol version and response language

See Also:
setOptions(org.openrtk.idl.epp0705.epp_Options), getOptions()

m_services

public java.lang.String[] m_services
The array of service URIs. Each URI identifies an object to be managed during the session.

See Also:
setServices(String[]), getServices()

m_extensions

public java.lang.String[] m_extensions
The array of service extensions. Each element identifies a custom object extensions supported by the server.

See Also:
setExtensions(String[]), getExtensions()
Constructor Detail

epp_LoginReq

public epp_LoginReq()
Empty constructor


epp_LoginReq

public epp_LoginReq(epp_Command _m_cmd,
                    java.lang.String _m_client_id,
                    java.lang.String _m_password,
                    java.lang.String _m_new_password,
                    epp_Options _m_options,
                    java.lang.String[] _m_services,
                    java.lang.String[] _m_extensions)
The constructor with initializing variables.

Parameters:
_m_cmd - The common and generic command element
_m_client_id - The client identifier created on the server
_m_password - The client password
_m_new_password - The new client password
_m_options - The options element that contains client's choices
_m_services - The array of services supported by the server
_m_extensions - The array of service extensions supported by the server
Method Detail

setCmd

public void setCmd(epp_Command value)
Accessor method for the common and generic command element

Parameters:
value - The command element
See Also:
m_cmd

getCmd

public epp_Command getCmd()
Accessor method for the common and generic command element

Returns:
The command element
See Also:
m_cmd

setClientId

public void setClientId(java.lang.String value)
Accessor method for the client identifier created on the server

Parameters:
value - The client identifier
See Also:
m_client_id

getClientId

public java.lang.String getClientId()
Accessor method for the client identifier created on the server

Returns:
The client identifier
See Also:
m_client_id

setPassword

public void setPassword(java.lang.String value)
Accessor method for the client password

Parameters:
value - The password
See Also:
m_password

getPassword

public java.lang.String getPassword()
Accessor method for the client password

Returns:
The password
See Also:
m_password

setNewPassword

public void setNewPassword(java.lang.String value)
Accessor method for the new client password

Parameters:
value - The new password
See Also:
m_new_password

getNewPassword

public java.lang.String getNewPassword()
Accessor method for the new client password

Returns:
The new password
See Also:
m_new_password

setOptions

public void setOptions(epp_Options value)
Accessor method for the options element that contains client's choices

Parameters:
value - The options element
See Also:
m_options

getOptions

public epp_Options getOptions()
Accessor method for the options element that contains client's choices

Returns:
The options element
See Also:
m_options

setServices

public void setServices(java.lang.String[] value)
Accessor method for the array of services supported by the server

Parameters:
value - The array of service URIs
See Also:
m_services

getServices

public java.lang.String[] getServices()
Accessor method for the array of services supported by the server

Returns:
The array of service URIs
See Also:
m_services

setExtensions

public void setExtensions(java.lang.String[] value)
Accessor method for the array of service extensions supported by the server

Parameters:
value - The array of service extensions
See Also:
m_extensions

getExtensions

public java.lang.String[] getExtensions()
Accessor method for the array of service extensions supported by the server

Returns:
The array of service extensions
See Also:
m_extensions

toString

public java.lang.String toString()
Converts this class into a string. Typically used to view the object in debug output.

Overrides:
toString in class java.lang.Object
Returns:
The string representation of this object instance

EPP RTK
for Java v 0.7.2

Copyright ? 2001-2002 - Tucows, Inc., 2003 - LibertyRMS