Example #1
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;
 }
Example #2
0
 public getContentStreamResponse(cmisContentStreamType contentStream)
 {
     this.contentStream = contentStream;
 }
Example #3
0
 public setContentStreamRequest(string repositoryId, string objectId, System.Nullable<bool> overwriteFlag, string changeToken, cmisContentStreamType contentStream, cmisExtensionType extension)
 {
     this.repositoryId = repositoryId;
     this.objectId = objectId;
     this.overwriteFlag = overwriteFlag;
     this.changeToken = changeToken;
     this.contentStream = contentStream;
     this.extension = extension;
 }
Example #4
0
 public createDocumentRequest(string repositoryId, cmisPropertiesType properties, string folderId, cmisContentStreamType contentStream, System.Nullable<enumVersioningState> versioningState, string[] policies, cmisAccessControlListType addACEs, cmisAccessControlListType removeACEs, cmisExtensionType extension)
 {
     this.repositoryId = repositoryId;
     this.properties = properties;
     this.folderId = folderId;
     this.contentStream = contentStream;
     this.versioningState = versioningState;
     this.policies = policies;
     this.addACEs = addACEs;
     this.removeACEs = removeACEs;
     this.extension = extension;
 }