Uses of Class
org.neociclo.odetteftp.protocol.AnswerReason

Packages that use AnswerReason
org.neociclo.odetteftp.oftplet   
org.neociclo.odetteftp.protocol   
org.neociclo.odetteftp.protocol.v13   
org.neociclo.odetteftp.protocol.v20   
 

Uses of AnswerReason in org.neociclo.odetteftp.oftplet
 

Methods in org.neociclo.odetteftp.oftplet that return AnswerReason
 AnswerReason AnswerReasonInfo.getAnswerReason()
           
 AnswerReason StartFileResponse.getReason()
           
 AnswerReason EndFileResponse.getReason()
           
 

Constructors in org.neociclo.odetteftp.oftplet with parameters of type AnswerReason
AnswerReasonInfo(AnswerReason answerReason)
           
AnswerReasonInfo(AnswerReason answerReason, String reasonText)
           
 

Uses of AnswerReason in org.neociclo.odetteftp.protocol
 

Methods in org.neociclo.odetteftp.protocol that return AnswerReason
 AnswerReason DefaultStartFileResponse.getReason()
           
 AnswerReason DefaultEndFileResponse.getReason()
           
static AnswerReason AnswerReason.parse(int code)
          Convenient method for parsing the proper AnswerReason instance given a code String.
static AnswerReason AnswerReason.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AnswerReason[] AnswerReason.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.neociclo.odetteftp.protocol with parameters of type AnswerReason
protected abstract  CommandExchangeBuffer DefaultHandler.buildEndFileNegativeAnswerCommand(AnswerReason reason, String reasonText)
           
protected abstract  CommandExchangeBuffer DefaultHandler.buildStartFileNegativeAnswerCommand(AnswerReason reason, String reasonText, boolean retryLater)
           
static DefaultEndFileResponse DefaultEndFileResponse.negativeEndFileAnswer(AnswerReason reason, String reasonText)
           
static DefaultStartFileResponse DefaultStartFileResponse.negativeStartFileAnswer(AnswerReason reason, String reasonText, boolean retryLater)
           
 

Constructors in org.neociclo.odetteftp.protocol with parameters of type AnswerReason
DefaultStartFileResponse(boolean accepted, AnswerReason reason, String reasonText, boolean retryLater)
           
 

Uses of AnswerReason in org.neociclo.odetteftp.protocol.v13
 

Methods in org.neociclo.odetteftp.protocol.v13 with parameters of type AnswerReason
protected  CommandExchangeBuffer OdetteFtpVer13Handler.buildEndFileNegativeAnswerCommand(AnswerReason reason, String reasonText)
           
protected  CommandExchangeBuffer OdetteFtpVer13Handler.buildStartFileNegativeAnswerCommand(AnswerReason reason, String reasonText, boolean retryLater)
           
static CommandExchangeBuffer CommandBuilderVer13.endFileNegativeAnswer(AnswerReason reason)
          Create the End File Negative Answer command providing the reason for stopping transfer.
static CommandExchangeBuffer CommandBuilderVer13.startFileNegativeAnswer(AnswerReason reason, boolean retry)
          Create the Start File Negative Answer command containing the the reason why transmission can not proced.
This retry parameter is used to advise the Speaker if it should retry at a latter point in time due to a temporary condition at the Listener site, such as a lack of storage space.
 

Uses of AnswerReason in org.neociclo.odetteftp.protocol.v20
 

Methods in org.neociclo.odetteftp.protocol.v20 with parameters of type AnswerReason
protected  CommandExchangeBuffer OdetteFtpVer20Handler.buildEndFileNegativeAnswerCommand(AnswerReason reason, String reasonText)
           
protected  CommandExchangeBuffer OdetteFtpVer20Handler.buildStartFileNegativeAnswerCommand(AnswerReason reason, String reasonText, boolean retryLater)
           
static CommandExchangeBuffer CommandBuilderVer20.endFileNegativeAnswer(AnswerReason reason, String reasonText)
           
static CommandExchangeBuffer CommandBuilderVer20.startFileNegativeAnswer(AnswerReason reason, String reasonText, boolean retry)
          Create the Start File Negative Answer command containing the the reason why transmission can not proced.
This retry parameter is used to advise the Speaker if it should retry at a latter point in time due to a temporary condition at the Listener site, such as a lack of storage space.
 



ACCORD