org.neociclo.odetteftp.util
Class OdetteFtpConstants

java.lang.Object
  extended by org.neociclo.odetteftp.util.OdetteFtpConstants

public class OdetteFtpConstants
extends Object

Version:
$Rev: 411 $ $Date: 2010-06-21 11:55:04 -0300 (Mon, 21 Jun 2010) $
Author:
Rafael Marins

Field Summary
static int AUTHENTICATION_CHALLENGE_SIZE
          A random number uniquely generated each time an Authentication Challenged is sent.
static int DEFAULT_CLIENT_CONNECT_ATTEMPTS
           
static int DEFAULT_CLIENT_CONNECT_RETRY_INTERVAL
           
static String DEFAULT_LOGGING_LEVEL
           
static boolean DEFAULT_OFTP_BUFFER_COMPRESSION
           
static int DEFAULT_OFTP_DATA_EXCHANGE_BUFFER
          Default Data Exchange Buffer size of 4096 octets.
static EntityType DEFAULT_OFTP_ENTITY_TYPE
           
static int DEFAULT_OFTP_PORT
          Common Odette FTP port for non-secure connection is 3305.
static boolean DEFAULT_OFTP_RESTART
           
static int DEFAULT_OFTP_SESSION_TIMEOUT
          Default ODETTE-FTP session timeout of 90 seconds.
static boolean DEFAULT_OFTP_SPECIAL_LOGIC
           
static boolean DEFAULT_OFTP_V20_SECURE_AUTH
          Use ODETTE-FTP v2.0 secure authentication option is disabled by default.
static OdetteFtpVersion DEFAULT_OFTP_VERSION
           
static int DEFAULT_OFTP_WINDOW_SIZE
           
static CipherSuite DEFAULT_OFTP2_CIPHER_SUITE
          Use 3DES_EDE_CBC_3KEY by default.
static int DEFAULT_RECORD_SIZE
           
static int DEFAULT_SECURE_OFTP_PORT
          Odette FTP v2.0 secure connection port is 6619.
static int MAX_OEB_LENGTH
          Maximum Exchange Buffer length allowed by protocol specification.
static int MIN_OEB_LENGTH
          Minimum Exchange Buffer length allowed by protocol specification.
 
Constructor Summary
OdetteFtpConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MAX_OEB_LENGTH

public static final int MAX_OEB_LENGTH
Maximum Exchange Buffer length allowed by protocol specification.

See Also:
Constant Field Values

MIN_OEB_LENGTH

public static final int MIN_OEB_LENGTH
Minimum Exchange Buffer length allowed by protocol specification.

See Also:
Constant Field Values

DEFAULT_OFTP_SESSION_TIMEOUT

public static final int DEFAULT_OFTP_SESSION_TIMEOUT
Default ODETTE-FTP session timeout of 90 seconds.

See Also:
Constant Field Values

DEFAULT_OFTP_DATA_EXCHANGE_BUFFER

public static final int DEFAULT_OFTP_DATA_EXCHANGE_BUFFER
Default Data Exchange Buffer size of 4096 octets.

See Also:
Constant Field Values

DEFAULT_OFTP_WINDOW_SIZE

public static final int DEFAULT_OFTP_WINDOW_SIZE
See Also:
Constant Field Values

DEFAULT_RECORD_SIZE

public static final int DEFAULT_RECORD_SIZE
See Also:
Constant Field Values

DEFAULT_OFTP_V20_SECURE_AUTH

public static final boolean DEFAULT_OFTP_V20_SECURE_AUTH
Use ODETTE-FTP v2.0 secure authentication option is disabled by default.

See Also:
Constant Field Values

DEFAULT_OFTP_RESTART

public static final boolean DEFAULT_OFTP_RESTART
See Also:
Constant Field Values

DEFAULT_OFTP_BUFFER_COMPRESSION

public static final boolean DEFAULT_OFTP_BUFFER_COMPRESSION
See Also:
Constant Field Values

DEFAULT_OFTP_SPECIAL_LOGIC

public static final boolean DEFAULT_OFTP_SPECIAL_LOGIC
See Also:
Constant Field Values

DEFAULT_OFTP_VERSION

public static final OdetteFtpVersion DEFAULT_OFTP_VERSION

DEFAULT_OFTP_ENTITY_TYPE

public static final EntityType DEFAULT_OFTP_ENTITY_TYPE

DEFAULT_OFTP2_CIPHER_SUITE

public static final CipherSuite DEFAULT_OFTP2_CIPHER_SUITE
Use 3DES_EDE_CBC_3KEY by default.


DEFAULT_LOGGING_LEVEL

public static final String DEFAULT_LOGGING_LEVEL
See Also:
Constant Field Values

AUTHENTICATION_CHALLENGE_SIZE

public static final int AUTHENTICATION_CHALLENGE_SIZE
A random number uniquely generated each time an Authentication Challenged is sent. Since Odette FTP v2.0.

See Also:
Constant Field Values

DEFAULT_OFTP_PORT

public static final int DEFAULT_OFTP_PORT
Common Odette FTP port for non-secure connection is 3305.

See Also:
Constant Field Values

DEFAULT_SECURE_OFTP_PORT

public static final int DEFAULT_SECURE_OFTP_PORT
Odette FTP v2.0 secure connection port is 6619.

See Also:
Constant Field Values

DEFAULT_CLIENT_CONNECT_ATTEMPTS

public static final int DEFAULT_CLIENT_CONNECT_ATTEMPTS
See Also:
Constant Field Values

DEFAULT_CLIENT_CONNECT_RETRY_INTERVAL

public static final int DEFAULT_CLIENT_CONNECT_RETRY_INTERVAL
See Also:
Constant Field Values
Constructor Detail

OdetteFtpConstants

public OdetteFtpConstants()


ACCORD