Uses of Class
de.aristaflow.adept2.model.orgmodel.Entity
-
-
Uses of Entity in de.aristaflow.adept2.core.orgmodelmanager
Methods in de.aristaflow.adept2.core.orgmodelmanager that return Entity Modifier and Type Method Description Entity
ModelExplorer. getAgentForUserName(SessionToken session, String agentUserName)
Returns the agent for the specified user name.Entity
ModelExplorer. getEntity(SessionToken session, EntityType entType, long id, String... attributes)
Returns anEntity
-object containing all information about the entity of the given type and with the given id.Methods in de.aristaflow.adept2.core.orgmodelmanager that return types with arguments of type Entity Modifier and Type Method Description List<Entity>
ModelExplorer. getEntities(SessionToken session, EntityType entType, boolean excludeDisabled, String... attributes)
This method returns a list containing all entities of the given entity type.List<Entity>
ModelExplorer. getEntities(SessionToken session, EntityType entType, Filter filter, boolean excludeDisabled, String... attributes)
This method returns a list of entities of the given entity type.List<Entity>
ModelExplorer. getEntities(SessionToken session, EntityType entType, String attrName, CmpOperator cmpOperator, Serializable value, boolean excludeDisabled, String... attributes)
This method returns a list of all entities where the given attribute matches the comparison.List<Entity>
ModelExplorer. getEntities(SessionToken session, String orgPolicy, boolean excludeDisabled, String... attributes)
This method returns a list containing the entities which are the result of the given org policy.RemoteIterator<List<Entity>>
ModelExplorer. getEntitiesIterator(SessionToken session, EntityType entType, boolean excludeDisabled, String... attributes)
The same asModelExplorer.getEntities(SessionToken, EntityType, boolean, String...)
but with partial retrieval of the entities.RemoteIterator<List<Entity>>
ModelExplorer. getEntitiesIterator(SessionToken session, EntityType entType, Filter filter, boolean excludeDisabled, String... attributes)
The same asModelExplorer.getEntities(SessionToken, EntityType, Filter, boolean, String...)
but with partial retrieval of the entities.RemoteIterator<List<Entity>>
ModelExplorer. getEntitiesIterator(SessionToken session, EntityType entType, String attrName, CmpOperator cmpOperator, Serializable value, boolean excludeDisabled, String... attributes)
The same asModelExplorer.getEntities(SessionToken, EntityType, String, CmpOperator, Serializable, boolean, String...)
but with partial retrieval of the entities.RemoteIterator<List<Entity>>
ModelExplorer. getEntitiesIterator(SessionToken session, String orgPolicy, boolean excludeDisabled, String... attributes)
The same asModelExplorer.getEntities(SessionToken, String, boolean, String...)
but with partial retrieval of the entities.List<Entity>
ModelExplorer. getRelatedEntities(SessionToken session, EntityType entType, long id, NavFunction navFunction, boolean excludeDisabled, String... attributes)
This method returns a list of all entities that are related to the given entity (of the given type) through a relation of the type along which the givenNavFunction
traverses the OrgModel.List<Entity>
ModelExplorer. getRelatedEntities(SessionToken session, EntityType entType, long id, RelationType relType, boolean leftToRight, boolean excludeDisabled, String... attributes)
This method returns a list of all entities that are related to the given entity (of the given type) through a relation of the given type in the given direction.RemoteIterator<List<Entity>>
ModelExplorer. getRelatedEntitiesIterator(SessionToken session, EntityType entType, long id, NavFunction navFunction, boolean excludeDisabled, String... attributes)
The same asModelExplorer.getRelatedEntities(SessionToken, EntityType, long, NavFunction, boolean, String...)
but with partial retrieval of the entities.RemoteIterator<List<Entity>>
ModelExplorer. getRelatedEntitiesIterator(SessionToken session, EntityType entType, long id, RelationType relType, boolean leftToRight, boolean excludeDisabled, String... attributes)
The same asModelExplorer.getRelatedEntities(SessionToken, EntityType, long, RelationType, boolean, boolean, String...)
but with partial retrieval of the entities.Methods in de.aristaflow.adept2.core.orgmodelmanager with parameters of type Entity Modifier and Type Method Description long
ModelChangeOperations. createEntity(SessionToken session, Entity entity)
Creates a new entity with the type and attribute values provided in the givenEntity
object and returns the assigned ID.void
ModelChangeOperations. updateEntity(SessionToken session, Entity entity)
Updates an entity with the attribute values provided in the givenEntity
object. -
Uses of Entity in de.aristaflow.adept2.core.orgmodelmanager.extension
Subclasses of Entity in de.aristaflow.adept2.core.orgmodelmanager.extension Modifier and Type Class Description class
OmeEntity
This class represents anEntity
for a specific OM extension.Fields in de.aristaflow.adept2.core.orgmodelmanager.extension declared as Entity Modifier and Type Field Description protected Entity
OmeEntity. wrapped
The wrapped entity as provided by the org model manager.Methods in de.aristaflow.adept2.core.orgmodelmanager.extension that return Entity Modifier and Type Method Description static Entity
OmeEntity. createNewEntity(String ome, AttributeMetaData amd, Entity entity)
Creates a new entity by propagating all allowed (for the designated OM extension) attributes to a new entity of the same type.Entity
OrgModelSyncAccess. getAgentForUserName(SessionToken session, String agentUserName)
Gets the agent entity with the designatedPredefinedAttributes.AGENT_USERNAME
.Methods in de.aristaflow.adept2.core.orgmodelmanager.extension that return types with arguments of type Entity Modifier and Type Method Description Collection<Entity>
OrgModelSyncAccess. getEntities(SessionToken session, EntityType entType, Filter filter, boolean excludeDisabled)
Gets the entities of the designated type relevant for this OM extension and matching the designated filterCollection<Entity>
OrgModelSyncAccess. getEntitiesFromPreviousRuns(SessionToken session, EntityType entType, boolean excludeDisabled)
Gets all entities of the designated type relevant for this OM extension (the corresponding#ENTITY_OM_EXTENSION_UID
attribute is set) that have a synchronisation run ID less than the current one.Collection<Entity>
OrgModelSyncAccess. getRelatedEntities(SessionToken session, RelationType relType, boolean leftToRight, long id, boolean excludeDisabled)
Gets the entities that are relevant for this OM extension and related to the entity of the designated ID when following the designated relation.Methods in de.aristaflow.adept2.core.orgmodelmanager.extension with parameters of type Entity Modifier and Type Method Description Pair<Long,Long>
OrgModelSyncAccess. createAgent(SessionToken session, Entity agent)
Adds the designated entity as new agent to the org model.long
OrgModelSyncAccess. createEntity(SessionToken session, Entity entity)
Adds the designated entity to the org model.static Entity
OmeEntity. createNewEntity(String ome, AttributeMetaData amd, Entity entity)
Creates a new entity by propagating all allowed (for the designated OM extension) attributes to a new entity of the same type.Pair<Long,Long>
OrgModelSyncAccess. deleteAgent(SessionToken session, Entity agent)
Deletes or disables the designated agent from/in the org model.void
OrgModelSyncAccess. deleteEntity(SessionToken session, Entity entity)
Deletes or disables the designated entity from/in the org model.Pair<Long,String>
OrgModelSyncAccess. getAgentForAutoGenOrgPos(SessionToken session, Entity orgPos)
Gets agent for which the designated org position has been implicitly created.boolean
OmeEntity. propagateChanges(AttributeMetaData amd, Entity target)
Propagates the changes of this wrapping entity to the designated target entity.Pair<Long,Long>
OrgModelSyncAccess. updateAgent(SessionToken session, Entity agent)
Updates the designated agent in the org model.void
OrgModelSyncAccess. updateEntity(SessionToken session, Entity entity)
Updates the designated entity in the org model.Constructors in de.aristaflow.adept2.core.orgmodelmanager.extension with parameters of type Entity Constructor Description OmeEntity(String ome, AttributeMetaData amd, Entity wrapped, String... addAttrs)
Creates a new wrapping entity for the designated OM extension wrapping the designated entity. -
Uses of Entity in de.aristaflow.adept2.model.orgmodel
Methods in de.aristaflow.adept2.model.orgmodel that return Entity Modifier and Type Method Description Entity
Entity. clone()
Methods in de.aristaflow.adept2.model.orgmodel with parameters of type Entity Modifier and Type Method Description static List<String>
PasswordUtils. getBlacklist(Entity... entities)
Gets a list of excluded words, that are values of specific attributes of the designated entities. -
Uses of Entity in de.aristaflow.ilm.model.orgmodel
Methods in de.aristaflow.ilm.model.orgmodel that return Entity Modifier and Type Method Description protected static Entity
Transformation. fillEntity(TransientEntity entity, AttributeMetaData amd, Entity ret)
static Entity
Transformation. fromIlm(Entity entity, AttributeMetaData amd)
static Entity
Transformation. fromIlm(TransientEntity entity, AttributeMetaData amd)
Methods in de.aristaflow.ilm.model.orgmodel with parameters of type Entity Modifier and Type Method Description protected static <I extends TransientEntity>
ITransformation. fillEntity(Entity entity, AttributeMetaData amd, I ret)
protected static Entity
Transformation. fillEntity(TransientEntity entity, AttributeMetaData amd, Entity ret)
static Entity
Transformation. toIlm(Entity entity, AttributeMetaData amd)
-
Uses of Entity in de.aristaflow.ilm.ws.model.orgmodel
Methods in de.aristaflow.ilm.ws.model.orgmodel that return types with arguments of type Entity Modifier and Type Method Description Function<Entity,Entity>
EntityRemoteIteratorWebService. getTransformator(AttributeMetaData amd)
-
Uses of Entity in de.aristaflow.ilm.ws.rest.model.orgmodel
Methods in de.aristaflow.ilm.ws.rest.model.orgmodel that return types with arguments of type Entity Modifier and Type Method Description protected Function<Entity,Entity>
EntityRestRemoteIteratorWebService. getTransformator(AttributeMetaData amd)
-