C# 클래스 Glyma.NodeServiceApp.NodeServiceApplication

상속: SPIisWebServiceApplication, IGlymaNodeServiceApp
파일 보기 프로젝트 열기: chris-tomich/Glyma 1 사용 예제들

Private Properties

프로퍼티 타입 설명
NodeServiceApplication Microsoft.SharePoint.Administration

공개 메소드들

메소드 설명
AddBulkMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
AddBulkNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, NodeType nodeType, string originalId ) : MapParameter
AddBulkRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter>.Dictionary nodes, RelationshipType relationshipType, string originalId ) : MapParameter
AddMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
AddNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, NodeType nodeType, string originalId ) : MapParameter
AddRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, MapParameter>.Dictionary nodes, RelationshipType relationshipType, string originalId ) : MapParameter
BeginTransaction ( GlymaSessionConfiguration configuration ) : System.Guid
CompleteTransaction ( GlymaSessionConfiguration configuration, System.Guid sessionId ) : MapResponse
Create ( string name, NodeService service, SPIisWebServiceApplicationPool appPool ) : NodeServiceApplication
CreateDomain ( GlymaSessionConfiguration configuration, string name ) : MapResponse
CreateRootMap ( GlymaSessionConfiguration configuration, System.Guid domainId, string name, NodeType nodeType, string originalId ) : QueryResponse
DeleteBulkMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata ) : MapParameter
DeleteBulkNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId ) : MapParameter
DeleteBulkRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId ) : MapParameter
DeleteDomain ( GlymaSessionConfiguration configuration, System.Guid domainId ) : int
DeleteMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter metadata ) : MapParameter
DeleteNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter nodeId ) : MapParameter
DeleteRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter relationshipId ) : MapParameter
DeleteRootMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid rootMapId ) : int
GetAllMapTypes ( GlymaSessionConfiguration configuration ) : TypeResponse
GetApplicationVersion ( ) : GlymaVersion
IsSessionCompleted ( GlymaSessionConfiguration configuration, System.Guid sessionId ) : bool
NodeServiceApplication ( ) : Microsoft.SharePoint.Administration
QueryDomains ( GlymaSessionConfiguration configuration ) : QueryResponse>.Dictionary
QueryMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid nodeId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions ) : QueryResponse
QueryMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid nodeId, int maxDepth, bool isFullDomainSearch, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex ) : QueryResponse
QueryMapByDomain ( GlymaSessionConfiguration configuration, System.Guid domainId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions ) : QueryResponse
QueryMapPaged ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid nodeId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex ) : QueryResponse
SearchMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid rootMapUid, SearchConditions conditions, int pageNumber, int pageSize ) : SearchMapResult

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

UpdateBulkMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata, string name, string value ) : MapParameter
UpdateBulkNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId, NodeType nodeType ) : MapParameter
UpdateBulkRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId, MapParameter>.Dictionary nodes, RelationshipType relationshipType ) : MapParameter
UpdateMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter metadata, string name, string value ) : MapParameter
UpdateNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter nodeId, NodeType nodeType ) : MapParameter
UpdateRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter relationshipId, MapParameter>.Dictionary nodes, RelationshipType relationshipType ) : MapParameter

비공개 메소드들

메소드 설명
NodeServiceApplication ( string name, NodeService service, SPIisWebServiceApplicationPool appPool ) : Microsoft.SharePoint.Administration

메소드 상세

AddBulkMetadata() 공개 메소드

public AddBulkMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
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
리턴 MapParameter

AddBulkNode() 공개 메소드

public AddBulkNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, NodeType nodeType, string originalId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
rootMapId MapParameter
nodeType TransactionalNodeService.Common.Model.NodeType
originalId string
리턴 MapParameter

AddBulkRelationship() 공개 메소드

public AddBulkRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter rootMapId, MapParameter>.Dictionary nodes, RelationshipType relationshipType, string originalId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
rootMapId MapParameter
nodes MapParameter>.Dictionary
relationshipType TransactionalNodeService.Common.Model.RelationshipType
originalId string
리턴 MapParameter

AddMetadata() 공개 메소드

public AddMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, MapParameter node, MapParameter relationship, DescriptorType descriptorType, MetadataType metadataType, string name, string value ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
rootMapId MapParameter
node MapParameter
relationship MapParameter
descriptorType TransactionalNodeService.Common.Model.DescriptorType
metadataType TransactionalNodeService.Common.Model.MetadataType
name string
value string
리턴 MapParameter

AddNode() 공개 메소드

public AddNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, NodeType nodeType, string originalId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
rootMapId MapParameter
nodeType TransactionalNodeService.Common.Model.NodeType
originalId string
리턴 MapParameter

AddRelationship() 공개 메소드

public AddRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter rootMapId, MapParameter>.Dictionary nodes, RelationshipType relationshipType, string originalId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
rootMapId MapParameter
nodes MapParameter>.Dictionary
relationshipType TransactionalNodeService.Common.Model.RelationshipType
originalId string
리턴 MapParameter

BeginTransaction() 공개 메소드

public BeginTransaction ( GlymaSessionConfiguration configuration ) : System.Guid
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
리턴 System.Guid

CompleteTransaction() 공개 메소드

public CompleteTransaction ( GlymaSessionConfiguration configuration, System.Guid sessionId ) : MapResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
리턴 MapResponse

Create() 공개 정적인 메소드

public static Create ( string name, NodeService service, SPIisWebServiceApplicationPool appPool ) : NodeServiceApplication
name string
service NodeService
appPool SPIisWebServiceApplicationPool
리턴 NodeServiceApplication

CreateDomain() 공개 메소드

public CreateDomain ( GlymaSessionConfiguration configuration, string name ) : MapResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
name string
리턴 MapResponse

CreateRootMap() 공개 메소드

public CreateRootMap ( GlymaSessionConfiguration configuration, System.Guid domainId, string name, NodeType nodeType, string originalId ) : QueryResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
name string
nodeType TransactionalNodeService.Common.Model.NodeType
originalId string
리턴 QueryResponse

DeleteBulkMetadata() 공개 메소드

public DeleteBulkMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
metadata MapParameter
리턴 MapParameter

DeleteBulkNode() 공개 메소드

public DeleteBulkNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
nodeId MapParameter
리턴 MapParameter

DeleteBulkRelationship() 공개 메소드

public DeleteBulkRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
relationshipId MapParameter
리턴 MapParameter

DeleteDomain() 공개 메소드

public DeleteDomain ( GlymaSessionConfiguration configuration, System.Guid domainId ) : int
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
리턴 int

DeleteMetadata() 공개 메소드

public DeleteMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter metadata ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
metadata MapParameter
리턴 MapParameter

DeleteNode() 공개 메소드

public DeleteNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter nodeId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
nodeId MapParameter
리턴 MapParameter

DeleteRelationship() 공개 메소드

public DeleteRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter relationshipId ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
relationshipId MapParameter
리턴 MapParameter

DeleteRootMap() 공개 메소드

public DeleteRootMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid rootMapId ) : int
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
rootMapId System.Guid
리턴 int

GetAllMapTypes() 공개 메소드

public GetAllMapTypes ( GlymaSessionConfiguration configuration ) : TypeResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
리턴 TransactionalNodeService.Common.TypeResponse

GetApplicationVersion() 공개 메소드

public GetApplicationVersion ( ) : GlymaVersion
리턴 TransactionalNodeService.Common.Model.GlymaVersion

IsSessionCompleted() 공개 메소드

public IsSessionCompleted ( GlymaSessionConfiguration configuration, System.Guid sessionId ) : bool
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
리턴 bool

NodeServiceApplication() 공개 메소드

public NodeServiceApplication ( ) : Microsoft.SharePoint.Administration
리턴 Microsoft.SharePoint.Administration

QueryDomains() 공개 메소드

public QueryDomains ( GlymaSessionConfiguration configuration ) : QueryResponse>.Dictionary
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
리턴 QueryResponse>.Dictionary

QueryMap() 공개 메소드

public QueryMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid nodeId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions ) : QueryResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
nodeId System.Guid
maxDepth int
edgeConditions TransactionalNodeService.Common.EdgeConditions
filterConditions FilterConditions
리턴 QueryResponse

QueryMap() 공개 메소드

public QueryMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid nodeId, int maxDepth, bool isFullDomainSearch, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex ) : QueryResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
nodeId System.Guid
maxDepth int
isFullDomainSearch bool
edgeConditions TransactionalNodeService.Common.EdgeConditions
filterConditions FilterConditions
objectIndex int
리턴 QueryResponse

QueryMapByDomain() 공개 메소드

public QueryMapByDomain ( GlymaSessionConfiguration configuration, System.Guid domainId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions ) : QueryResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
maxDepth int
edgeConditions TransactionalNodeService.Common.EdgeConditions
filterConditions FilterConditions
리턴 QueryResponse

QueryMapPaged() 공개 메소드

public QueryMapPaged ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid nodeId, int maxDepth, EdgeConditions edgeConditions, FilterConditions filterConditions, int objectIndex ) : QueryResponse
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
nodeId System.Guid
maxDepth int
edgeConditions TransactionalNodeService.Common.EdgeConditions
filterConditions FilterConditions
objectIndex int
리턴 QueryResponse

SearchMap() 공개 메소드

TODO: This method needs to be moved from here as it makes calls to schema specific methods.
public SearchMap ( GlymaSessionConfiguration configuration, System.Guid domainId, System.Guid rootMapUid, SearchConditions conditions, int pageNumber, int pageSize ) : SearchMapResult
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
domainId System.Guid
rootMapUid System.Guid
conditions SearchConditions
pageNumber int
pageSize int
리턴 SearchMapResult

UpdateBulkMetadata() 공개 메소드

public UpdateBulkMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter metadata, string name, string value ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
metadata MapParameter
name string
value string
리턴 MapParameter

UpdateBulkNode() 공개 메소드

public UpdateBulkNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter nodeId, NodeType nodeType ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
nodeId MapParameter
nodeType TransactionalNodeService.Common.Model.NodeType
리턴 MapParameter

UpdateBulkRelationship() 공개 메소드

public UpdateBulkRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, System.Guid responseParameter, MapParameter domainId, MapParameter relationshipId, MapParameter>.Dictionary nodes, RelationshipType relationshipType ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
responseParameter System.Guid
domainId MapParameter
relationshipId MapParameter
nodes MapParameter>.Dictionary
relationshipType TransactionalNodeService.Common.Model.RelationshipType
리턴 MapParameter

UpdateMetadata() 공개 메소드

public UpdateMetadata ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter metadata, string name, string value ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
metadata MapParameter
name string
value string
리턴 MapParameter

UpdateNode() 공개 메소드

public UpdateNode ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter nodeId, NodeType nodeType ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
nodeId MapParameter
nodeType TransactionalNodeService.Common.Model.NodeType
리턴 MapParameter

UpdateRelationship() 공개 메소드

public UpdateRelationship ( GlymaSessionConfiguration configuration, System.Guid sessionId, MapParameter domainId, MapParameter relationshipId, MapParameter>.Dictionary nodes, RelationshipType relationshipType ) : MapParameter
configuration TransactionalNodeService.Common.GlymaSessionConfiguration
sessionId System.Guid
domainId MapParameter
relationshipId MapParameter
nodes MapParameter>.Dictionary
relationshipType TransactionalNodeService.Common.Model.RelationshipType
리턴 MapParameter