Serialized Form
-
Package org.tentackle.persist
-
Class org.tentackle.persist.AbstractPersistentObject extends AbstractDbObject<P extends AbstractPersistentObject<T,P>> implements Serializable
- serialVersionUID:
- 1921941642168910515L
-
Serialized Fields
-
editedBy
long editedBy
-
editedExpiry
org.tentackle.common.Timestamp editedExpiry
-
editedSince
org.tentackle.common.Timestamp editedSince
-
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 performance in selects in composite entities.
-
-
Class org.tentackle.persist.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 extends ArrayList<T> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
closed
boolean closed
true if closed.
-
-
-
Package org.tentackle.persist.lock
-
Class org.tentackle.persist.lock.DbTokenLock extends AbstractDbObject<DbTokenLock> implements Serializable
- serialVersionUID:
- -1723181864077614924L
-
Serialized Fields
-
lockedBy
long lockedBy
userId of token lock holder. -
lockedSince
org.tentackle.common.Timestamp lockedSince
time since token lock given to user. -
lockExpiry
org.tentackle.common.Timestamp lockExpiry
time when token lock expires. -
pdoClassId
int pdoClassId
class ID of the PDO.
-
-
-
Package org.tentackle.persist.ns
-
Class org.tentackle.persist.ns.NumberPoolPersistenceImpl extends AbstractPersistentObject<NumberPool,NumberPoolPersistenceImpl> implements Serializable
- serialVersionUID:
- -1178387730540795339L
-
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 if 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 if 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 extends AbstractPersistentObject<NumberRange,NumberRangePersistenceImpl> implements Serializable
- serialVersionUID:
- -1178387730540795339L
-
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 extends AbstractPersistentObject<Security,SecurityPersistenceImpl> implements Serializable
- serialVersionUID:
- -1178387730540795339L
-
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, null 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.
-
-