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

Packages that use NegativeResponseReason
org.neociclo.odetteftp.protocol   
org.neociclo.odetteftp.protocol.v14   
org.neociclo.odetteftp.protocol.v20   
org.neociclo.odetteftp.util   
 

Uses of NegativeResponseReason in org.neociclo.odetteftp.protocol
 

Methods in org.neociclo.odetteftp.protocol that return NegativeResponseReason
 NegativeResponseReason DeliveryNotification.getReason()
          This attribute will specify why transmission cannot proceed or why processing of the file failed.
 NegativeResponseReason DefaultDeliveryNotification.getReason()
           
static NegativeResponseReason NegativeResponseReason.parse(String code)
          Convenient method for parsing the proper NegativeResponseReason enum given a identifier character.
static NegativeResponseReason NegativeResponseReason.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static NegativeResponseReason[] NegativeResponseReason.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 NegativeResponseReason
 void DefaultDeliveryNotification.setReason(NegativeResponseReason reason)
           
 

Uses of NegativeResponseReason in org.neociclo.odetteftp.protocol.v14
 

Methods in org.neociclo.odetteftp.protocol.v14 with parameters of type NegativeResponseReason
static CommandExchangeBuffer CommandBuilderVer14.negativeEndResponse(String dataSetName, Date dateTime, short ticker, String destination, String originator, String creator, NegativeResponseReason reason)
          Create the End to End Response command with given parameters.
 

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

Methods in org.neociclo.odetteftp.protocol.v20 with parameters of type NegativeResponseReason
static CommandExchangeBuffer CommandBuilderVer20.negativeEndResponse(String dataSetName, Date dateTime, short ticker, String destination, String originator, String creator, NegativeResponseReason reason, String reasonText, byte[] fileHash, byte[] signature)
           
 

Uses of NegativeResponseReason in org.neociclo.odetteftp.util
 

Methods in org.neociclo.odetteftp.util with parameters of type NegativeResponseReason
static DeliveryNotification OdetteFtpSupport.getReplyDeliveryNotification(VirtualFile incomingVirtualFile, String creator, NegativeResponseReason reason, String negativeReasonText)
           
static SignedDeliveryNotification OdetteFtpSupport.getReplySignedDeliveryNotification(EnvelopedVirtualFile incomingVirtualFile, String creator, NegativeResponseReason reason, String negativeReasonText, byte[] signature)
          Prepare the reply Signed Delivery Notification.
static SignedDeliveryNotification OdetteFtpSupport.getReplySignedDeliveryNotification(EnvelopedVirtualFile incomingVirtualFile, String creator, NegativeResponseReason reason, String negativeReasonText, byte[] virtualFileHash, byte[] signature)
           
 



ACCORD