Java Globus API: Class ChangePasswordParams

org.globus.myproxy
Class ChangePasswordParams

java.lang.Object
  |
  +--org.globus.myproxy.Params
        |
        +--org.globus.myproxy.ChangePasswordParams
All Implemented Interfaces:
MyProxyConstants

public class ChangePasswordParams
extends Params

Holds the parameters for the changePassword operation.


Fields inherited from class org.globus.myproxy.Params
lifetime, passphrase, username
 
Fields inherited from interface org.globus.myproxy.MyProxyConstants
COMMAND, CRED_DESC, CRED_NAME, CRLF, LIFETIME, MIN_PASSWORD_LENGTH, MYPROXY_PROTOCOL_VERSION, NEW_PHRASE, PASSPHRASE, RENEWER, RETRIEVER, USERNAME, VERSION
 
Constructor Summary
ChangePasswordParams()
           
 
Method Summary
 String getCredentialName()
           
 String getNewPassphrase()
           
 String makeRequest()
          Serializes the parameters into a MyProxy request.
 void setCredentialName(String credentialName)
           
 void setNewPassphrase(String newPassphrase)
           
 
Methods inherited from class org.globus.myproxy.Params
add, checkPassphrase, getLifetime, getPassphrase, getUserName, setLifetime, setPassphrase, setUserName, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ChangePasswordParams

public ChangePasswordParams()
Method Detail

setNewPassphrase

public void setNewPassphrase(String newPassphrase)

getNewPassphrase

public String getNewPassphrase()

setCredentialName

public void setCredentialName(String credentialName)

getCredentialName

public String getCredentialName()

makeRequest

public String makeRequest()
Description copied from class: Params
Serializes the parameters into a MyProxy request. Subclasses should overwrite this function and append the custom parameters to the output of this function.
Overrides:
makeRequest in class Params