Serialized Form
-
Package org.synchronoss.cpo.cassandra
-
Class org.synchronoss.cpo.cassandra.CassandraCpoAdapter
- serialVersionUID:
- 1L
-
Serialized Fields
-
metaDescriptor
CassandraCpoMetaDescriptor metaDescriptor
CpoMetaDescriptor allows you to get the metadata for a class. -
sessionStrategy
org.synchronoss.cpo.cassandra.CassandraSessionStrategy sessionStrategy
How this adapter obtains its sessions; see CassandraSessionStrategy.
-
-
-
Package org.synchronoss.cpo.cassandra.meta
-
Class org.synchronoss.cpo.cassandra.meta.CassandraCpoAttribute
class CassandraCpoAttribute extends CpoAttribute implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
keyType_
String keyType_
The native Cassandra type name of a map attribute's key, e.g.text. -
keyTypeClass
Class<?> keyTypeClass
The Java class corresponding toCassandraCpoAttribute.keyType_. -
valueType_
String valueType_
The native Cassandra type name of a map/collection attribute's value. -
valueTypeClass
Class<?> valueTypeClass
The Java class corresponding toCassandraCpoAttribute.valueType_.
-
-
Class org.synchronoss.cpo.cassandra.meta.CassandraMethodMapEntry
- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.cassandra.meta.CassandraMethodMapper
class CassandraMethodMapper extends Object implements Serializable- serialVersionUID:
- 1L
-
-
Package org.synchronoss.cpo.core
-
Class org.synchronoss.cpo.core.BindableCpoWhere
class BindableCpoWhere extends Node implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
attribute
String attribute
The left-hand bean attribute name. -
attributeFunction
String attributeFunction
Native function applied to the left-hand attribute before comparison. -
comparison
Comparison comparison
The comparison operator applied between the attribute and value. -
logical
Logical logical
The logical operator joining this clause to the next one added viaBindableCpoWhere.addWhere(org.synchronoss.cpo.core.CpoWhere). -
name
String name
The name of this where clause node. -
not
boolean not
Whether the comparison result is negated. -
rightAttribute
String rightAttribute
The right-hand bean attribute name, when comparing two attributes. -
rightAttributeFunction
String rightAttributeFunction
Native function applied to the right-hand attribute before comparison. -
staticValue_
String staticValue_
A literal, unescaped value inserted directly into the native expression. -
value
Object value
The literal comparison value. -
valueFunction
String valueFunction
Native function applied to the comparison value before comparison.
-
-
Exception Class org.synchronoss.cpo.core.ChildNodeException
class ChildNodeException extends Exception implements Serializable- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.core.CpoBaseAdapter
class CpoBaseAdapter extends CpoAdapterCache implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
batchSize
int batchSize
The batchSize used when updating the datasource -
dataSourceName
String dataSourceName
The name of the datasource -
fetchSize
int fetchSize
The fetchSize used when getting data from the datasource -
readDataSource
D readDataSource
The datasource where read queries are executed against -
writeDataSource
D writeDataSource
The datasource where write queries are executed against
-
-
Exception Class org.synchronoss.cpo.core.CpoException
class CpoException extends Exception implements Serializable -
Record Class org.synchronoss.cpo.core.CpoQuery
class CpoQuery extends Record implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
groupName
String groupName
The field for thegroupNamerecord component. -
nativeExpressions
List<CpoNativeFunction> nativeExpressions
The field for thenativeExpressionsrecord component. -
orderBys
List<CpoOrderBy> orderBys
The field for theorderBysrecord component. -
wheres
List<CpoWhere> wheres
The field for thewheresrecord component.
-
-
Class org.synchronoss.cpo.core.Node
class Node extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
allowChildren
boolean allowChildren
Whether this node is allowed to have chidren. -
firstChild
Node firstChild
The first child in the linked list of children -
nextSibling
Node nextSibling
The next sibling for this node -
nodeSerial
long nodeSerial
Creation-order serial backing the default natural ordering; seeNode.compareTo(Node). Deserialized nodes keep the serial they were created with. -
parent
Node parent
The parent node for this Node -
prevSibling
Node prevSibling
The previous sibling for this node
-
-
-
Package org.synchronoss.cpo.core.exporter
-
Class org.synchronoss.cpo.core.exporter.XmlExporterServlet
class XmlExporterServlet extends javax.servlet.http.HttpServlet implements Serializable- serialVersionUID:
- 1L
-
-
Package org.synchronoss.cpo.core.meta
-
Record Class org.synchronoss.cpo.core.meta.DataTypeMapEntry
class DataTypeMapEntry extends Record implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
dataTypeInt
int dataTypeInt
The field for thedataTypeIntrecord component. -
dataTypeName
String dataTypeName
The field for thedataTypeNamerecord component. -
javaClass
Class<T> javaClass
The field for thejavaClassrecord component.
-
-
Class org.synchronoss.cpo.core.meta.MethodMapEntry
class MethodMapEntry extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
bsSetter
Method bsSetter
The setter method used to write the value to the datastore. -
datasourceMethodClass
Class<D> datasourceMethodClass
The datastore-specific class that declares the getter/setter methods. -
javaClass_
Class<J> javaClass_
The Java type moved by this entry's getter/setter pair. -
methodType
int methodType
The method type of this entry, e.g.MethodMapEntry.METHOD_TYPE_BASIC. -
rsGetter
Method rsGetter
The getter method used to read the value from the datastore.
-
-
Class org.synchronoss.cpo.core.meta.MethodMapper
class MethodMapper extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
dataMethodMap
Map<Class<?>,
T extends MethodMapEntry<?, ?>> dataMethodMap Registered entries, keyed by the Java class they move values for.
-
-
-
Package org.synchronoss.cpo.core.meta.bean
-
Class org.synchronoss.cpo.core.meta.bean.CpoAttributeBean
class CpoAttributeBean extends Object implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
dataName
String dataName
The name of the datastore-side column/field. -
dataType
String dataType
The native datastore type of the column/field. -
description
String description
The description of this attribute. -
javaName
String javaName
The name of the Java bean property. -
javaType
String javaType
The fully-qualified Java type of the bean property. -
transformClassName
String transformClassName
The fully-qualified class name of a customCpoTransform, if any.
-
-
Class org.synchronoss.cpo.core.meta.bean.CpoClassBean
class CpoClassBean extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.core.meta.bean.CpoFunctionBean
class CpoFunctionBean extends Object implements Serializable- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.core.meta.bean.CpoFunctionGroupBean
class CpoFunctionGroupBean extends CpoClassBean implements Serializable-
Serialized Fields
-
type
String type
The CRUD type of this function group (e.g.INSERT,RETRIEVE).
-
-
-
-
Package org.synchronoss.cpo.core.meta.domain
-
Class org.synchronoss.cpo.core.meta.domain.CpoArgument
class CpoArgument extends CpoClassBean implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
attribute
CpoAttribute attribute
The attribute bound to this argument.
-
-
Class org.synchronoss.cpo.core.meta.domain.CpoAttribute
class CpoAttribute extends CpoAttributeBean implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
cpoTransform
CpoTransform cpoTransform
The configured transform instance, if any. -
dataTypeInt
int dataTypeInt
The native datastore type code for this attribute. -
getter_
Method getter_
The reflectively-resolved bean getter method. -
getterName_
String getterName_
The resolved name of the bean getter method. -
setter_
Method setter_
The reflectively-resolved bean setter method. -
setterName_
String setterName_
The resolved name of the bean setter method. -
transformInMethod
Method transformInMethod
The resolvedCpoAttribute.TRANSFORM_IN_NAMEmethod onCpoAttribute.cpoTransform, if any. -
transformInParamType
Class<?> transformInParamType
The parameter type ofCpoAttribute.transformInMethod, cached to avoid repeated reflection. -
transformOutMethod
Method transformOutMethod
The resolvedCpoAttribute.TRANSFORM_OUT_NAMEmethod onCpoAttribute.cpoTransform, if any.
-
-
Class org.synchronoss.cpo.core.meta.domain.CpoClass
class CpoClass extends CpoClassBean implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
dataMap
Map<String,
CpoAttribute> dataMap dataMap contains a Map of CpoAttribute Objects the key is the dataName of the attribute -
functionGroups
Map<String,
CpoFunctionGroup> functionGroups functionGroups is a hashMap that contains a hashMap of CpoFunctionGroup Lists that are used by this bean to create and retrieve it into a datasource. -
javaMap
Map<String,
CpoAttribute> javaMap javaMap contains a Map of CpoAttribute Objects the key is the javaName of the attribute -
lock
ReentrantLock lock
Guards lazy initialization ofCpoClass.javaMap/CpoClass.dataMap. -
metaClass
Class<?> metaClass
The JavaBean class this metadata describes.
-
-
Class org.synchronoss.cpo.core.meta.domain.CpoClassCaseInsensitive
class CpoClassCaseInsensitive extends CpoClass implements Serializable- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.core.meta.domain.CpoClassCaseSensitive
class CpoClassCaseSensitive extends CpoClass implements Serializable- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.core.meta.domain.CpoFunction
class CpoFunction extends CpoFunctionBean implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
arguments
List<CpoArgument> arguments
The arguments bound to this function's bind markers, in bind-marker order.
-
-
Class org.synchronoss.cpo.core.meta.domain.CpoFunctionGroup
class CpoFunctionGroup extends CpoFunctionGroupBean implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
functions
List<CpoFunction> functions
The functions in this group.
-
-
-
Package org.synchronoss.cpo.jdbc
-
Class org.synchronoss.cpo.jdbc.JdbcCpoAdapter
- serialVersionUID:
- 1L
-
Serialized Fields
-
capabilities
org.synchronoss.cpo.jdbc.JdbcDatabaseCapabilities capabilities
The capabilities of the database behind this adapter, probed once at construction. -
metaDescriptor
JdbcCpoMetaDescriptor metaDescriptor
CpoMetaDescriptor allows you to get the metadata for a class.
-
-
Class org.synchronoss.cpo.jdbc.JdbcCpoArgument
class JdbcCpoArgument extends CpoArgument implements Serializable- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.jdbc.JdbcCpoAttribute
class JdbcCpoAttribute extends CpoAttribute implements Serializable- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.jdbc.JdbcCpoTrxAdapter
class JdbcCpoTrxAdapter extends JdbcCpoAdapter implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
pinnedStrategy
org.synchronoss.cpo.jdbc.JdbcPinnedConnectionStrategy pinnedStrategy
Pins one connection for the life of the transaction; all reads and writes share it.
-
-
Class org.synchronoss.cpo.jdbc.JdbcCpoWhere
class JdbcCpoWhere extends BindableCpoWhere implements Serializable- serialVersionUID:
- 1L
-
-
Package org.synchronoss.cpo.jdbc.jta
-
Class org.synchronoss.cpo.jdbc.jta.JdbcCpoXaAdapter
- serialVersionUID:
- 1L
-
-
Package org.synchronoss.cpo.jdbc.meta
-
Class org.synchronoss.cpo.jdbc.meta.JdbcMethodMapEntry
- serialVersionUID:
- 1L
-
Class org.synchronoss.cpo.jdbc.meta.JdbcMethodMapper
class JdbcMethodMapper extends Object implements Serializable- serialVersionUID:
- 1L
-