Package org.firebirdsql.jca
Class FBConnectionRequestInfo
java.lang.Object
org.firebirdsql.jca.FBConnectionRequestInfo
- All Implemented Interfaces:
Serializable,Iterable<Parameter>,javax.resource.cci.ConnectionSpec,javax.resource.spi.ConnectionRequestInfo,ConnectionParameterBuffer,DatabaseParameterBuffer,DatabaseParameterBufferExtension,ParameterBuffer
public class FBConnectionRequestInfo
extends Object
implements DatabaseParameterBufferExtension, javax.resource.spi.ConnectionRequestInfo, javax.resource.cci.ConnectionSpec, Serializable
The class
FBConnectionRequestInfo holds a clumplet that is
used to store and transfer connection-specific information such as user,
password, and other dpb information..- Version:
- 2.0
- Author:
- David Jencks, Roman Rokytskyy
- See Also:
-
Field Summary
Fields inherited from interface org.firebirdsql.gds.DatabaseParameterBuffer
ACTIVATE_SHADOW, ADDRESS_PATH, ALLOCATION, BEGIN_LOG, BUFFER_LENGTH, CACHE_MANAGER, CDD_PATHNAME, CONNECT_TIMEOUT, DAMAGED, DBKEY_SCOPE, DEBUG, DELETE_SHADOW, DISABLE_JOURNAL, DISABLE_WAL, DROP_WALFILE, DUMMY_PACKET_INTERVAL, ENABLE_JOURNAL, ENCRYPT_KEY, FORCE_WRITE, GARBAGE_COLLECT, GBAK_ATTACH, GFIX_ATTACH, GSEC_ATTACH, GSTAT_ATTACH, INTERP, JOURNAL, LC_CTYPE, LC_MESSAGES, LICENSE, NO_DB_TRIGGERS, NO_GARBAGE_COLLECT, NO_RESERVE, NUM_BUFFERS, NUMBER_OF_USERS, OLD_DUMP_ID, OLD_FILE, OLD_FILE_SIZE, OLD_NUM_FILES, OLD_START_FILE, OLD_START_PAGE, OLD_START_SEQNO, ONLINE, ONLINE_DUMP, OVERWRITE, PAGE_SIZE, PASSWORD, PASSWORD_ENC, PROCESS_ID, PROCESS_NAME, QUIT_LOG, RESERVED, SEC_ATTACH, SET_DB_CHARSET, SET_DB_READONLY, SET_DB_SQL_DIALECT, SET_PAGE_BUFFERS, SHUTDOWN, SHUTDOWN_DELAY, SQL_DIALECT, SQL_ROLE_NAME, SWEEP, SWEEP_INTERVAL, SYS_USER_NAME, SYS_USER_NAME_ENC, TRACE, TRUSTED_AUTH, USER, USER_NAME, VERIFY, WAL_BACKUP_DIR, WAL_BUFSIZE, WAL_CHKPTLEN, WAL_GRP_CMT_WAIT, WAL_NUMBUFS, WORKING_DIRECTORYFields inherited from interface org.firebirdsql.gds.impl.DatabaseParameterBufferExtension
BLOB_BUFFER_SIZE, COLUMN_LABEL_FOR_NAME, DB_CRYPT_CONFIG, EXTENSION_PARAMETERS, FILENAME_CHARSET, GENERATED_KEYS_ENABLED, IGNORE_PROCEDURE_TYPE, LOCAL_ENCODING, MAPPING_PATH, NO_RESULT_SET_TRACKING, OCTETS_AS_BYTES, PARANOIA_MODE, RESULT_SET_HOLDABLE, SO_TIMEOUT, SOCKET_BUFFER_SIZE, TIMESTAMP_USES_LOCAL_TIMEZONE, USE_FIREBIRD_AUTOCOMMIT, USE_STANDARD_UDF, USE_STREAM_BLOBS, WIRE_CRYPT_LEVEL -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddArgument(int argumentType) Add argument with no parameters.voidaddArgument(int argumentType, byte[] content) Add array of bytes.voidaddArgument(int argumentType, int value) Add integer argument.voidaddArgument(int argumentType, long value) Add long argument.voidaddArgument(int argumentType, String value) Add string argument with the default encoding.voidaddArgument(int argumentType, String value, Encoding encoding) Add string argument.deepCopy()Perform a deep copy of this object, returning the copied instance.booleanintgetArgumentAsInt(int argumentType) Get argument as int.getArgumentAsString(int argumentType) Get argument as string.getDpb()Get the underlying Database Parameter Buffer for this object.intgetType()booleanhasArgument(int argumentType) Check if this parameter buffer has specified argument.inthashCode()iterator()Returns an iterator over a copy of the parameters in this parameter buffer.voidremoveArgument(int argumentType) Remove specified argument.Remove extension parameters in the newly created deep copy of this class.voidsetPassword(String password) voidsetUserName(String userName) intsize()byte[]toBytes()Converts this parameter buffer to a byte array.byte[]Converts this parameter buffer to a byte array with type information.voidwriteArgumentsTo(OutputStream outputStream) Writes the arguments in the implementation specific serialization into theOutputStream.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.lang.Iterable
forEach, spliterator
-
Constructor Details
-
FBConnectionRequestInfo
-
-
Method Details
-
deepCopy
Perform a deep copy of this object, returning the copied instance.- Specified by:
deepCopyin interfaceDatabaseParameterBuffer- Returns:
- A deep-copied copy of this FBConnectionRequestInfo object
-
getDpb
Get the underlying Database Parameter Buffer for this object.- Returns:
- The underlying dpb for this object
-
addArgument
public void addArgument(int argumentType, byte[] content) Description copied from interface:ParameterBufferAdd array of bytes.- Specified by:
addArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument.content- content of argument.
-
addArgument
public void addArgument(int argumentType, int value) Description copied from interface:ParameterBufferAdd integer argument.- Specified by:
addArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument.value- integer value to add.
-
addArgument
public void addArgument(int argumentType, long value) Description copied from interface:ParameterBufferAdd long argument.- Specified by:
addArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument.value- long value to add.
-
addArgument
Description copied from interface:ParameterBufferAdd string argument with the default encoding.- Specified by:
addArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument.value- string value to add.
-
addArgument
Description copied from interface:ParameterBufferAdd string argument.- Specified by:
addArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument.value- string value to add.encoding- encoding to use for conversion to bytes
-
getType
public int getType()- Specified by:
getTypein interfaceParameterBuffer- Returns:
- The parameter buffer type identifier
-
addArgument
public void addArgument(int argumentType) Description copied from interface:ParameterBufferAdd argument with no parameters.- Specified by:
addArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument.
-
getArgumentAsInt
public int getArgumentAsInt(int argumentType) Description copied from interface:ParameterBufferGet argument as int.- Specified by:
getArgumentAsIntin interfaceParameterBuffer- Parameters:
argumentType- type of argument to find.- Returns:
- argument as string or
0if nothing found.
-
getArgumentAsString
Description copied from interface:ParameterBufferGet argument as string.- Specified by:
getArgumentAsStringin interfaceParameterBuffer- Parameters:
argumentType- type of argument to find.- Returns:
- argument as string or
nullif nothing found.
-
hasArgument
public boolean hasArgument(int argumentType) Description copied from interface:ParameterBufferCheck if this parameter buffer has specified argument.- Specified by:
hasArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument to find.- Returns:
trueif this buffer contains specified argument.
-
removeArgument
public void removeArgument(int argumentType) Description copied from interface:ParameterBufferRemove specified argument.- Specified by:
removeArgumentin interfaceParameterBuffer- Parameters:
argumentType- type of argument to remove.
-
removeExtensionParams
Description copied from interface:DatabaseParameterBufferExtensionRemove extension parameters in the newly created deep copy of this class.- Specified by:
removeExtensionParamsin interfaceDatabaseParameterBufferExtension- Returns:
- a deep copy of this class where all extension parameters are removed; needed to filter Jaybird extensions that are not understood by Firebird.
-
iterator
Description copied from interface:ParameterBufferReturns an iterator over a copy of the parameters in this parameter buffer.It is safe to iterate over this iterator while modifying the parameter buffer. Changes will not be reflected in the iterator.
- Specified by:
iteratorin interfaceIterable<Parameter>- Specified by:
iteratorin interfaceParameterBuffer- Returns:
- Iterator over the parameters in this parameter buffer.
-
writeArgumentsTo
Description copied from interface:ParameterBufferWrites the arguments in the implementation specific serialization into theOutputStream.- Specified by:
writeArgumentsToin interfaceParameterBuffer- Parameters:
outputStream- TheOutputStreamto write to- Throws:
IOException- Errors produced by the output stream during writes
-
toXdrable
- Specified by:
toXdrablein interfaceParameterBuffer- Returns:
Xdrableto write (and optionally read) this instance as Xdr.
-
toBytes
public byte[] toBytes()Description copied from interface:ParameterBufferConverts this parameter buffer to a byte array.This byte array includes the extra header-bytes (if any), but does not include the type information
- Specified by:
toBytesin interfaceParameterBuffer- Returns:
- Byte array with serialization of this parameter buffer
- See Also:
-
toBytesWithType
public byte[] toBytesWithType()Description copied from interface:ParameterBufferConverts this parameter buffer to a byte array with type information.This byte array includes the type information and the extra header bytes (if any).
- Specified by:
toBytesWithTypein interfaceParameterBuffer- Returns:
- Byte array with serialization of this parameter buffer
- See Also:
-
size
public int size()- Specified by:
sizein interfaceParameterBuffer- Returns:
- the number of parameters stored.
-
setUserName
-
setPassword
-
equals
-
hashCode
public int hashCode() -
getTagMapping
- Specified by:
getTagMappingin interfaceConnectionParameterBuffer- Returns:
- The tag mapping.
-
getDefaultEncoding
- Specified by:
getDefaultEncodingin interfaceConnectionParameterBuffer- Returns:
- The default encoding of string properties in this parameter buffer.
-