Serialized Form
-
Package org.tentackle.persist
-
Class org.tentackle.persist.AbstractPersistentObject
class AbstractPersistentObject extends AbstractDbObject<P extends AbstractPersistentObject<T,P>> implements Serializable - serialVersionUID:
- 1L
-
Serialized Fields
-
columnPrefix
String columnPrefix
-
editedBy
long editedBy
-
editedExpiry
org.tentackle.common.Timestamp editedExpiry
-
editedSince
org.tentackle.common.Timestamp editedSince
-
embeddingParent
AbstractPersistentObject<?,
?> embeddingParent -
normText
String normText
all persistent objects have a "NormText", i.e., a phonetically normalized text which can be searched made protected here, so all subclasses can directly access it. -
pdo
T extends PersistentDomainObject<T> pdo
-
persistable
boolean persistable
-
renewTokenLock
boolean renewTokenLock
-
rootClassId
int rootClassId
Optional class id of the root entity.
Improves performance in selects in composite entities if the components belong to different kinds of root entities. -
rootId
long rootId
Optional id of the root entity.
Improves the performance of SQL-selects in composite entities.
-
-
Class org.tentackle.persist.AbstractPersistentOperation
class AbstractPersistentOperation extends AbstractDbOperation<P extends AbstractPersistentOperation<T,P>> implements Serializable - serialVersionUID:
- 1L
-
Serialized Fields
-
context
DomainContext context
-
operation
T extends Operation<T> operation
-
-
Class org.tentackle.persist.ResultSetCursor.FetchList
- serialVersionUID:
- 1L
-
Serialized Fields
-
closed
boolean closed
-
-
-
Package org.tentackle.persist.lock
-
Class org.tentackle.persist.lock.DbTokenLock
- serialVersionUID:
- 1L
-
Serialized Fields
-
lockedBy
long lockedBy
userId of the token lock holder. -
lockedSince
org.tentackle.common.Timestamp lockedSince
time since token lock given to the user. -
lockExpiry
org.tentackle.common.Timestamp lockExpiry
time when the token lock expires. -
pdoClassId
int pdoClassId
class ID of the PDO.
-
-
-
Package org.tentackle.persist.ns
-
Class org.tentackle.persist.ns.NumberPoolPersistenceImpl
class NumberPoolPersistenceImpl extends AbstractPersistentObject<NumberPool, NumberPoolPersistenceImpl> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
description
String description
short description. -
descriptionPersisted
String descriptionPersisted
the last persisted value of 'description'. -
lowWaterMark
long lowWaterMark
minimum number count before request to fill up from uplink, 0 to disable. -
lowWaterMarkPersisted
long lowWaterMarkPersisted
the last persisted value of 'lowWaterMark'. -
name
String name
the number pool name. -
namePersisted
String namePersisted
the last persisted value of 'name'. -
numberRangeList
org.tentackle.misc.TrackedList<NumberRange> numberRangeList
-
numberRangeListLoaded
boolean numberRangeListLoaded
-
online
boolean online
true if online, else offline. -
onlinePersisted
boolean onlinePersisted
the last persisted value of 'online'. -
realm
String realm
pool realm, optional. -
realmPersisted
String realmPersisted
the last persisted value of 'realm'. -
requestSize
long requestSize
number count to request from uplink, 0 to disable. -
requestSizePersisted
long requestSizePersisted
the last persisted value of 'requestSize'. -
uplink
String uplink
uplink configuration (optional). -
uplinkPersisted
String uplinkPersisted
the last persisted value of 'uplink'.
-
-
Class org.tentackle.persist.ns.NumberRangePersistenceImpl
class NumberRangePersistenceImpl extends AbstractPersistentObject<NumberRange, NumberRangePersistenceImpl> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
begin
long begin
begin of range. -
beginPersisted
long beginPersisted
the last persisted value of 'begin'. -
end
long end
end of range. -
endPersisted
long endPersisted
the last persisted value of 'end'. -
numberPool
NumberPool numberPool
-
numberPoolId
long numberPoolId
ID of the number pool. -
numberPoolIdPersisted
long numberPoolIdPersisted
the last persisted value of 'numberPoolId'. -
numberPoolLoaded
boolean numberPoolLoaded
-
-
-
Package org.tentackle.persist.security
-
Class org.tentackle.persist.security.SecurityPersistenceImpl
class SecurityPersistenceImpl extends AbstractPersistentObject<Security, SecurityPersistenceImpl> implements Serializable- serialVersionUID:
- 1L
-
Serialized Fields
-
allowed
boolean allowed
the false if denied, true if allowed. -
domainContextClassId
int domainContextClassId
the class id of the DomainContext's context entity, 0 if all contexts. -
domainContextId
long domainContextId
the id of DomainContext's context object, 0 if all instances. -
granteeClassId
int granteeClassId
the class id of the entity the permissions are granted to, 0 if all classes. -
granteeId
long granteeId
the id of the entity the permissions are granted to, 0 if all grantees. -
message
String message
the user message. -
objectClassId
int objectClassId
the protected object's class id, 0 if not an entity. -
objectClassName
String objectClassName
the protected classname, null if an entity. -
objectId
long objectId
the id of the protected object, 0 if all instances or not an entity. -
permissions
String permissions
the permissions as a comma-separated list. -
priority
int priority
the priority or evaluation order, 0 is highest or first.
-
-