Serialized Form
-
Package org.jumpmind.db.model
-
Class org.jumpmind.db.model.Column
class Column extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
autoIncrement
boolean autoIncrement
Whether the column's value is incremented automatically. -
autoUpdate
boolean autoUpdate
Flag for timestamp column that is updated to current timestamp automatically when a row is updated -
charOctetLength
int charOctetLength
-
defaultValue
String defaultValue
The default value. -
description
String description
The column's description. -
distributionKey
boolean distributionKey
-
expressionAsDefaultValue
boolean expressionAsDefaultValue
Whether the column has an expression for a default value. -
generated
boolean generated
Whether the column is a generated/computed/virtual column. -
javaName
String javaName
The java name of the column (optional and unused by DdlUtils, for Torque compatibility). -
jdbcTypeCode
int jdbcTypeCode
The actual JDBC type code. -
jdbcTypeName
String jdbcTypeName
The actual JDBC type name. -
mappedType
String mappedType
The mapped JDBC type -
mappedTypeCode
int mappedTypeCode
The mapped JDBC type code -
name
String name
The name of the column. -
platformColumns
Map<String,
PlatformColumn> platformColumns -
precisionRadix
int precisionRadix
-
primaryKey
boolean primaryKey
Whether the column is a primary key column. -
primaryKeySequence
int primaryKeySequence
-
required
boolean required
Whether the column is required, ie. it must not containNULL
-
scale
int scale
The scale of the column for JDBC types that require/support this. -
size
String size
The size of the column for JDBC types that require/support this. -
sizeAsInt
Integer sizeAsInt
The size of the column for JDBC types that require/support this. -
unique
boolean unique
Whether the column's value is unique using the unique constraint keyword (e.g. SQLite).
-
-
Class org.jumpmind.db.model.Database
class Database extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
catalog
String catalog
-
idMethod
String idMethod
The method for generating primary keys (currently ignored). -
name
String name
The name of the database model. -
schema
String schema
-
tableIndexCache
Map<String,
Integer> tableIndexCache -
tables
ArrayList<Table> tables
The tables. -
version
String version
The version of the model.
-
-
Class org.jumpmind.db.model.ForeignKey
class ForeignKey extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
autoIndexPresent
boolean autoIndexPresent
Whether this foreign key has an associated auto-generated index. -
foreignTable
Table foreignTable
The target table. -
foreignTableCatalog
String foreignTableCatalog
-
foreignTableName
String foreignTableName
The name of the foreign table. -
foreignTableSchema
String foreignTableSchema
-
name
String name
The name of the foreign key, may benull
. -
onDeleteAction
ForeignKey.ForeignKeyAction onDeleteAction
-
onUpdateAction
ForeignKey.ForeignKeyAction onUpdateAction
-
references
org.apache.commons.collections4.set.ListOrderedSet<Reference> references
The references between local and remote columns.
-
-
Class org.jumpmind.db.model.Function
class Function extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.model.IndexColumn
class IndexColumn extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.model.IndexImpBase
class IndexImpBase extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
columns
ArrayList<IndexColumn> columns
The columns making up the index. -
includedColumns
ArrayList<IndexColumn> includedColumns
-
name
String name
The name of the index. -
platformIndexes
Map<String,
PlatformIndex> platformIndexes
-
-
Exception org.jumpmind.db.model.ModelException
class ModelException extends DdlException implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.model.NonUniqueIndex
class NonUniqueIndex extends IndexImpBase implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.model.PlatformColumn
class PlatformColumn extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.model.PlatformFunction
class PlatformFunction extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.model.PlatformIndex
class PlatformIndex extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
compressionType
CompressionTypes compressionType
-
filterCondition
String filterCondition
-
name
String name
-
-
Class org.jumpmind.db.model.PlatformTrigger
class PlatformTrigger extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.model.Reference
class Reference extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
_foreignColumn
Column _foreignColumn
The foreign column. -
_foreignColumnName
String _foreignColumnName
The name of the foreign column. -
_localColumn
Column _localColumn
The local column. -
_localColumnName
String _localColumnName
The name of the local column. -
_sequenceValue
int _sequenceValue
The sequence value within the key.
-
-
Class org.jumpmind.db.model.Table
class Table extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
catalog
String catalog
The catalog of this table as read from the database. -
columns
ArrayList<Column> columns
The columns in this table. -
compressionType
CompressionTypes compressionType
-
description
String description
A description of the table. -
foreignKeys
ArrayList<ForeignKey> foreignKeys
The foreign keys associated to this table. -
fullyQualifiedTableName
String fullyQualifiedTableName
-
fullyQualifiedTableNameLowerCase
String fullyQualifiedTableNameLowerCase
-
indices
ArrayList<IIndex> indices
The indices applied to this table. -
isAccessControlled
boolean isAccessControlled
-
lobColumns
ArrayList<Column> lobColumns
-
logging
boolean logging
This table has changes logged by the transaction log. -
madeAllColumnsPrimaryKey
boolean madeAllColumnsPrimaryKey
-
name
String name
The name. -
oldCatalog
String oldCatalog
-
oldSchema
String oldSchema
-
primaryKeyConstraintName
String primaryKeyConstraintName
-
schema
String schema
The table's schema. -
tableNameLowerCase
String tableNameLowerCase
-
triggers
ArrayList<Trigger> triggers
-
type
String type
The table's type as read from the database.
-
-
Class org.jumpmind.db.model.TableColumnSourceReferences
class TableColumnSourceReferences extends ArrayList<TableColumnSourceReferences.ColumnSourceReferenceEntry> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
searchKey
String searchKey
-
-
Class org.jumpmind.db.model.Trigger
class Trigger extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
catalogName
String catalogName
-
enabled
boolean enabled
-
metaData
Map<String,
Object> metaData -
platformTriggers
Map<String,
PlatformTrigger> platformTriggers -
schemaName
String schemaName
-
source
String source
-
tableName
String tableName
-
triggerName
String triggerName
-
triggerType
Trigger.TriggerType triggerType
-
-
Class org.jumpmind.db.model.UniqueIndex
class UniqueIndex extends IndexImpBase implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.db.platform
-
Exception org.jumpmind.db.platform.DdlException
class DdlException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.db.sql
-
Exception org.jumpmind.db.sql.BulkSqlException
class BulkSqlException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
failedRows
int[] failedRows
-
-
Exception org.jumpmind.db.sql.ColumnNotFoundException
class ColumnNotFoundException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.db.sql.ConcurrencySqlException
class ConcurrencySqlException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.db.sql.DataTruncationException
class DataTruncationException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.db.sql.InvalidSqlException
class InvalidSqlException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.sql.Row
- serialVersionUID:
- 1L
-
Exception org.jumpmind.db.sql.SqlException
class SqlException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.db.sql.SqlList
- serialVersionUID:
- 1L
-
Serialized Fields
-
replacementToken
String replacementToken
-
-
Exception org.jumpmind.db.sql.SqlScriptException
class SqlScriptException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
lineNumber
int lineNumber
-
-
Exception org.jumpmind.db.sql.TableNotFoundException
class TableNotFoundException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.db.sql.UniqueKeyException
class UniqueKeyException extends SqlException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.db.util
-
Exception org.jumpmind.db.util.NotJdbcDriverException
class NotJdbcDriverException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.exception
-
Exception org.jumpmind.exception.HttpException
class HttpException extends IoException implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
code
int code
-
-
Exception org.jumpmind.exception.InterruptedException
class InterruptedException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.exception.InvalidRetryException
class InvalidRetryException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.exception.IoException
class IoException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.exception.ParseException
class ParseException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.exception.SecurityException
class SecurityException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.properties
-
Class org.jumpmind.properties.DefaultParameterParser.ParameterMetaData
class ParameterMetaData extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.properties.EnvironmentSpecificProperties
class EnvironmentSpecificProperties extends TypedProperties implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
original
Properties original
-
propertiesForEnvironment
Set<String> propertiesForEnvironment
-
systemPropertyName
String systemPropertyName
-
-
Class org.jumpmind.properties.SortedProperties
class SortedProperties extends TypedProperties implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.properties.TypedProperties
class TypedProperties extends Properties implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.security
-
Exception org.jumpmind.security.KeystoreAliasException
class KeystoreAliasException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric
-
Exception org.jumpmind.symmetric.EngineAlreadyRegisteredException
class EngineAlreadyRegisteredException extends SymmetricException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.SymmetricException
class SymmetricException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.SyntaxParsingException
class SyntaxParsingException extends SymmetricException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.db
-
Exception org.jumpmind.symmetric.db.DbNotSupportedException
class DbNotSupportedException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.ext
-
Class org.jumpmind.symmetric.ext.ExtensionPointMetaData
class ExtensionPointMetaData extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
extensionPoint
IExtensionPoint extensionPoint
-
extraInfo
String extraInfo
-
installed
boolean installed
-
name
String name
-
type
Class<? extends IExtensionPoint> type
-
-
-
Package org.jumpmind.symmetric.file
-
Class org.jumpmind.symmetric.file.DirectorySnapshot
- serialVersionUID:
- 1L
-
Serialized Fields
-
fileTriggerRouter
FileTriggerRouter fileTriggerRouter
-
-
Exception org.jumpmind.symmetric.file.FileConflictException
class FileConflictException extends IoException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.file.PathResolutionException
class PathResolutionException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.io.data
-
Exception org.jumpmind.symmetric.io.data.ProtocolException
class ProtocolException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.io.data.transform
-
Exception org.jumpmind.symmetric.io.data.transform.IgnoreColumnException
class IgnoreColumnException extends Exception implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.io.data.transform.IgnoreRowException
class IgnoreRowException extends Exception implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.io.data.transform.TransformColumnException
class TransformColumnException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.io.data.writer
-
Class org.jumpmind.symmetric.io.data.writer.Conflict
class Conflict extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
conflictId
String conflictId
-
createTime
Date createTime
-
detectExpression
String detectExpression
-
detectType
Conflict.DetectConflict detectType
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
pingBack
Conflict.PingBack pingBack
-
resolveChangesOnly
boolean resolveChangesOnly
-
resolveRowOnly
boolean resolveRowOnly
-
resolveType
Conflict.ResolveConflict resolveType
-
targetCatalogName
String targetCatalogName
-
targetChannelId
String targetChannelId
-
targetSchemaName
String targetSchemaName
-
targetTableName
String targetTableName
-
-
Exception org.jumpmind.symmetric.io.data.writer.ConflictException
class ConflictException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.io.data.writer.IgnoreBatchException
class IgnoreBatchException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.io.stage
-
Exception org.jumpmind.symmetric.io.stage.StagingLowFreeSpace
class StagingLowFreeSpace extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.model
-
Class org.jumpmind.symmetric.model.AbstractBatch
class AbstractBatch extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchId
long batchId
-
bulkLoaderFlag
boolean bulkLoaderFlag
-
byteCount
long byteCount
-
channelId
String channelId
-
commonFlag
boolean commonFlag
-
conflictLoseCount
long conflictLoseCount
-
conflictWinCount
long conflictWinCount
-
createBy
String createBy
-
createTime
Date createTime
-
dataDeleteRowCount
long dataDeleteRowCount
-
dataInsertRowCount
long dataInsertRowCount
-
dataRowCount
long dataRowCount
-
dataUpdateRowCount
long dataUpdateRowCount
-
errorFlag
boolean errorFlag
-
extractCount
long extractCount
-
extractDeleteRowCount
long extractDeleteRowCount
-
extractInsertRowCount
long extractInsertRowCount
-
extractMillis
long extractMillis
-
extractRowCount
long extractRowCount
-
extractUpdateRowCount
long extractUpdateRowCount
-
failedDataId
long failedDataId
-
failedLineNumber
long failedLineNumber
-
fallbackInsertCount
long fallbackInsertCount
-
fallbackUpdateCount
long fallbackUpdateCount
-
filterMillis
long filterMillis
-
ignoreCount
long ignoreCount
-
ignoreRowCount
long ignoreRowCount
-
lastUpdatedHostName
String lastUpdatedHostName
-
lastUpdatedTime
Date lastUpdatedTime
-
loadCount
long loadCount
-
loadDeleteRowCount
long loadDeleteRowCount
-
loadFlag
boolean loadFlag
-
loadId
long loadId
-
loadInsertRowCount
long loadInsertRowCount
-
loadMillis
long loadMillis
-
loadRowCount
long loadRowCount
-
loadUpdateRowCount
long loadUpdateRowCount
-
missingDeleteCount
long missingDeleteCount
-
networkMillis
long networkMillis
-
nodeId
String nodeId
-
oldByteCount
long oldByteCount
-
oldDataRowCount
long oldDataRowCount
-
oldExtractMillis
long oldExtractMillis
-
oldFilterMillis
long oldFilterMillis
-
oldLoadMillis
long oldLoadMillis
-
oldNetworkMillis
long oldNetworkMillis
-
otherRowCount
long otherRowCount
-
reloadRowCount
long reloadRowCount
-
routerMillis
long routerMillis
-
sentCount
long sentCount
-
skipCount
long skipCount
-
sqlCode
int sqlCode
-
sqlMessage
String sqlMessage
-
sqlState
String sqlState
-
status
AbstractBatch.Status status
-
summary
String summary
-
tableExtractedCount
Map<String,
Map<String, Long>> tableExtractedCount -
tableLoadedCount
Map<String,
Map<String, Long>> tableLoadedCount -
transformExtractMillis
long transformExtractMillis
-
transformLoadMillis
long transformLoadMillis
-
-
Class org.jumpmind.symmetric.model.BatchAck
class BatchAck extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchId
long batchId
-
bulkLoaderFlag
boolean bulkLoaderFlag
-
byteCount
long byteCount
-
conflictLoseCount
long conflictLoseCount
-
conflictWinCount
long conflictWinCount
-
errorLine
long errorLine
-
fallbackInsertCount
long fallbackInsertCount
-
fallbackUpdateCount
long fallbackUpdateCount
-
filterMillis
long filterMillis
-
ignored
boolean ignored
-
ignoreRowCount
long ignoreRowCount
-
isOk
boolean isOk
-
isResend
boolean isResend
-
loadDeleteRowCount
long loadDeleteRowCount
-
loadInsertRowCount
long loadInsertRowCount
-
loadMillis
long loadMillis
-
loadRowCount
long loadRowCount
-
loadUpdateRowCount
long loadUpdateRowCount
-
missingDeleteCount
long missingDeleteCount
-
networkMillis
long networkMillis
-
nodeId
String nodeId
The node id of the node that successfully loaded the batch. -
skipCount
long skipCount
-
sqlCode
int sqlCode
-
sqlMessage
String sqlMessage
-
sqlState
String sqlState
-
startTime
long startTime
-
transformLoadMillis
long transformLoadMillis
-
-
Class org.jumpmind.symmetric.model.BatchId
class BatchId extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchId
long batchId
-
nodeId
String nodeId
-
-
Class org.jumpmind.symmetric.model.Channel
class Channel extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchAlgorithm
String batchAlgorithm
-
channelId
String channelId
-
containsBigLob
boolean containsBigLob
-
createTime
Date createTime
-
dataEventAction
NodeGroupLinkAction dataEventAction
-
dataLoaderType
String dataLoaderType
-
description
String description
-
enabled
boolean enabled
-
extractPeriodMillis
long extractPeriodMillis
-
fileSyncFlag
boolean fileSyncFlag
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
maxBatchSize
int maxBatchSize
-
maxBatchToSend
int maxBatchToSend
-
maxDataToRoute
int maxDataToRoute
-
maxKBytesPerSecond
BigDecimal maxKBytesPerSecond
-
processingOrder
int processingOrder
-
queue
String queue
-
reloadFlag
boolean reloadFlag
-
useOldDataToRoute
boolean useOldDataToRoute
-
usePkDataToRoute
boolean usePkDataToRoute
-
useRowDataToRoute
boolean useRowDataToRoute
-
-
Class org.jumpmind.symmetric.model.Data
class Data extends CsvData implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
isPreRouted
boolean isPreRouted
-
triggerHistory
TriggerHistory triggerHistory
This is a reference to the triggerHistory row the trigger referred to when the data event fired.
-
-
Class org.jumpmind.symmetric.model.DatabaseParameter
class DatabaseParameter extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.DataEvent
class DataEvent extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchId
long batchId
-
dataId
long dataId
-
-
Class org.jumpmind.symmetric.model.DataGap
class DataGap extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createTime
Date createTime
-
endId
long endId
-
startId
long startId
-
-
Class org.jumpmind.symmetric.model.Extension
class Extension extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createTime
Date createTime
-
enabled
boolean enabled
-
extensionId
String extensionId
-
extensionOrder
int extensionOrder
-
extensionText
String extensionText
-
extensionType
String extensionType
-
interfaceName
String interfaceName
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
nodeGroupId
String nodeGroupId
-
-
Class org.jumpmind.symmetric.model.ExtractRequest
class ExtractRequest extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createTime
Date createTime
-
endBatchId
long endBatchId
-
extractedMillis
long extractedMillis
-
extractedRows
long extractedRows
-
extractThreadId
Integer extractThreadId
-
lastLoadedBatchId
long lastLoadedBatchId
-
lastTransferredBatchId
long lastTransferredBatchId
-
lastUpdateTime
Date lastUpdateTime
-
loadedMillis
long loadedMillis
-
loadedRows
long loadedRows
-
loadId
long loadId
-
loadThreadId
Integer loadThreadId
-
nodeId
String nodeId
-
numRowsBulkLoaded
long numRowsBulkLoaded
-
parentRequestId
long parentRequestId
-
queue
String queue
-
requestId
long requestId
-
routerId
String routerId
-
rows
long rows
-
startBatchId
long startBatchId
-
status
ExtractRequest.ExtractStatus status
-
tableName
String tableName
-
transferredMillis
long transferredMillis
-
transferredRows
long transferredRows
-
triggerId
String triggerId
-
triggerRouter
TriggerRouter triggerRouter
-
-
Class org.jumpmind.symmetric.model.FileSnapshot
class FileSnapshot extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
channelId
String channelId
-
crc32Checksum
long crc32Checksum
-
createTime
Date createTime
-
fileModifiedTime
long fileModifiedTime
-
fileName
String fileName
-
fileSize
long fileSize
-
lastEventType
FileSnapshot.LastEventType lastEventType
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
oldCrc32Checksum
long oldCrc32Checksum
-
relativeDir
String relativeDir
-
reloadChannelId
String reloadChannelId
-
routerId
String routerId
-
triggerId
String triggerId
-
-
Class org.jumpmind.symmetric.model.FileTrigger
class FileTrigger extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
afterCopyScript
String afterCopyScript
-
baseDir
String baseDir
-
beforeCopyScript
String beforeCopyScript
-
channelId
String channelId
-
createTime
Date createTime
-
deleteAfterSync
boolean deleteAfterSync
-
excludesFiles
String excludesFiles
-
includesFiles
String includesFiles
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
recurse
boolean recurse
-
reloadChannelId
String reloadChannelId
-
syncOnCreate
boolean syncOnCreate
-
syncOnCtlFile
boolean syncOnCtlFile
-
syncOnDelete
boolean syncOnDelete
-
syncOnModified
boolean syncOnModified
-
triggerId
String triggerId
-
-
Class org.jumpmind.symmetric.model.FileTriggerRouter
class FileTriggerRouter extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
conflictStrategy
FileConflictStrategy conflictStrategy
-
conflictStrategyString
String conflictStrategyString
-
createTime
Date createTime
-
enabled
boolean enabled
-
fileTrigger
FileTrigger fileTrigger
-
initialLoadEnabled
boolean initialLoadEnabled
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
router
Router router
-
targetBaseDir
String targetBaseDir
-
-
Class org.jumpmind.symmetric.model.Grouplet
class Grouplet extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createTime
Date createTime
-
description
String description
-
groupletId
String groupletId
-
groupletLinkPolicy
Grouplet.GroupletLinkPolicy groupletLinkPolicy
-
groupletLinks
List<GroupletLink> groupletLinks
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
triggerRouterGrouplets
List<TriggerRouterGrouplet> triggerRouterGrouplets
-
-
Class org.jumpmind.symmetric.model.IncomingBatch
class IncomingBatch extends AbstractBatch implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
failedRowNumber
long failedRowNumber
-
retry
boolean retry
-
startTime
long startTime
-
-
Class org.jumpmind.symmetric.model.IncomingBatchSummary
class IncomingBatchSummary extends BatchSummary implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.IncomingError
class IncomingError extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchId
long batchId
-
binaryEncoding
BinaryEncoding binaryEncoding
-
columnNames
String columnNames
-
conflictId
String conflictId
-
createTime
Date createTime
-
csvData
CsvData csvData
-
eventType
DataEventType eventType
-
failedLineNumber
long failedLineNumber
-
failedRowNumber
long failedRowNumber
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
nodeId
String nodeId
-
primaryKeyColumnNames
String primaryKeyColumnNames
-
resolveIgnore
boolean resolveIgnore
-
targetCatalogName
String targetCatalogName
-
targetSchemaName
String targetSchemaName
-
targetTableName
String targetTableName
-
-
Class org.jumpmind.symmetric.model.JobDefinition
class JobDefinition extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
clustered
boolean clustered
-
createBy
String createBy
-
createTime
Date createTime
-
defaultAutomaticStartup
boolean defaultAutomaticStartup
-
defaultSchedule
String defaultSchedule
-
description
String description
-
jobExpression
String jobExpression
-
jobName
String jobName
-
jobType
JobDefinition.JobType jobType
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
nodeGroupId
String nodeGroupId
-
requiresRegistration
boolean requiresRegistration
-
-
Class org.jumpmind.symmetric.model.LoadFilter
class LoadFilter extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
afterWriteScript
String afterWriteScript
-
batchCommitScript
String batchCommitScript
-
batchCompleteScript
String batchCompleteScript
-
batchRollbackScript
String batchRollbackScript
-
beforeWriteScript
String beforeWriteScript
-
createTime
Date createTime
-
failOnError
boolean failOnError
-
filterOnDelete
boolean filterOnDelete
-
filterOnInsert
boolean filterOnInsert
-
filterOnUpdate
boolean filterOnUpdate
-
handleErrorScript
String handleErrorScript
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
loadFilterId
String loadFilterId
-
loadFilterOrder
int loadFilterOrder
-
loadFilterType
LoadFilter.LoadFilterType loadFilterType
-
targetCatalogName
String targetCatalogName
-
targetSchemaName
String targetSchemaName
-
targetTableName
String targetTableName
-
-
Class org.jumpmind.symmetric.model.Lock
class Lock extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.Node
class Node extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchInErrorCount
int batchInErrorCount
-
batchToSendCount
int batchToSendCount
-
configVersion
String configVersion
-
createdAtNodeId
String createdAtNodeId
-
databaseName
String databaseName
-
databaseType
String databaseType
Record the type of database the node hosts. -
databaseVersion
String databaseVersion
Get the version of the database the node hosts. -
dataRowsLoadedCount
int dataRowsLoadedCount
-
dataRowsToSendCount
int dataRowsToSendCount
-
deploymentSubType
String deploymentSubType
-
deploymentType
String deploymentType
-
externalId
String externalId
-
lastSuccessfulSyncDate
Date lastSuccessfulSyncDate
-
MAX_VERSION_SIZE
int MAX_VERSION_SIZE
-
mostRecentActiveTableSynced
String mostRecentActiveTableSynced
-
nodeGroupId
String nodeGroupId
-
nodeId
String nodeId
-
oldestLoadTime
Date oldestLoadTime
-
purgeOutgoingAverageMs
long purgeOutgoingAverageMs
-
purgeOutgoingLastMs
long purgeOutgoingLastMs
-
purgeOutgoingLastRun
Date purgeOutgoingLastRun
-
routingAverageMs
long routingAverageMs
-
routingLastMs
long routingLastMs
-
routingLastRun
Date routingLastRun
-
schemaVersion
String schemaVersion
Record the version of the schema. This is recorded and managed by the sync software. -
symDataSize
long symDataSize
-
symmetricVersion
String symmetricVersion
-
symmetricVersionParts
int[] symmetricVersionParts
-
syncEnabled
boolean syncEnabled
-
syncUrl
String syncUrl
-
-
Class org.jumpmind.symmetric.model.NodeChannel
class NodeChannel extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
channel
Channel channel
-
nodeChannelControl
NodeChannelControl nodeChannelControl
-
-
Class org.jumpmind.symmetric.model.NodeChannelControl
class NodeChannelControl extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.NodeCommunication
class NodeCommunication extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchToSendCount
long batchToSendCount
-
communicationType
NodeCommunication.CommunicationType communicationType
-
failCount
long failCount
-
lastLockMillis
long lastLockMillis
-
lastLockTime
Date lastLockTime
-
lockingServerId
String lockingServerId
-
lockTime
Date lockTime
-
nodeId
String nodeId
-
nodePriority
int nodePriority
-
queue
String queue
-
successCount
long successCount
-
totalFailCount
long totalFailCount
-
totalFailMillis
long totalFailMillis
-
totalSuccessCount
long totalSuccessCount
-
totalSuccessMillis
long totalSuccessMillis
-
-
Class org.jumpmind.symmetric.model.NodeGroup
class NodeGroup extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.NodeGroupChannelWindow
class NodeGroupChannelWindow extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.NodeGroupLink
class NodeGroupLink extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createTime
Date createTime
-
dataEventAction
NodeGroupLinkAction dataEventAction
-
isReversible
boolean isReversible
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
sourceNodeGroupId
String sourceNodeGroupId
-
syncConfigEnabled
boolean syncConfigEnabled
-
syncSqlEnabled
boolean syncSqlEnabled
-
targetNodeGroupId
String targetNodeGroupId
-
-
Class org.jumpmind.symmetric.model.NodeHost
class NodeHost extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
availableProcessors
int availableProcessors
-
createTime
Date createTime
-
freeMemoryBytes
long freeMemoryBytes
-
heartbeatTime
Date heartbeatTime
-
hostName
String hostName
-
instanceId
String instanceId
-
ipAddress
String ipAddress
-
javaVendor
String javaVendor
-
javaVersion
String javaVersion
-
jdbcVersion
String jdbcVersion
-
lastRestartTime
Date lastRestartTime
-
maxMemoryBytes
long maxMemoryBytes
-
nodeId
String nodeId
-
osArch
String osArch
-
osName
String osName
-
osUser
String osUser
-
osVersion
String osVersion
-
symmetricVersion
String symmetricVersion
-
timezoneOffset
String timezoneOffset
-
totalMemoryBytes
long totalMemoryBytes
-
-
Class org.jumpmind.symmetric.model.NodeSecurity
class NodeSecurity extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createdAtNodeId
String createdAtNodeId
-
failedLogins
int failedLogins
-
initialLoadCreateBy
String initialLoadCreateBy
-
initialLoadEnabled
boolean initialLoadEnabled
-
initialLoadEndTime
Date initialLoadEndTime
-
initialLoadId
long initialLoadId
-
initialLoadTime
Date initialLoadTime
-
nodeId
String nodeId
-
nodePassword
String nodePassword
-
partialLoadCreateBy
String partialLoadCreateBy
-
partialLoadEndTime
Date partialLoadEndTime
-
partialLoadId
long partialLoadId
-
partialLoadTime
Date partialLoadTime
-
registrationEnabled
boolean registrationEnabled
-
registrationNotAfter
Date registrationNotAfter
-
registrationNotBefore
Date registrationNotBefore
-
registrationTime
Date registrationTime
-
revInitialLoadCreateBy
String revInitialLoadCreateBy
-
revInitialLoadEnabled
boolean revInitialLoadEnabled
-
revInitialLoadId
long revInitialLoadId
-
revInitialLoadTime
Date revInitialLoadTime
-
-
Class org.jumpmind.symmetric.model.OutgoingBatch
class OutgoingBatch extends AbstractBatch implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.OutgoingBatches
class OutgoingBatches extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
activeChannelIds
Set<String> activeChannelIds
-
activeChannels
Set<NodeChannel> activeChannels
-
batches
List<OutgoingBatch> batches
-
-
Class org.jumpmind.symmetric.model.OutgoingBatchSummary
class OutgoingBatchSummary extends BatchSummary implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.OutgoingBatchWithPayload
class OutgoingBatchWithPayload extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchId
long batchId
-
channelId
String channelId
-
payload
List<String> payload
-
payloadType
StructureDataWriter.PayloadType payloadType
-
status
AbstractBatch.Status status
-
-
Class org.jumpmind.symmetric.model.ProcessInfo
class ProcessInfo extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
bulkLoadFlag
boolean bulkLoadFlag
-
currentBatchCount
long currentBatchCount
-
currentBatchId
long currentBatchId
-
currentBatchStartTime
Date currentBatchStartTime
-
currentChannelId
String currentChannelId
-
currentDataCount
long currentDataCount
-
currentLoadId
long currentLoadId
-
currentRowCount
long currentRowCount
-
currentTableName
String currentTableName
-
endTime
Date endTime
-
key
ProcessInfoKey key
-
lastStatusChangeTime
Date lastStatusChangeTime
-
listener
IProcessInfoListener listener
-
startTime
Date startTime
-
status
ProcessInfo.ProcessStatus status
-
totalBatchCount
long totalBatchCount
-
totalDataCount
long totalDataCount
-
-
Class org.jumpmind.symmetric.model.ProcessInfoKey
class ProcessInfoKey extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
processType
ProcessType processType
-
queue
String queue
-
sourceNodeId
String sourceNodeId
-
targetNodeId
String targetNodeId
-
-
Class org.jumpmind.symmetric.model.RegistrationRequest
class RegistrationRequest extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
attemptCount
long attemptCount
-
createTime
Date createTime
-
errorMessage
String errorMessage
-
externalId
String externalId
-
hostName
String hostName
-
ipAddress
String ipAddress
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
nodeGroupId
String nodeGroupId
-
registeredNodeId
String registeredNodeId
-
status
RegistrationRequest.RegistrationStatus status
-
-
Class org.jumpmind.symmetric.model.RemoteNodeStatus
class RemoteNodeStatus extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchesProcessed
long batchesProcessed
-
channels
Map<String,
Channel> channels -
complete
boolean complete
-
dataProcessed
long dataProcessed
-
monitor
Object monitor
-
nodeId
String nodeId
-
queue
String queue
-
reloadBatchesProcessed
long reloadBatchesProcessed
-
status
RemoteNodeStatus.Status status
-
tableCounts
Map<String,
Integer> tableCounts -
tableSummary
Set<String> tableSummary
-
-
Class org.jumpmind.symmetric.model.RemoteNodeStatuses
- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.model.Router
class Router extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createTime
Date createTime
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
nodeGroupLink
NodeGroupLink nodeGroupLink
-
routerExpression
String routerExpression
Default to routing all data to all nodes. -
routerId
String routerId
-
routerType
String routerType
-
syncOnDelete
boolean syncOnDelete
-
syncOnInsert
boolean syncOnInsert
-
syncOnUpdate
boolean syncOnUpdate
-
targetCatalogName
String targetCatalogName
-
targetSchemaName
String targetSchemaName
-
targetTableName
String targetTableName
-
useSourceCatalogSchema
boolean useSourceCatalogSchema
-
-
Class org.jumpmind.symmetric.model.Trigger
class Trigger extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
channelExpression
String channelExpression
-
channelId
String channelId
-
createTime
Date createTime
-
customBeforeDeleteText
String customBeforeDeleteText
-
customBeforeInsertText
String customBeforeInsertText
-
customBeforeUpdateText
String customBeforeUpdateText
-
customOnDeleteText
String customOnDeleteText
-
customOnInsertText
String customOnInsertText
-
customOnUpdateText
String customOnUpdateText
-
excludedColumnNames
String excludedColumnNames
-
externalSelect
String externalSelect
-
includedColumnNames
String includedColumnNames
-
isSourceCatalogWildCarded
boolean isSourceCatalogWildCarded
-
isSourceSchemaWildCarded
boolean isSourceSchemaWildCarded
-
isSourceTableNameExpanded
boolean isSourceTableNameExpanded
-
isSourceTableNameWildCarded
boolean isSourceTableNameWildCarded
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
nameForDeleteTrigger
String nameForDeleteTrigger
-
nameForInsertTrigger
String nameForInsertTrigger
-
nameForUpdateTrigger
String nameForUpdateTrigger
-
reloadChannelId
String reloadChannelId
-
sourceCatalogName
String sourceCatalogName
-
sourceCatalogNameUnescaped
String sourceCatalogNameUnescaped
-
sourceSchemaName
String sourceSchemaName
-
sourceSchemaNameUnescaped
String sourceSchemaNameUnescaped
-
sourceTableName
String sourceTableName
-
sourceTableNameLowerCase
String sourceTableNameLowerCase
-
sourceTableNameUnescaped
String sourceTableNameUnescaped
-
streamRow
boolean streamRow
-
syncKeyNames
String syncKeyNames
-
syncOnDelete
boolean syncOnDelete
-
syncOnDeleteCondition
String syncOnDeleteCondition
-
syncOnIncomingBatch
boolean syncOnIncomingBatch
-
syncOnInsert
boolean syncOnInsert
-
syncOnInsertCondition
String syncOnInsertCondition
-
syncOnUpdate
boolean syncOnUpdate
-
syncOnUpdateCondition
String syncOnUpdateCondition
-
timeBasedCaptureColumn
String timeBasedCaptureColumn
-
triggerId
String triggerId
-
txIdExpression
String txIdExpression
This is a SQL expression that creates a unique id which the sync process can use to 'group' events together and commit together. -
useCaptureLobs
boolean useCaptureLobs
-
useCaptureOldData
boolean useCaptureOldData
-
useHandleKeyUpdates
boolean useHandleKeyUpdates
-
useStreamLobs
boolean useStreamLobs
-
-
Class org.jumpmind.symmetric.model.TriggerHistory
class TriggerHistory extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
columnNames
String columnNames
-
createTime
Date createTime
-
errorMessage
String errorMessage
-
inactiveTime
Date inactiveTime
-
isMissingPk
boolean isMissingPk
-
lastTriggerBuildReason
TriggerReBuildReason lastTriggerBuildReason
-
nameForDeleteTrigger
String nameForDeleteTrigger
-
nameForInsertTrigger
String nameForInsertTrigger
-
nameForUpdateTrigger
String nameForUpdateTrigger
-
parsedColumnNames
String[] parsedColumnNames
-
parsedPkColumnNames
String[] parsedPkColumnNames
-
pkColumnNames
String pkColumnNames
-
sourceCatalogName
String sourceCatalogName
-
sourceSchemaName
String sourceSchemaName
-
sourceTableName
String sourceTableName
-
sourceTableNameLowerCase
String sourceTableNameLowerCase
-
tableHash
int tableHash
This is a hash based on the tablename, column names, and column data types. It is used to effectively version a table so we know when it changes. -
triggerHistoryId
int triggerHistoryId
-
triggerId
String triggerId
-
triggerRowHash
long triggerRowHash
This is a hash based on the values in the trigger configuration table. -
triggerTemplateHash
long triggerTemplateHash
This is a hash of the trigger templates used for generating the trigger text.
-
-
Class org.jumpmind.symmetric.model.TriggerRouter
class TriggerRouter extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
createTime
Date createTime
-
dataRefreshType
String dataRefreshType
-
enabled
boolean enabled
-
initialLoadDeleteStmt
String initialLoadDeleteStmt
-
initialLoadOrder
int initialLoadOrder
This is the order in which the definitions will be processed. -
initialLoadSelect
String initialLoadSelect
-
lastUpdateBy
String lastUpdateBy
-
lastUpdateTime
Date lastUpdateTime
-
pingBackEnabled
boolean pingBackEnabled
-
router
Router router
-
trigger
Trigger trigger
-
-
-
Package org.jumpmind.symmetric.route
-
Exception org.jumpmind.symmetric.route.CommonBatchCollisionException
class CommonBatchCollisionException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.route.DelayRoutingException
class DelayRoutingException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.route.parse
-
Exception org.jumpmind.symmetric.route.parse.DBFException
class DBFException extends Exception implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
detail
Throwable detail
-
-
-
Package org.jumpmind.symmetric.service
-
Exception org.jumpmind.symmetric.service.InitialLoadPendingException
class InitialLoadPendingException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.service.RegistrationFailedException
class RegistrationFailedException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.service.RegistrationNotOpenException
class RegistrationNotOpenException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.service.RegistrationPendingException
class RegistrationPendingException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.service.RegistrationRedirectException
class RegistrationRedirectException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
redirectionUrl
String redirectionUrl
-
-
Exception org.jumpmind.symmetric.service.RegistrationRequiredException
class RegistrationRequiredException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.service.impl
-
Class org.jumpmind.symmetric.service.impl.DataLoaderService.ConflictNodeGroupLink
class ConflictNodeGroupLink extends Conflict implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeGroupLink
NodeGroupLink nodeGroupLink
-
-
Class org.jumpmind.symmetric.service.impl.LoadFilterService.LoadFilterNodeGroupLink
class LoadFilterNodeGroupLink extends LoadFilter implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
nodeGroupLink
NodeGroupLink nodeGroupLink
-
-
Class org.jumpmind.symmetric.service.impl.TransformService.TransformTableNodeGroupLink
class TransformTableNodeGroupLink extends TransformTable implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
bound
boolean bound
-
nodeGroupLink
NodeGroupLink nodeGroupLink
-
-
-
Package org.jumpmind.symmetric.statistic
-
Class org.jumpmind.symmetric.statistic.AbstractStatsByPeriodMap
- serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.statistic.ChannelStatsByPeriodMap
class ChannelStatsByPeriodMap extends AbstractStatsByPeriodMap<Map<String,ChannelStats>, ChannelStats> implements Serializable - serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.statistic.HostStatsByPeriodMap
class HostStatsByPeriodMap extends AbstractStatsByPeriodMap<HostStats,HostStats> implements Serializable - serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.statistic.JobStatsByPeriodMap
class JobStatsByPeriodMap extends AbstractStatsByPeriodMap<JobStats,JobStats> implements Serializable - serialVersionUID:
- 1L
-
Class org.jumpmind.symmetric.statistic.NodeStatsByPeriodMap
class NodeStatsByPeriodMap extends AbstractStatsByPeriodMap<Map<String,ChannelStats>, ChannelStats> implements Serializable - serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.transport
-
Exception org.jumpmind.symmetric.transport.AuthenticationException
class AuthenticationException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.transport.AuthenticationExpiredException
class AuthenticationExpiredException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.transport.ConnectionDuplicateException
class ConnectionDuplicateException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.transport.ConnectionRejectedException
class ConnectionRejectedException extends OfflineException implements Serializable- serialVersionUID:
- 3770259092569043530L
-
Exception org.jumpmind.symmetric.transport.NoContentException
class NoContentException extends IoException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.transport.NoReservationException
class NoReservationException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.transport.OfflineException
class OfflineException extends IoException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.transport.ServiceNotReadyException
class ServiceNotReadyException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
Exception org.jumpmind.symmetric.transport.SyncDisabledException
class SyncDisabledException extends OfflineException implements Serializable- serialVersionUID:
- 8646739179107142193L
-
Exception org.jumpmind.symmetric.transport.TransportException
class TransportException extends OfflineException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.util
-
Exception org.jumpmind.symmetric.util.ModuleException
class ModuleException extends Exception implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
isLogged
boolean isLogged
-
-
-
Package org.jumpmind.symmetric.web
-
Class org.jumpmind.symmetric.web.AuthenticationSession
- serialVersionUID:
- 1L
-
Serialized Fields
-
creationTime
long creationTime
-
id
String id
-
-
Class org.jumpmind.symmetric.web.SymmetricServlet
class SymmetricServlet extends jakarta.servlet.http.HttpServlet implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.symmetric.wrapper
-
Exception org.jumpmind.symmetric.wrapper.WrapperException
class WrapperException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
-
Package org.jumpmind.util
-
Class org.jumpmind.util.LinkedCaseInsensitiveMap
- serialVersionUID:
- 1L
-
Exception org.jumpmind.util.SimpleClassCompilerException
class SimpleClassCompilerException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
diagnostics
List<Diagnostic<? extends JavaFileObject>> diagnostics
-
-
-
Package org.jumpmind.vaadin.ui.common
-
Class org.jumpmind.vaadin.ui.common.ColumnVisibilityToggler
class ColumnVisibilityToggler extends com.vaadin.flow.component.button.Button implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
checkboxLayout
com.vaadin.flow.component.orderedlayout.VerticalLayout checkboxLayout
-
columnMap
Map<com.vaadin.flow.component.grid.Grid.Column<?>,
com.vaadin.flow.component.checkbox.Checkbox> columnMap
-
-
Class org.jumpmind.vaadin.ui.common.CustomSplitLayout
class CustomSplitLayout extends com.vaadin.flow.component.splitlayout.SplitLayout implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.common.ExportFileDownloader
class ExportFileDownloader extends com.vaadin.flow.server.StreamResource implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.common.Label
class Label extends com.vaadin.flow.component.html.Span implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
html
com.vaadin.flow.component.Html html
-
icon
com.vaadin.flow.component.Component icon
-
-
Class org.jumpmind.vaadin.ui.common.NotifyDialog
class NotifyDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
detailsMode
boolean detailsMode
-
-
Class org.jumpmind.vaadin.ui.common.PromptDialog
class PromptDialog extends com.vaadin.flow.component.dialog.Dialog implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.common.ReadOnlyTextAreaDialog
class ReadOnlyTextAreaDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
column
Column column
-
displayBox
com.vaadin.flow.component.select.Select<String> displayBox
-
downloadButton
com.vaadin.flow.component.button.Button downloadButton
-
leftComponentList
List<com.vaadin.flow.component.Component> leftComponentList
-
log
org.slf4j.Logger log
-
platform
IDatabasePlatform platform
-
primaryKeys
Object[] primaryKeys
-
table
Table table
-
textField
com.vaadin.flow.component.textfield.TextArea textField
-
wrapper
com.vaadin.flow.component.orderedlayout.VerticalLayout wrapper
-
-
Class org.jumpmind.vaadin.ui.common.ResizableDialog
class ResizableDialog extends com.vaadin.flow.component.dialog.Dialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
escapeShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration escapeShortcutRegistration
-
innerContent
com.vaadin.flow.component.orderedlayout.VerticalLayout innerContent
-
log
org.slf4j.Logger log
-
-
Class org.jumpmind.vaadin.ui.common.ResizableDialog.CloseButtonListener
class CloseButtonListener extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.common.SplitterResizedEvent
class SplitterResizedEvent extends com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.splitlayout.SplitLayout> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
leftWidth
double leftWidth
-
rightWidth
double rightWidth
-
-
Class org.jumpmind.vaadin.ui.common.SqlEntryDialog
class SqlEntryDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
editor
de.f0rce.ace.AceEditor editor
-
-
Class org.jumpmind.vaadin.ui.common.TabbedApplicationPanel
class TabbedApplicationPanel extends TabSheet implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
mainTab
TabSheet.EnhancedTab mainTab
-
-
Class org.jumpmind.vaadin.ui.common.TabSheet
class TabSheet extends com.vaadin.flow.component.html.Div implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
closeable
boolean closeable
-
content
com.vaadin.flow.component.html.Div content
-
layout
com.vaadin.flow.component.orderedlayout.VerticalLayout layout
-
tabList
List<TabSheet.EnhancedTab> tabList
-
tabs
com.vaadin.flow.component.tabs.Tabs tabs
-
-
Class org.jumpmind.vaadin.ui.common.TabSheet.EnhancedTab
class EnhancedTab extends com.vaadin.flow.component.tabs.Tab implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
closeIcon
com.vaadin.flow.component.icon.Icon closeIcon
-
component
com.vaadin.flow.component.Component component
-
icon
com.vaadin.flow.component.icon.Icon icon
-
name
String name
-
-
Class org.jumpmind.vaadin.ui.common.ThemeChangedEvent
class ThemeChangedEvent extends com.vaadin.flow.component.ComponentEvent<com.vaadin.flow.component.UI> implements Serializable-
Serialized Fields
-
theme
String theme
-
-
-
-
Package org.jumpmind.vaadin.ui.sqlexplorer
-
Exception org.jumpmind.vaadin.ui.sqlexplorer.AbortedQueryException
class AbortedQueryException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DatabaseInfoPanel
class DatabaseInfoPanel extends com.vaadin.flow.component.orderedlayout.VerticalLayout implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.sqlexplorer.Db
class Db extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
name
String name
-
platform
IDatabasePlatform platform
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DbExportDialog
class DbExportDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
cancelButton
com.vaadin.flow.component.button.Button cancelButton
-
compatibilitySelect
com.vaadin.flow.component.combobox.ComboBox<DbExport.Compatible> compatibilitySelect
-
createInfo
com.vaadin.flow.component.checkbox.Checkbox createInfo
-
data
com.vaadin.flow.component.checkbox.Checkbox data
-
databasePlatform
IDatabasePlatform databasePlatform
-
dbExport
DbExport dbExport
-
doneButton
com.vaadin.flow.component.button.Button doneButton
-
doneShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration doneShortcutRegistration
-
dropTables
com.vaadin.flow.component.checkbox.Checkbox dropTables
-
exportEditorButton
com.vaadin.flow.component.button.Button exportEditorButton
-
exportEditorShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration exportEditorShortcutRegistration
-
exportFileButton
com.vaadin.flow.component.button.Button exportFileButton
-
exportFileShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration exportFileShortcutRegistration
-
exportFormatOptionGroup
com.vaadin.flow.component.radiobutton.RadioButtonGroup<String> exportFormatOptionGroup
-
fileDownloader
com.vaadin.flow.component.html.Anchor fileDownloader
-
foreignKeys
com.vaadin.flow.component.checkbox.Checkbox foreignKeys
-
formatSelect
com.vaadin.flow.component.combobox.ComboBox<org.jumpmind.vaadin.ui.sqlexplorer.DbExportDialog.DbExportFormat> formatSelect
-
indices
com.vaadin.flow.component.checkbox.Checkbox indices
-
log
org.slf4j.Logger log
-
nextButton
com.vaadin.flow.component.button.Button nextButton
-
nextShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration nextShortcutRegistration
-
optionLayout
com.vaadin.flow.component.orderedlayout.Scroller optionLayout
-
previousButton
com.vaadin.flow.component.button.Button previousButton
-
queryPanel
QueryPanel queryPanel
-
quotedIdentifiers
com.vaadin.flow.component.checkbox.Checkbox quotedIdentifiers
-
tableSelectionLayout
TableSelectionLayout tableSelectionLayout
-
whereClauseField
com.vaadin.flow.component.textfield.TextArea whereClauseField
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DbFillDialog
class DbFillDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
cancelButton
com.vaadin.flow.component.button.Button cancelButton
-
cancelShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration cancelShortcutRegistration
-
cascadeBox
com.vaadin.flow.component.checkbox.Checkbox cascadeBox
-
cascadeSelectBox
com.vaadin.flow.component.checkbox.Checkbox cascadeSelectBox
-
commitRowSizeField
com.vaadin.flow.component.textfield.TextField commitRowSizeField
-
continueBox
com.vaadin.flow.component.checkbox.Checkbox continueBox
-
countField
com.vaadin.flow.component.textfield.TextField countField
-
databasePlatform
IDatabasePlatform databasePlatform
-
dbFill
DbFill dbFill
-
deleteWeightField
com.vaadin.flow.component.textfield.TextField deleteWeightField
-
fillButton
com.vaadin.flow.component.button.Button fillButton
-
fillShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration fillShortcutRegistration
-
insertWeightField
com.vaadin.flow.component.textfield.TextField insertWeightField
-
intervalField
com.vaadin.flow.component.textfield.TextField intervalField
-
nextButton
com.vaadin.flow.component.button.Button nextButton
-
nextShortcutRegistration
com.vaadin.flow.component.ShortcutRegistration nextShortcutRegistration
-
oGroup
com.vaadin.flow.component.radiobutton.RadioButtonGroup<String> oGroup
-
optionLayout
com.vaadin.flow.component.orderedlayout.Scroller optionLayout
-
previousButton
com.vaadin.flow.component.button.Button previousButton
-
queryPanel
QueryPanel queryPanel
-
tableSelectionLayout
TableSelectionLayout tableSelectionLayout
-
truncateBox
com.vaadin.flow.component.checkbox.Checkbox truncateBox
-
updateWeightField
com.vaadin.flow.component.textfield.TextField updateWeightField
-
verboseBox
com.vaadin.flow.component.checkbox.Checkbox verboseBox
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DbImportDialog
class DbImportDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
alter
com.vaadin.flow.component.checkbox.Checkbox alter
-
alterCase
com.vaadin.flow.component.checkbox.Checkbox alterCase
-
cancelButton
com.vaadin.flow.component.button.Button cancelButton
-
catalogSelect
com.vaadin.flow.component.combobox.ComboBox<String> catalogSelect
-
commitField
com.vaadin.flow.component.textfield.TextField commitField
-
convertUniIndexes
com.vaadin.flow.component.checkbox.Checkbox convertUniIndexes
-
databasePlatform
IDatabasePlatform databasePlatform
-
dbImport
DbImport dbImport
-
file
File file
-
force
com.vaadin.flow.component.checkbox.Checkbox force
-
format
DbImport.Format format
-
formatSelect
com.vaadin.flow.component.combobox.ComboBox<org.jumpmind.vaadin.ui.sqlexplorer.DbImportDialog.DbImportFormat> formatSelect
-
ignoreConflicts
com.vaadin.flow.component.checkbox.Checkbox ignoreConflicts
-
ignoreMissingTables
com.vaadin.flow.component.checkbox.Checkbox ignoreMissingTables
-
importLayout
com.vaadin.flow.component.orderedlayout.Scroller importLayout
-
listOfTablesSelect
com.vaadin.flow.component.combobox.ComboBox<String> listOfTablesSelect
-
log
org.slf4j.Logger log
-
out
FileOutputStream out
-
replace
com.vaadin.flow.component.checkbox.Checkbox replace
-
schemaSelect
com.vaadin.flow.component.combobox.ComboBox<String> schemaSelect
-
selectedTable
Table selectedTable
-
selectedTablesSet
Set<Table> selectedTablesSet
-
upload
com.vaadin.flow.component.upload.Upload upload
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DbTree
class DbTree extends com.vaadin.flow.component.treegrid.TreeGrid<DbTreeNode> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
databaseProvider
IDbProvider databaseProvider
-
expandedNodes
Set<DbTreeNode> expandedNodes
-
log
org.slf4j.Logger log
-
rootNodes
Set<DbTreeNode> rootNodes
-
settingsProvider
ISettingsProvider settingsProvider
-
treeData
com.vaadin.flow.data.provider.hierarchy.TreeData<DbTreeNode> treeData
-
treeDataProvider
com.vaadin.flow.data.provider.hierarchy.TreeDataProvider<DbTreeNode> treeDataProvider
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DbTreeNode
class DbTreeNode extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
children
List<DbTreeNode> children
-
dbTree
DbTree dbTree
-
description
String description
-
icon
com.vaadin.flow.component.icon.VaadinIcon icon
-
name
String name
-
parent
DbTreeNode parent
-
properties
TypedProperties properties
-
type
String type
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DefaultButtonBar
class DefaultButtonBar extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
additionalMenuItems
IDbMenuItem[] additionalMenuItems
-
commitButton
com.vaadin.flow.component.contextmenu.MenuItem commitButton
-
databaseExplorerButton
com.vaadin.flow.component.contextmenu.MenuItem databaseExplorerButton
-
db
IDb db
-
executeAtCursorButton
com.vaadin.flow.component.contextmenu.MenuItem executeAtCursorButton
-
executeScriptButton
com.vaadin.flow.component.contextmenu.MenuItem executeScriptButton
-
exportButton
com.vaadin.flow.component.contextmenu.MenuItem exportButton
-
fillButton
com.vaadin.flow.component.contextmenu.MenuItem fillButton
-
historyButton
com.vaadin.flow.component.contextmenu.MenuItem historyButton
-
importButton
com.vaadin.flow.component.contextmenu.MenuItem importButton
-
queryPanel
QueryPanel queryPanel
-
rollbackButton
com.vaadin.flow.component.contextmenu.MenuItem rollbackButton
-
settingsButton
com.vaadin.flow.component.contextmenu.MenuItem settingsButton
-
settingsProvider
ISettingsProvider settingsProvider
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.DefaultSettingsProvider
class DefaultSettingsProvider extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.sqlexplorer.QueryPanel
class QueryPanel extends CustomSplitLayout implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
buttonBar
IButtonBar buttonBar
-
canceled
boolean canceled
-
commitButtonValue
boolean commitButtonValue
-
connection
Connection connection
-
db
IDb db
-
editor
de.f0rce.ace.AceEditor editor
-
emptyResults
com.vaadin.flow.component.orderedlayout.VerticalLayout emptyResults
-
errorTab
TabSheet.EnhancedTab errorTab
-
generalResultsTab
TabSheet.EnhancedTab generalResultsTab
-
maxNumberOfResultTabs
int maxNumberOfResultTabs
-
requestedExecutionAtCursor
boolean requestedExecutionAtCursor
-
requestedScriptExecution
boolean requestedScriptExecution
-
resultsTabs
TabSheet resultsTabs
-
resultStatuses
Map<com.vaadin.flow.component.Component,
String> resultStatuses -
rollbackButtonValue
boolean rollbackButtonValue
-
selectionChangeListener
com.vaadin.flow.component.ComponentEventListener<de.f0rce.ace.events.AceSelectionChanged> selectionChangeListener
-
selectionChangeRegistration
com.vaadin.flow.shared.Registration selectionChangeRegistration
-
settingsProvider
ISettingsProvider settingsProvider
-
shortcutRegistrations
List<com.vaadin.flow.component.ShortcutRegistration> shortcutRegistrations
-
sqlArea
de.f0rce.ace.AceEditor sqlArea
-
status
com.vaadin.flow.component.html.Span status
-
user
String user
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.Settings
class Settings extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
allowCompare
boolean allowCompare
-
allowDml
boolean allowDml
-
allowExport
boolean allowExport
-
allowFill
boolean allowFill
-
allowImport
boolean allowImport
-
allowQueries
boolean allowQueries
-
allowRepair
boolean allowRepair
-
properties
TypedProperties properties
-
sqlHistory
List<SqlHistory> sqlHistory
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.SettingsDialog
class SettingsDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
autoCommitBox
com.vaadin.flow.component.checkbox.Checkbox autoCommitBox
-
autoCompleteBox
com.vaadin.flow.component.checkbox.Checkbox autoCompleteBox
-
binder
com.vaadin.flow.data.binder.Binder<Integer> binder
-
delimiterField
com.vaadin.flow.component.textfield.TextField delimiterField
-
excludeTablesWithPrefixField
com.vaadin.flow.component.textfield.TextField excludeTablesWithPrefixField
-
explorer
SqlExplorer explorer
-
ignoreErrorsWhenRunningScript
com.vaadin.flow.component.checkbox.Checkbox ignoreErrorsWhenRunningScript
-
log
org.slf4j.Logger log
-
resultAsTextBox
com.vaadin.flow.component.checkbox.Checkbox resultAsTextBox
-
rowsToFetchField
com.vaadin.flow.component.textfield.TextField rowsToFetchField
-
settingsProvider
ISettingsProvider settingsProvider
-
showResultsInNewTabsBox
com.vaadin.flow.component.checkbox.Checkbox showResultsInNewTabsBox
-
showRowNumbersBox
com.vaadin.flow.component.checkbox.Checkbox showRowNumbersBox
-
showTriggersBox
com.vaadin.flow.component.checkbox.Checkbox showTriggersBox
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.SqlExplorer
class SqlExplorer extends CustomSplitLayout implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
additionalMenuItems
IDbMenuItem[] additionalMenuItems
-
contentMenuBar
com.vaadin.flow.component.menubar.MenuBar contentMenuBar
-
contentTabs
SqlExplorerTabPanel contentTabs
-
databaseProvider
IDbProvider databaseProvider
-
dbTree
DbTree dbTree
-
infoTabs
Set<IInfoPanel> infoTabs
-
listener
com.vaadin.flow.data.selection.SelectionListener<com.vaadin.flow.component.grid.Grid<DbTreeNode>,
DbTreeNode> listener -
listenerRegistration
com.vaadin.flow.shared.Registration listenerRegistration
-
log
org.slf4j.Logger log
-
savedSplitPosition
double savedSplitPosition
-
selected
IContentTab selected
-
settingsProvider
ISettingsProvider settingsProvider
-
showButton
com.vaadin.flow.component.contextmenu.MenuItem showButton
-
user
String user
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.SqlExplorerTabPanel
class SqlExplorerTabPanel extends TabSheet implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
sqlExplorer
SqlExplorer sqlExplorer
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.SqlHistory
class SqlHistory extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.sqlexplorer.SqlHistoryDialog
class SqlHistoryDialog extends ResizableDialog implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
grid
com.vaadin.flow.component.grid.Grid<SqlHistory> grid
-
queryPanel
QueryPanel queryPanel
-
settingsProvider
ISettingsProvider settingsProvider
-
sqlHistories
TreeSet<SqlHistory> sqlHistories
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.TableInfoPanel
class TableInfoPanel extends com.vaadin.flow.component.orderedlayout.VerticalLayout implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
explorer
SqlExplorer explorer
-
selectedCaption
String selectedCaption
-
tabSheet
TabSheet tabSheet
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.TableSelectionLayout
class TableSelectionLayout extends com.vaadin.flow.component.orderedlayout.VerticalLayout implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
catalogSelect
com.vaadin.flow.component.combobox.ComboBox<String> catalogSelect
-
databasePlatform
IDatabasePlatform databasePlatform
-
excludedTables
List<String> excludedTables
-
excludeTablesRegex
String excludeTablesRegex
-
filterCriteria
String filterCriteria
-
filterField
com.vaadin.flow.component.textfield.TextField filterField
-
listOfTablesGrid
com.vaadin.flow.component.grid.Grid<String> listOfTablesGrid
-
originalSelectedTablesSet
Set<Table> originalSelectedTablesSet
-
schemaSelect
com.vaadin.flow.component.combobox.ComboBox<String> schemaSelect
-
selectedTablesSet
Set<Table> selectedTablesSet
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.TabularResultLayout
class TabularResultLayout extends com.vaadin.flow.component.orderedlayout.VerticalLayout implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
ACTION_DELETE
String ACTION_DELETE
-
ACTION_INSERT
String ACTION_INSERT
-
ACTION_SELECT
String ACTION_SELECT
-
ACTION_UPDATE
String ACTION_UPDATE
-
catalogName
String catalogName
-
columnNameMap
Map<Integer,
String> columnNameMap -
columnVisibilityToggler
ColumnVisibilityToggler columnVisibilityToggler
-
db
IDb db
-
explorer
SqlExplorer explorer
-
followToMenu
com.vaadin.flow.component.contextmenu.MenuItem followToMenu
-
generateNewExport
boolean generateNewExport
-
grid
com.vaadin.flow.component.grid.Grid<List<Object>> grid
-
isInQueryGeneralResults
boolean isInQueryGeneralResults
-
listener
org.jumpmind.vaadin.ui.sqlexplorer.SqlRunner.ISqlRunnerListener listener
-
log
org.slf4j.Logger log
-
meta
ResultSetMetaData meta
-
queryPanel
QueryPanel queryPanel
-
resultLabel
Label resultLabel
-
resultTable
Table resultTable
-
rs
ResultSet rs
-
schemaName
String schemaName
-
settings
Settings settings
-
showSql
boolean showSql
-
sql
String sql
-
tableName
String tableName
-
toggleKeepResultsButton
com.vaadin.flow.component.contextmenu.MenuItem toggleKeepResultsButton
-
user
String user
-
valueProviderMap
Map<com.vaadin.flow.component.grid.Grid.Column<List<Object>>,
com.vaadin.flow.function.ValueProvider<List<Object>, Object>> valueProviderMap
-
-
Class org.jumpmind.vaadin.ui.sqlexplorer.TriggerInfoPanel
class TriggerInfoPanel extends com.vaadin.flow.component.orderedlayout.VerticalLayout implements Serializable- serialVersionUID:
- 1L
-
Class org.jumpmind.vaadin.ui.sqlexplorer.TriggerTableLayout
class TriggerTableLayout extends com.vaadin.flow.component.orderedlayout.VerticalLayout implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
grid
com.vaadin.flow.component.grid.Grid<String> grid
-
refresher
TriggerInfoPanel.Refresher refresher
-
trigger
Trigger trigger
-
-