Class EventMapper.ModelDetails
- java.lang.Object
-
- jadex.platform.service.processengine.EventMapper.ModelDetails
-
- Enclosing class:
- EventMapper
public static class EventMapper.ModelDetails extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Set<java.lang.String>
epstarttypes
The event process start events.protected java.lang.String
eventid
The start event id.protected SubscriptionIntermediateFuture<ProcessEngineEvent>
future
The registration future.protected java.lang.String
model
The model name.protected IResourceIdentifier
rid
The resource identifier.protected java.util.Set<java.lang.String>
waittypes
The intermediate wait events.
-
Constructor Summary
Constructors Constructor Description ModelDetails(IResourceIdentifier rid, java.lang.String model, java.lang.String eventid, java.util.Set<java.lang.String> waittypes, java.util.Set<java.lang.String> epstarttypes, SubscriptionIntermediateFuture<ProcessEngineEvent> future)
Create a new ModelDetails.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getEventId()
Get the eventid.java.util.Set<java.lang.String>
getEventProcessStartTypes()
Get the epstarttypes.java.util.Set<java.lang.String>
getEventWaitTypes()
Get the waittypes.SubscriptionIntermediateFuture<ProcessEngineEvent>
getFuture()
Get the future.java.lang.String
getModel()
Get the model.IResourceIdentifier
getRid()
Get the rid.void
setEventId(java.lang.String eventid)
Set the eventid.void
setEventProcessStartTypes(java.util.Set<java.lang.String> epstarttypes)
Set the epstarttypes.void
setEventWaitTypes(java.util.Set<java.lang.String> waittypes)
Set the waittypes.void
setFuture(SubscriptionIntermediateFuture<ProcessEngineEvent> future)
Set the future.void
setModel(java.lang.String model)
Set the model.void
setRid(IResourceIdentifier rid)
Set the rid.
-
-
-
Field Detail
-
rid
protected IResourceIdentifier rid
The resource identifier.
-
model
protected java.lang.String model
The model name.
-
eventid
protected java.lang.String eventid
The start event id.
-
future
protected SubscriptionIntermediateFuture<ProcessEngineEvent> future
The registration future.
-
waittypes
protected java.util.Set<java.lang.String> waittypes
The intermediate wait events.
-
epstarttypes
protected java.util.Set<java.lang.String> epstarttypes
The event process start events.
-
-
Constructor Detail
-
ModelDetails
public ModelDetails(IResourceIdentifier rid, java.lang.String model, java.lang.String eventid, java.util.Set<java.lang.String> waittypes, java.util.Set<java.lang.String> epstarttypes, SubscriptionIntermediateFuture<ProcessEngineEvent> future)
Create a new ModelDetails.
-
-
Method Detail
-
getRid
public IResourceIdentifier getRid()
Get the rid. return The rid.
-
setRid
public void setRid(IResourceIdentifier rid)
Set the rid.- Parameters:
rid
- The rid to set.
-
getModel
public java.lang.String getModel()
Get the model. return The model.
-
setModel
public void setModel(java.lang.String model)
Set the model.- Parameters:
model
- The model to set.
-
getEventId
public java.lang.String getEventId()
Get the eventid. return The eventid.
-
setEventId
public void setEventId(java.lang.String eventid)
Set the eventid.- Parameters:
eventid
- The eventid to set.
-
getFuture
public SubscriptionIntermediateFuture<ProcessEngineEvent> getFuture()
Get the future. return The future.
-
setFuture
public void setFuture(SubscriptionIntermediateFuture<ProcessEngineEvent> future)
Set the future.- Parameters:
future
- The future to set.
-
getEventWaitTypes
public java.util.Set<java.lang.String> getEventWaitTypes()
Get the waittypes.- Returns:
- The waittypes.
-
setEventWaitTypes
public void setEventWaitTypes(java.util.Set<java.lang.String> waittypes)
Set the waittypes.- Parameters:
waittypes
- The waittypes to set.
-
getEventProcessStartTypes
public java.util.Set<java.lang.String> getEventProcessStartTypes()
Get the epstarttypes.- Returns:
- The epstarttypes.
-
setEventProcessStartTypes
public void setEventProcessStartTypes(java.util.Set<java.lang.String> epstarttypes)
Set the epstarttypes.- Parameters:
epstarttypes
- The epstarttypes to set.
-
-