Package | Description |
---|---|
ordertracker |
Modifier and Type | Field and Description |
---|---|
static NumericExpressionField<Order> |
Order.Attribute.attempts |
static StringExpressionField<Order> |
Order.Attribute.comment |
static StringExpressionField<Order> |
Order.Attribute.depot_R1_id |
static StringExpressionField<Order> |
Order.Attribute.description |
static StringExpressionField<Order> |
Order.Attribute.destinationEmail |
static StringExpressionField<Order> |
Order.Attribute.fromAddress |
static StringExpressionField<Order> |
Order.Attribute.id |
static NumericExpressionField<Order> |
Order.Attribute.maxAttempts |
static StringExpressionField<Order> |
Order.Attribute.senderEmail |
static StringExpressionField<Order> |
Order.Attribute.status |
static StringExpressionField<Order> |
Order.Attribute.toAddress |
Modifier and Type | Method and Description |
---|---|
Order |
Order.cancelSignal(Event<Order> event) |
Order |
Order.cancelSignal(String eventSignatureKey) |
static Order |
Order.create(CreationEvent<Order> creationEvent)
Static creator method using CreationEvent.
|
static Order |
Order.create(javax.persistence.EntityManager em,
CreationEvent<Order> event)
Static creator method associated with the creation transition to 'Preparing' via event 'Create'.
|
static Order |
Order.create(String id)
Static creator method using id.
|
Order |
Order.delete()
Same as this.remove()
|
Order |
Order.event(Event<Order> event)
Synchronously runs the on entry procedure associated
with this event and also any signals to self that are
made during the procedure.
|
Order |
Order.load() |
Order |
Order.load(javax.persistence.EntityManager em)
Does a merge then a refresh and returns a new updated merged instance.
|
Order |
Order.merge(javax.persistence.EntityManager em)
Same as EntityManager.merge() except allows method chaining.
|
Order |
Order.persist()
Same as
persist(Context.em()) . |
Order |
Order.persist(javax.persistence.EntityManager em)
Same as EntityManager.persist() except allows method chaining.
|
Order |
Order.refresh(javax.persistence.EntityManager em)
Same as EntityManager.refresh() except inverted to facilitate method chaining.
|
Order |
Order.relateAcrossR1(Depot depot_R1)
MANY Order was last at ZERO_ONE Depot
|
Order |
Order.remove()
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
Order |
Order.remove(javax.persistence.EntityManager em)
Same as EntityManager.remove() except inverted to facilitate method chaining.
|
Order |
Order.setAttempts_(Integer attempts)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setComment_(String comment)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setDescription_(String description)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setDestinationEmail_(String destinationEmail)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setFromAddress_(String fromAddress)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setId_(String id) |
Order |
Order.setMaxAttempts_(Integer maxAttempts)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setSenderEmail_(String senderEmail)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setStatus_(String status)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.setToAddress_(String toAddress)
Sets the attribute to the given value and returns this
(enables method chaining).
|
Order |
Order.signal(Event<Order> event)
Asychronously queues the given signal against this entity for processing.
|
Order |
Order.signal(Event<Order> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
Order |
Order.signal(Event<Order> event,
long time)
Asychronously queues the given signal against this entity for processing
at the epoch time in ms specified.
|
Order |
Order.unrelateAcrossR1(Depot depot_R1)
MANY Order was last at ZERO_ONE Depot
|
Modifier and Type | Method and Description |
---|---|
static com.google.common.base.Optional<Order> |
Order.find(String id) |
Set<Order> |
Depot.getOrder_R1()
Getter.
|
static SelectBuilder<Order> |
Order.select() |
static SelectBuilder<Order> |
Order.select(BooleanExpression<Order> where) |
Modifier and Type | Method and Description |
---|---|
Order.Behaviour |
Order.BehaviourFactory.create(Order entity) |
Depot |
Depot.relateAcrossR1(Order order_R1)
ZERO_ONE Depot is last location of MANY Order
|
Depot |
Depot.unrelateAcrossR1(Order order_R1)
ZERO_ONE Depot is last location of MANY Order
|
Modifier and Type | Method and Description |
---|---|
Order |
Order.cancelSignal(Event<Order> event) |
static Order |
Order.create(CreationEvent<Order> creationEvent)
Static creator method using CreationEvent.
|
static Order |
Order.create(javax.persistence.EntityManager em,
CreationEvent<Order> event)
Static creator method associated with the creation transition to 'Preparing' via event 'Create'.
|
Order |
Order.event(Event<Order> event)
Synchronously runs the on entry procedure associated
with this event and also any signals to self that are
made during the procedure.
|
static SelectBuilder<Order> |
Order.select(BooleanExpression<Order> where) |
void |
Depot.setOrder_R1(Set<Order> order_R1)
Setter.
|
Order |
Order.signal(Event<Order> event)
Asychronously queues the given signal against this entity for processing.
|
Order |
Order.signal(Event<Order> event,
scala.concurrent.duration.Duration delay)
Asychronously queues the given signal against this entity for processing
after the delay specified.
|
Order |
Order.signal(Event<Order> event,
long time)
Asychronously queues the given signal against this entity for processing
at the epoch time in ms specified.
|
Constructor and Description |
---|
OrderBehaviour(Order self) |
Copyright © 2012–2022. All rights reserved.