C# Class TransactionalNodeService.Common.TransactionalMappingToolServiceCommonBase

Inheritance: ITransactionalMappingToolServiceCommonBase
Mostra file Open project: chris-tomich/Glyma

Public Properties

Property Type Description
HardObjectLimit int
SoftObjectLimit int

Public Methods

Method Description
AddBulkMetadata ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
AddBulkNode ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, NodeType nodeType, string originalId ) : MapParameter
AddBulkRelationship ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter>.Dictionary nodes, RelationshipType relationshipType, string originalId ) : MapParameter
BeginTransaction ( IGlymaSession glymaSession ) : System.Guid
CompleteTransaction ( IGlymaSession glymaSession, System.Guid sessionId ) : MapResponse
CreateDomain ( IGlymaSession glymaSession, string name ) : MapResponse
CreateRootMap ( IGlymaSession glymaSession, System.Guid domainId, string name, NodeType nodeType, string originalId ) : QueryResponse
DeleteBulkMetadata ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata ) : MapParameter
DeleteBulkNode ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId ) : MapParameter
DeleteBulkRelationship ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId ) : MapParameter
DeleteDomain ( IGlymaSession glymaSession, System.Guid domainId ) : int
DeleteRootMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid rootMapId ) : int
GetAllMapTypes ( IGlymaSession glymaSession ) : TypeResponse
IsSessionCompleted ( IGlymaSession glymaSession, System.Guid sessionId ) : bool
QueryDomains ( IGlymaSession glymaSession ) : QueryResponse>.Dictionary
QueryMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid nodeId, int maxDepth, bool isFullDomainSearch, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex ) : QueryResponse
QueryMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid nodeId, int maxDepth, bool isFullDomainSearch, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex, bool isCompressed ) : QueryResponse
QueryMapByDomain ( IGlymaSession glymaSession, System.Guid domainId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions ) : QueryResponse
SearchMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid rootMapUid, SearchConditions conditions, int pageNumber = 1, int pageSize = 5 ) : SearchMapResult

TODO: This method needs to be moved from here as it makes calls to schema specific methods.

UpdateBulkMetadata ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata, string name, string value ) : MapParameter
UpdateBulkNode ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId, NodeType nodeType ) : MapParameter
UpdateBulkRelationship ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId, MapParameter>.Dictionary nodes, RelationshipType relationshipType ) : MapParameter

Private Methods

Method Description
AddMetadata ( IGlymaSession glymaSession, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
AddNode ( IGlymaSession glymaSession, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, NodeType nodeType, string originalId ) : MapParameter

Method Details

AddBulkMetadata() public method

public AddBulkMetadata ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
rootMapId MapParameter
node MapParameter
relationship MapParameter
descriptorType TransactionalNodeService.Common.Model.DescriptorType
metadataType TransactionalNodeService.Common.Model.MetadataType
name string
value string
return MapParameter

AddBulkNode() public method

public AddBulkNode ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, NodeType nodeType, string originalId ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
rootMapId MapParameter
nodeType TransactionalNodeService.Common.Model.NodeType
originalId string
return MapParameter

AddBulkRelationship() public method

public AddBulkRelationship ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter>.Dictionary nodes, RelationshipType relationshipType, string originalId ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
rootMapId MapParameter
nodes MapParameter>.Dictionary
relationshipType TransactionalNodeService.Common.Model.RelationshipType
originalId string
return MapParameter

BeginTransaction() public method

public BeginTransaction ( IGlymaSession glymaSession ) : System.Guid
glymaSession IGlymaSession
return System.Guid

CompleteTransaction() public method

public CompleteTransaction ( IGlymaSession glymaSession, System.Guid sessionId ) : MapResponse
glymaSession IGlymaSession
sessionId System.Guid
return MapResponse

CreateDomain() public method

public CreateDomain ( IGlymaSession glymaSession, string name ) : MapResponse
glymaSession IGlymaSession
name string
return MapResponse

CreateRootMap() public method

public CreateRootMap ( IGlymaSession glymaSession, System.Guid domainId, string name, NodeType nodeType, string originalId ) : QueryResponse
glymaSession IGlymaSession
domainId System.Guid
name string
nodeType TransactionalNodeService.Common.Model.NodeType
originalId string
return QueryResponse

DeleteBulkMetadata() public method

public DeleteBulkMetadata ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
metadata MapParameter
return MapParameter

DeleteBulkNode() public method

public DeleteBulkNode ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
nodeId MapParameter
return MapParameter

DeleteBulkRelationship() public method

public DeleteBulkRelationship ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
relationshipId MapParameter
return MapParameter

DeleteDomain() public method

public DeleteDomain ( IGlymaSession glymaSession, System.Guid domainId ) : int
glymaSession IGlymaSession
domainId System.Guid
return int

DeleteRootMap() public method

public DeleteRootMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid rootMapId ) : int
glymaSession IGlymaSession
domainId System.Guid
rootMapId System.Guid
return int

GetAllMapTypes() public method

public GetAllMapTypes ( IGlymaSession glymaSession ) : TypeResponse
glymaSession IGlymaSession
return TypeResponse

IsSessionCompleted() public method

public IsSessionCompleted ( IGlymaSession glymaSession, System.Guid sessionId ) : bool
glymaSession IGlymaSession
sessionId System.Guid
return bool

QueryDomains() public method

public QueryDomains ( IGlymaSession glymaSession ) : QueryResponse>.Dictionary
glymaSession IGlymaSession
return QueryResponse>.Dictionary

QueryMap() public method

public QueryMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid nodeId, int maxDepth, bool isFullDomainSearch, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex ) : QueryResponse
glymaSession IGlymaSession
domainId System.Guid
nodeId System.Guid
maxDepth int
isFullDomainSearch bool
edgeConditions EdgeConditions
filterConditions FilterConditions
objectIndex int
return QueryResponse

QueryMap() public method

public QueryMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid nodeId, int maxDepth, bool isFullDomainSearch, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex, bool isCompressed ) : QueryResponse
glymaSession IGlymaSession
domainId System.Guid
nodeId System.Guid
maxDepth int
isFullDomainSearch bool
edgeConditions EdgeConditions
filterConditions FilterConditions
objectIndex int
isCompressed bool
return QueryResponse

QueryMapByDomain() public method

public QueryMapByDomain ( IGlymaSession glymaSession, System.Guid domainId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions ) : QueryResponse
glymaSession IGlymaSession
domainId System.Guid
maxDepth int
edgeConditions EdgeConditions
filterConditions FilterConditions
return QueryResponse

SearchMap() public method

TODO: This method needs to be moved from here as it makes calls to schema specific methods.
public SearchMap ( IGlymaSession glymaSession, System.Guid domainId, System.Guid rootMapUid, SearchConditions conditions, int pageNumber = 1, int pageSize = 5 ) : SearchMapResult
glymaSession IGlymaSession
domainId System.Guid
rootMapUid System.Guid
conditions SearchConditions
pageNumber int
pageSize int
return SearchMapResult

UpdateBulkMetadata() public method

public UpdateBulkMetadata ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata, string name, string value ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
metadata MapParameter
name string
value string
return MapParameter

UpdateBulkNode() public method

public UpdateBulkNode ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId, NodeType nodeType ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
nodeId MapParameter
nodeType TransactionalNodeService.Common.Model.NodeType
return MapParameter

UpdateBulkRelationship() public method

public UpdateBulkRelationship ( IGlymaSession glymaSession, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId, MapParameter>.Dictionary nodes, RelationshipType relationshipType ) : MapParameter
glymaSession IGlymaSession
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
relationshipId MapParameter
nodes MapParameter>.Dictionary
relationshipType TransactionalNodeService.Common.Model.RelationshipType
return MapParameter

Property Details

HardObjectLimit public_oe static_oe property

public static int HardObjectLimit
return int

SoftObjectLimit public_oe static_oe property

public static int SoftObjectLimit
return int