示例#1
0
 public applyACLRequest(string repositoryId, string objectId, cmisAccessControlListType addACEs, cmisAccessControlListType removeACEs, System.Nullable<enumACLPropagation> ACLPropagation, cmisExtensionType extension)
 {
     this.repositoryId = repositoryId;
     this.objectId = objectId;
     this.addACEs = addACEs;
     this.removeACEs = removeACEs;
     this.ACLPropagation = ACLPropagation;
     this.extension = extension;
 }
示例#2
0
 public createPolicyRequest(string repositoryId, cmisPropertiesType properties, string folderId, string[] policies, cmisAccessControlListType addACEs, cmisAccessControlListType removeACEs, cmisExtensionType extension)
 {
     this.repositoryId = repositoryId;
     this.properties = properties;
     this.folderId = folderId;
     this.policies = policies;
     this.addACEs = addACEs;
     this.removeACEs = removeACEs;
     this.extension = extension;
 }
示例#3
0
 public checkInRequest(string repositoryId, string objectId, System.Nullable<bool> major, cmisPropertiesType properties, cmisContentStreamType contentStream, string checkinComment, string[] policies, cmisAccessControlListType addACEs, cmisAccessControlListType removeACEs, cmisExtensionType extension)
 {
     this.repositoryId = repositoryId;
     this.objectId = objectId;
     this.major = major;
     this.properties = properties;
     this.contentStream = contentStream;
     this.checkinComment = checkinComment;
     this.policies = policies;
     this.addACEs = addACEs;
     this.removeACEs = removeACEs;
     this.extension = extension;
 }
示例#4
0
 public createDocumentFromSourceRequest(string repositoryId, string sourceId, cmisPropertiesType properties, string folderId, System.Nullable<enumVersioningState> versioningState, string[] policies, cmisAccessControlListType addACEs, cmisAccessControlListType removeACEs, cmisExtensionType extension)
 {
     this.repositoryId = repositoryId;
     this.sourceId = sourceId;
     this.properties = properties;
     this.folderId = folderId;
     this.versioningState = versioningState;
     this.policies = policies;
     this.addACEs = addACEs;
     this.removeACEs = removeACEs;
     this.extension = extension;
 }