Serialized Form

  • Package org.tentackle.persist

  • Package org.tentackle.persist.lock

    • Class org.tentackle.persist.lock.DbTokenLock

      class DbTokenLock extends AbstractDbObject<DbTokenLock> implements Serializable
      serialVersionUID:
      1L
      • 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

      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.