Class WriteDescriptionResult
- java.lang.Object
-
- org.somda.sdc.biceps.common.access.WriteDescriptionResult
-
public class WriteDescriptionResult extends Object
Read-only result set of a write description call.
-
-
Constructor Summary
Constructors Constructor Description WriteDescriptionResult(MdibVersion mdibVersion, List<MdibEntity> insertedEntities, List<MdibEntity> updatedEntities, List<MdibEntity> deletedEntities)Constructor to initialize all values of the result set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<MdibEntity>getDeletedEntities()Gets all deleted entities.List<MdibEntity>getInsertedEntities()Gets all inserted entities.MdibVersiongetMdibVersion()Gets the MDIB version that ensued during the preceding write operation.List<MdibEntity>getUpdatedEntities()Gets all updated entities.StringtoString()
-
-
-
Constructor Detail
-
WriteDescriptionResult
public WriteDescriptionResult(MdibVersion mdibVersion, List<MdibEntity> insertedEntities, List<MdibEntity> updatedEntities, List<MdibEntity> deletedEntities)
Constructor to initialize all values of the result set.- Parameters:
mdibVersion- the MDIB version.insertedEntities- all inserted entities.updatedEntities- all updated entities.deletedEntities- all deleted entities.
-
-
Method Detail
-
getMdibVersion
public MdibVersion getMdibVersion()
Gets the MDIB version that ensued during the preceding write operation.- Returns:
- the MDIB version.
-
getInsertedEntities
public List<MdibEntity> getInsertedEntities()
Gets all inserted entities.- Returns:
- the entities.
-
getUpdatedEntities
public List<MdibEntity> getUpdatedEntities()
Gets all updated entities.- Returns:
- the entities.
-
getDeletedEntities
public List<MdibEntity> getDeletedEntities()
Gets all deleted entities.- Returns:
- the entities.
-
-