mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@12874 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2403 lines
102 KiB
C#
2403 lines
102 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version:2.0.50727.3053
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace WcfTestClient.NavigationService {
|
|
using System.Runtime.Serialization;
|
|
using System;
|
|
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="cmisFaultType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.notInFolderExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.operationNotSupportedExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.permissionDeniedExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.storageExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.offsetExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.constraintViolationExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.versioningExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.filterNotValidExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.typeNotFoundExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.updateConflictExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.folderNotValidExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.objectNotFoundExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.streamNotSupportedExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.runtimeExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.contentAlreadyExistsExceptionType))]
|
|
[System.Runtime.Serialization.KnownTypeAttribute(typeof(WcfTestClient.NavigationService.invalidArgumentExceptionType))]
|
|
public partial class cmisFaultType : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
|
|
|
|
[System.NonSerializedAttribute()]
|
|
private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
|
|
|
|
private long errorCodeField;
|
|
|
|
private string errorMessageField;
|
|
|
|
[global::System.ComponentModel.BrowsableAttribute(false)]
|
|
public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
|
|
get {
|
|
return this.extensionDataField;
|
|
}
|
|
set {
|
|
this.extensionDataField = value;
|
|
}
|
|
}
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(IsRequired=true)]
|
|
public long errorCode {
|
|
get {
|
|
return this.errorCodeField;
|
|
}
|
|
set {
|
|
if ((this.errorCodeField.Equals(value) != true)) {
|
|
this.errorCodeField = value;
|
|
this.RaisePropertyChanged("errorCode");
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Runtime.Serialization.DataMemberAttribute(IsRequired=true, EmitDefaultValue=false)]
|
|
public string errorMessage {
|
|
get {
|
|
return this.errorMessageField;
|
|
}
|
|
set {
|
|
if ((object.ReferenceEquals(this.errorMessageField, value) != true)) {
|
|
this.errorMessageField = value;
|
|
this.RaisePropertyChanged("errorMessage");
|
|
}
|
|
}
|
|
}
|
|
|
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName) {
|
|
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
|
if ((propertyChanged != null)) {
|
|
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="notInFolderExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class notInFolderExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="operationNotSupportedExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class operationNotSupportedExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="permissionDeniedExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class permissionDeniedExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="storageExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class storageExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="offsetExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class offsetExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="constraintViolationExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class constraintViolationExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="versioningExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class versioningExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="filterNotValidExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class filterNotValidExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="typeNotFoundExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class typeNotFoundExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="updateConflictExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class updateConflictExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="folderNotValidExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class folderNotValidExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="objectNotFoundExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class objectNotFoundExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="streamNotSupportedExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class streamNotSupportedExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="runtimeExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class runtimeExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="contentAlreadyExistsExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class contentAlreadyExistsExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
|
|
[System.Runtime.Serialization.DataContractAttribute(Name="invalidArgumentExceptionType", Namespace="http://www.cmis.org/2008/05")]
|
|
[System.SerializableAttribute()]
|
|
public partial class invalidArgumentExceptionType : WcfTestClient.NavigationService.cmisFaultType {
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.ServiceContractAttribute(Namespace="http://www.cmis.org/2008/05", ConfigurationName="NavigationService.NavigationServicePort")]
|
|
public interface NavigationServicePort {
|
|
|
|
// CODEGEN: Parameter 'object' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlElementAttribute'.
|
|
[System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.invalidArgumentExceptionType), Action="", Name="invalidArgumentException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.constraintViolationExceptionType), Action="", Name="constraintViolationException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.runtimeExceptionType), Action="", Name="runtimeException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.filterNotValidExceptionType), Action="", Name="filterNotValidException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.updateConflictExceptionType), Action="", Name="updateConflictException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.objectNotFoundExceptionType), Action="", Name="objectNotFoundException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.operationNotSupportedExceptionType), Action="", Name="operationNotSupportedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.permissionDeniedExceptionType), Action="", Name="permissionDeniedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.folderNotValidExceptionType), Action="", Name="folderNotValidException")]
|
|
[System.ServiceModel.XmlSerializerFormatAttribute()]
|
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(cmisProperty))]
|
|
[return: System.ServiceModel.MessageParameterAttribute(Name="object")]
|
|
WcfTestClient.NavigationService.getCheckedoutDocsResponse getCheckedoutDocs(WcfTestClient.NavigationService.getCheckedoutDocs request);
|
|
|
|
// CODEGEN: Parameter 'object' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlElementAttribute'.
|
|
[System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.invalidArgumentExceptionType), Action="", Name="invalidArgumentException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.constraintViolationExceptionType), Action="", Name="constraintViolationException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.runtimeExceptionType), Action="", Name="runtimeException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.filterNotValidExceptionType), Action="", Name="filterNotValidException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.updateConflictExceptionType), Action="", Name="updateConflictException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.objectNotFoundExceptionType), Action="", Name="objectNotFoundException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.operationNotSupportedExceptionType), Action="", Name="operationNotSupportedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.permissionDeniedExceptionType), Action="", Name="permissionDeniedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.folderNotValidExceptionType), Action="", Name="folderNotValidException")]
|
|
[System.ServiceModel.XmlSerializerFormatAttribute()]
|
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(cmisProperty))]
|
|
[return: System.ServiceModel.MessageParameterAttribute(Name="object")]
|
|
WcfTestClient.NavigationService.getChildrenResponse getChildren(WcfTestClient.NavigationService.getChildren request);
|
|
|
|
// CODEGEN: Parameter 'object' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlElementAttribute'.
|
|
[System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.invalidArgumentExceptionType), Action="", Name="invalidArgumentException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.constraintViolationExceptionType), Action="", Name="constraintViolationException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.runtimeExceptionType), Action="", Name="runtimeException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.filterNotValidExceptionType), Action="", Name="filterNotValidException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.updateConflictExceptionType), Action="", Name="updateConflictException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.objectNotFoundExceptionType), Action="", Name="objectNotFoundException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.operationNotSupportedExceptionType), Action="", Name="operationNotSupportedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.permissionDeniedExceptionType), Action="", Name="permissionDeniedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.folderNotValidExceptionType), Action="", Name="folderNotValidException")]
|
|
[System.ServiceModel.XmlSerializerFormatAttribute()]
|
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(cmisProperty))]
|
|
[return: System.ServiceModel.MessageParameterAttribute(Name="object")]
|
|
WcfTestClient.NavigationService.getObjectParentsResponse getObjectParents(WcfTestClient.NavigationService.getObjectParents request);
|
|
|
|
// CODEGEN: Parameter 'object' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlElementAttribute'.
|
|
[System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.invalidArgumentExceptionType), Action="", Name="invalidArgumentException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.constraintViolationExceptionType), Action="", Name="constraintViolationException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.runtimeExceptionType), Action="", Name="runtimeException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.filterNotValidExceptionType), Action="", Name="filterNotValidException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.updateConflictExceptionType), Action="", Name="updateConflictException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.objectNotFoundExceptionType), Action="", Name="objectNotFoundException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.operationNotSupportedExceptionType), Action="", Name="operationNotSupportedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.permissionDeniedExceptionType), Action="", Name="permissionDeniedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.folderNotValidExceptionType), Action="", Name="folderNotValidException")]
|
|
[System.ServiceModel.XmlSerializerFormatAttribute()]
|
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(cmisProperty))]
|
|
[return: System.ServiceModel.MessageParameterAttribute(Name="object")]
|
|
WcfTestClient.NavigationService.getFolderParentResponse getFolderParent(WcfTestClient.NavigationService.getFolderParent request);
|
|
|
|
// CODEGEN: Parameter 'object' requires additional schema information that cannot be captured using the parameter mode. The specific attribute is 'System.Xml.Serialization.XmlElementAttribute'.
|
|
[System.ServiceModel.OperationContractAttribute(Action="", ReplyAction="*")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.invalidArgumentExceptionType), Action="", Name="invalidArgumentException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.constraintViolationExceptionType), Action="", Name="constraintViolationException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.runtimeExceptionType), Action="", Name="runtimeException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.filterNotValidExceptionType), Action="", Name="filterNotValidException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.updateConflictExceptionType), Action="", Name="updateConflictException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.objectNotFoundExceptionType), Action="", Name="objectNotFoundException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.operationNotSupportedExceptionType), Action="", Name="operationNotSupportedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.permissionDeniedExceptionType), Action="", Name="permissionDeniedException")]
|
|
[System.ServiceModel.FaultContractAttribute(typeof(WcfTestClient.NavigationService.folderNotValidExceptionType), Action="", Name="folderNotValidException")]
|
|
[System.ServiceModel.XmlSerializerFormatAttribute()]
|
|
[System.ServiceModel.ServiceKnownTypeAttribute(typeof(cmisProperty))]
|
|
[return: System.ServiceModel.MessageParameterAttribute(Name="object")]
|
|
WcfTestClient.NavigationService.getDescendantsResponse getDescendants(WcfTestClient.NavigationService.getDescendants request);
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisObjectType : object, System.ComponentModel.INotifyPropertyChanged {
|
|
|
|
private cmisPropertiesType propertiesField;
|
|
|
|
private cmisAllowableActionsType allowableActionsField;
|
|
|
|
private cmisObjectType[] relationshipField;
|
|
|
|
private cmisObjectType[] childField;
|
|
|
|
private System.Xml.XmlElement[] anyField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=0)]
|
|
public cmisPropertiesType properties {
|
|
get {
|
|
return this.propertiesField;
|
|
}
|
|
set {
|
|
this.propertiesField = value;
|
|
this.RaisePropertyChanged("properties");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=1)]
|
|
public cmisAllowableActionsType allowableActions {
|
|
get {
|
|
return this.allowableActionsField;
|
|
}
|
|
set {
|
|
this.allowableActionsField = value;
|
|
this.RaisePropertyChanged("allowableActions");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute("relationship", IsNullable=true, Order=2)]
|
|
public cmisObjectType[] relationship {
|
|
get {
|
|
return this.relationshipField;
|
|
}
|
|
set {
|
|
this.relationshipField = value;
|
|
this.RaisePropertyChanged("relationship");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute("child", IsNullable=true, Order=3)]
|
|
public cmisObjectType[] child {
|
|
get {
|
|
return this.childField;
|
|
}
|
|
set {
|
|
this.childField = value;
|
|
this.RaisePropertyChanged("child");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyElementAttribute(Order=4)]
|
|
public System.Xml.XmlElement[] Any {
|
|
get {
|
|
return this.anyField;
|
|
}
|
|
set {
|
|
this.anyField = value;
|
|
this.RaisePropertyChanged("Any");
|
|
}
|
|
}
|
|
|
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName) {
|
|
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
|
if ((propertyChanged != null)) {
|
|
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertiesType : object, System.ComponentModel.INotifyPropertyChanged {
|
|
|
|
private cmisProperty[] itemsField;
|
|
|
|
private System.Xml.XmlElement[] anyField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyBoolean", typeof(cmisPropertyBoolean), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyDateTime", typeof(cmisPropertyDateTime), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyDecimal", typeof(cmisPropertyDecimal), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyHtml", typeof(cmisPropertyHtml), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyId", typeof(cmisPropertyId), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyInteger", typeof(cmisPropertyInteger), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyString", typeof(cmisPropertyString), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyUri", typeof(cmisPropertyUri), IsNullable=true, Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("propertyXml", typeof(cmisPropertyXml), IsNullable=true, Order=0)]
|
|
public cmisProperty[] Items {
|
|
get {
|
|
return this.itemsField;
|
|
}
|
|
set {
|
|
this.itemsField = value;
|
|
this.RaisePropertyChanged("Items");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyElementAttribute(Order=1)]
|
|
public System.Xml.XmlElement[] Any {
|
|
get {
|
|
return this.anyField;
|
|
}
|
|
set {
|
|
this.anyField = value;
|
|
this.RaisePropertyChanged("Any");
|
|
}
|
|
}
|
|
|
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName) {
|
|
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
|
if ((propertyChanged != null)) {
|
|
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyBoolean : cmisProperty {
|
|
|
|
private bool valueField;
|
|
|
|
private bool valueFieldSpecified;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=0)]
|
|
public bool value {
|
|
get {
|
|
return this.valueField;
|
|
}
|
|
set {
|
|
this.valueField = value;
|
|
this.RaisePropertyChanged("value");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool valueSpecified {
|
|
get {
|
|
return this.valueFieldSpecified;
|
|
}
|
|
set {
|
|
this.valueFieldSpecified = value;
|
|
this.RaisePropertyChanged("valueSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public enum enumPropertyType {
|
|
|
|
/// <remarks/>
|
|
boolean,
|
|
|
|
/// <remarks/>
|
|
id,
|
|
|
|
/// <remarks/>
|
|
integer,
|
|
|
|
/// <remarks/>
|
|
datetime,
|
|
|
|
/// <remarks/>
|
|
@decimal,
|
|
|
|
/// <remarks/>
|
|
html,
|
|
|
|
/// <remarks/>
|
|
@string,
|
|
|
|
/// <remarks/>
|
|
uri,
|
|
|
|
/// <remarks/>
|
|
xml,
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyBoolean))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyInteger))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyHtml))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyDateTime))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyString))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyXml))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyDecimal))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyId))]
|
|
[System.Xml.Serialization.XmlIncludeAttribute(typeof(cmisPropertyUri))]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisProperty : object, System.ComponentModel.INotifyPropertyChanged {
|
|
|
|
private string nameField;
|
|
|
|
private string indexField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public string name {
|
|
get {
|
|
return this.nameField;
|
|
}
|
|
set {
|
|
this.nameField = value;
|
|
this.RaisePropertyChanged("name");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, DataType="integer")]
|
|
public string index {
|
|
get {
|
|
return this.indexField;
|
|
}
|
|
set {
|
|
this.indexField = value;
|
|
this.RaisePropertyChanged("index");
|
|
}
|
|
}
|
|
|
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName) {
|
|
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
|
if ((propertyChanged != null)) {
|
|
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisAllowableActionsType : object, System.ComponentModel.INotifyPropertyChanged {
|
|
|
|
private string parentIdField;
|
|
|
|
private string parentUrlField;
|
|
|
|
private bool canDeleteField;
|
|
|
|
private bool canDeleteFieldSpecified;
|
|
|
|
private bool canUpdatePropertiesField;
|
|
|
|
private bool canUpdatePropertiesFieldSpecified;
|
|
|
|
private bool canGetPropertiesField;
|
|
|
|
private bool canGetPropertiesFieldSpecified;
|
|
|
|
private bool canGetRelationshipsField;
|
|
|
|
private bool canGetRelationshipsFieldSpecified;
|
|
|
|
private bool canGetParentsField;
|
|
|
|
private bool canGetParentsFieldSpecified;
|
|
|
|
private bool canGetFolderParentField;
|
|
|
|
private bool canGetFolderParentFieldSpecified;
|
|
|
|
private bool canGetDescendantsField;
|
|
|
|
private bool canGetDescendantsFieldSpecified;
|
|
|
|
private bool canMoveField;
|
|
|
|
private bool canMoveFieldSpecified;
|
|
|
|
private bool canDeleteVersionField;
|
|
|
|
private bool canDeleteVersionFieldSpecified;
|
|
|
|
private bool canDeleteContentField;
|
|
|
|
private bool canDeleteContentFieldSpecified;
|
|
|
|
private bool canCheckoutField;
|
|
|
|
private bool canCheckoutFieldSpecified;
|
|
|
|
private bool canCancelCheckoutField;
|
|
|
|
private bool canCancelCheckoutFieldSpecified;
|
|
|
|
private bool canCheckinField;
|
|
|
|
private bool canCheckinFieldSpecified;
|
|
|
|
private bool canSetContentField;
|
|
|
|
private bool canSetContentFieldSpecified;
|
|
|
|
private bool canGetAllVersionsField;
|
|
|
|
private bool canGetAllVersionsFieldSpecified;
|
|
|
|
private bool canAddToFolderField;
|
|
|
|
private bool canAddToFolderFieldSpecified;
|
|
|
|
private bool canRemoveFromFolderField;
|
|
|
|
private bool canRemoveFromFolderFieldSpecified;
|
|
|
|
private bool canViewContentField;
|
|
|
|
private bool canViewContentFieldSpecified;
|
|
|
|
private bool canAddPolicyField;
|
|
|
|
private bool canAddPolicyFieldSpecified;
|
|
|
|
private bool canGetAppliedPoliciesField;
|
|
|
|
private bool canGetAppliedPoliciesFieldSpecified;
|
|
|
|
private bool canRemovePolicyField;
|
|
|
|
private bool canRemovePolicyFieldSpecified;
|
|
|
|
private bool canGetChildrenField;
|
|
|
|
private bool canGetChildrenFieldSpecified;
|
|
|
|
private bool canCreateDocumentField;
|
|
|
|
private bool canCreateDocumentFieldSpecified;
|
|
|
|
private bool canCreateFolderField;
|
|
|
|
private bool canCreateFolderFieldSpecified;
|
|
|
|
private bool canCreateRelationshipField;
|
|
|
|
private bool canCreateRelationshipFieldSpecified;
|
|
|
|
private bool canCreatePolicyField;
|
|
|
|
private bool canCreatePolicyFieldSpecified;
|
|
|
|
private bool canDeleteTreeField;
|
|
|
|
private bool canDeleteTreeFieldSpecified;
|
|
|
|
private System.Xml.XmlElement[] anyField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=0)]
|
|
public string parentId {
|
|
get {
|
|
return this.parentIdField;
|
|
}
|
|
set {
|
|
this.parentIdField = value;
|
|
this.RaisePropertyChanged("parentId");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=1)]
|
|
public string parentUrl {
|
|
get {
|
|
return this.parentUrlField;
|
|
}
|
|
set {
|
|
this.parentUrlField = value;
|
|
this.RaisePropertyChanged("parentUrl");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=2)]
|
|
public bool canDelete {
|
|
get {
|
|
return this.canDeleteField;
|
|
}
|
|
set {
|
|
this.canDeleteField = value;
|
|
this.RaisePropertyChanged("canDelete");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canDeleteSpecified {
|
|
get {
|
|
return this.canDeleteFieldSpecified;
|
|
}
|
|
set {
|
|
this.canDeleteFieldSpecified = value;
|
|
this.RaisePropertyChanged("canDeleteSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=3)]
|
|
public bool canUpdateProperties {
|
|
get {
|
|
return this.canUpdatePropertiesField;
|
|
}
|
|
set {
|
|
this.canUpdatePropertiesField = value;
|
|
this.RaisePropertyChanged("canUpdateProperties");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canUpdatePropertiesSpecified {
|
|
get {
|
|
return this.canUpdatePropertiesFieldSpecified;
|
|
}
|
|
set {
|
|
this.canUpdatePropertiesFieldSpecified = value;
|
|
this.RaisePropertyChanged("canUpdatePropertiesSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=4)]
|
|
public bool canGetProperties {
|
|
get {
|
|
return this.canGetPropertiesField;
|
|
}
|
|
set {
|
|
this.canGetPropertiesField = value;
|
|
this.RaisePropertyChanged("canGetProperties");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetPropertiesSpecified {
|
|
get {
|
|
return this.canGetPropertiesFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetPropertiesFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetPropertiesSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=5)]
|
|
public bool canGetRelationships {
|
|
get {
|
|
return this.canGetRelationshipsField;
|
|
}
|
|
set {
|
|
this.canGetRelationshipsField = value;
|
|
this.RaisePropertyChanged("canGetRelationships");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetRelationshipsSpecified {
|
|
get {
|
|
return this.canGetRelationshipsFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetRelationshipsFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetRelationshipsSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=6)]
|
|
public bool canGetParents {
|
|
get {
|
|
return this.canGetParentsField;
|
|
}
|
|
set {
|
|
this.canGetParentsField = value;
|
|
this.RaisePropertyChanged("canGetParents");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetParentsSpecified {
|
|
get {
|
|
return this.canGetParentsFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetParentsFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetParentsSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=7)]
|
|
public bool canGetFolderParent {
|
|
get {
|
|
return this.canGetFolderParentField;
|
|
}
|
|
set {
|
|
this.canGetFolderParentField = value;
|
|
this.RaisePropertyChanged("canGetFolderParent");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetFolderParentSpecified {
|
|
get {
|
|
return this.canGetFolderParentFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetFolderParentFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetFolderParentSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=8)]
|
|
public bool canGetDescendants {
|
|
get {
|
|
return this.canGetDescendantsField;
|
|
}
|
|
set {
|
|
this.canGetDescendantsField = value;
|
|
this.RaisePropertyChanged("canGetDescendants");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetDescendantsSpecified {
|
|
get {
|
|
return this.canGetDescendantsFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetDescendantsFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetDescendantsSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=9)]
|
|
public bool canMove {
|
|
get {
|
|
return this.canMoveField;
|
|
}
|
|
set {
|
|
this.canMoveField = value;
|
|
this.RaisePropertyChanged("canMove");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canMoveSpecified {
|
|
get {
|
|
return this.canMoveFieldSpecified;
|
|
}
|
|
set {
|
|
this.canMoveFieldSpecified = value;
|
|
this.RaisePropertyChanged("canMoveSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=10)]
|
|
public bool canDeleteVersion {
|
|
get {
|
|
return this.canDeleteVersionField;
|
|
}
|
|
set {
|
|
this.canDeleteVersionField = value;
|
|
this.RaisePropertyChanged("canDeleteVersion");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canDeleteVersionSpecified {
|
|
get {
|
|
return this.canDeleteVersionFieldSpecified;
|
|
}
|
|
set {
|
|
this.canDeleteVersionFieldSpecified = value;
|
|
this.RaisePropertyChanged("canDeleteVersionSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=11)]
|
|
public bool canDeleteContent {
|
|
get {
|
|
return this.canDeleteContentField;
|
|
}
|
|
set {
|
|
this.canDeleteContentField = value;
|
|
this.RaisePropertyChanged("canDeleteContent");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canDeleteContentSpecified {
|
|
get {
|
|
return this.canDeleteContentFieldSpecified;
|
|
}
|
|
set {
|
|
this.canDeleteContentFieldSpecified = value;
|
|
this.RaisePropertyChanged("canDeleteContentSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=12)]
|
|
public bool canCheckout {
|
|
get {
|
|
return this.canCheckoutField;
|
|
}
|
|
set {
|
|
this.canCheckoutField = value;
|
|
this.RaisePropertyChanged("canCheckout");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canCheckoutSpecified {
|
|
get {
|
|
return this.canCheckoutFieldSpecified;
|
|
}
|
|
set {
|
|
this.canCheckoutFieldSpecified = value;
|
|
this.RaisePropertyChanged("canCheckoutSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=13)]
|
|
public bool canCancelCheckout {
|
|
get {
|
|
return this.canCancelCheckoutField;
|
|
}
|
|
set {
|
|
this.canCancelCheckoutField = value;
|
|
this.RaisePropertyChanged("canCancelCheckout");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canCancelCheckoutSpecified {
|
|
get {
|
|
return this.canCancelCheckoutFieldSpecified;
|
|
}
|
|
set {
|
|
this.canCancelCheckoutFieldSpecified = value;
|
|
this.RaisePropertyChanged("canCancelCheckoutSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=14)]
|
|
public bool canCheckin {
|
|
get {
|
|
return this.canCheckinField;
|
|
}
|
|
set {
|
|
this.canCheckinField = value;
|
|
this.RaisePropertyChanged("canCheckin");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canCheckinSpecified {
|
|
get {
|
|
return this.canCheckinFieldSpecified;
|
|
}
|
|
set {
|
|
this.canCheckinFieldSpecified = value;
|
|
this.RaisePropertyChanged("canCheckinSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=15)]
|
|
public bool canSetContent {
|
|
get {
|
|
return this.canSetContentField;
|
|
}
|
|
set {
|
|
this.canSetContentField = value;
|
|
this.RaisePropertyChanged("canSetContent");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canSetContentSpecified {
|
|
get {
|
|
return this.canSetContentFieldSpecified;
|
|
}
|
|
set {
|
|
this.canSetContentFieldSpecified = value;
|
|
this.RaisePropertyChanged("canSetContentSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=16)]
|
|
public bool canGetAllVersions {
|
|
get {
|
|
return this.canGetAllVersionsField;
|
|
}
|
|
set {
|
|
this.canGetAllVersionsField = value;
|
|
this.RaisePropertyChanged("canGetAllVersions");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetAllVersionsSpecified {
|
|
get {
|
|
return this.canGetAllVersionsFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetAllVersionsFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetAllVersionsSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=17)]
|
|
public bool canAddToFolder {
|
|
get {
|
|
return this.canAddToFolderField;
|
|
}
|
|
set {
|
|
this.canAddToFolderField = value;
|
|
this.RaisePropertyChanged("canAddToFolder");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canAddToFolderSpecified {
|
|
get {
|
|
return this.canAddToFolderFieldSpecified;
|
|
}
|
|
set {
|
|
this.canAddToFolderFieldSpecified = value;
|
|
this.RaisePropertyChanged("canAddToFolderSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=18)]
|
|
public bool canRemoveFromFolder {
|
|
get {
|
|
return this.canRemoveFromFolderField;
|
|
}
|
|
set {
|
|
this.canRemoveFromFolderField = value;
|
|
this.RaisePropertyChanged("canRemoveFromFolder");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canRemoveFromFolderSpecified {
|
|
get {
|
|
return this.canRemoveFromFolderFieldSpecified;
|
|
}
|
|
set {
|
|
this.canRemoveFromFolderFieldSpecified = value;
|
|
this.RaisePropertyChanged("canRemoveFromFolderSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=19)]
|
|
public bool canViewContent {
|
|
get {
|
|
return this.canViewContentField;
|
|
}
|
|
set {
|
|
this.canViewContentField = value;
|
|
this.RaisePropertyChanged("canViewContent");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canViewContentSpecified {
|
|
get {
|
|
return this.canViewContentFieldSpecified;
|
|
}
|
|
set {
|
|
this.canViewContentFieldSpecified = value;
|
|
this.RaisePropertyChanged("canViewContentSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=20)]
|
|
public bool canAddPolicy {
|
|
get {
|
|
return this.canAddPolicyField;
|
|
}
|
|
set {
|
|
this.canAddPolicyField = value;
|
|
this.RaisePropertyChanged("canAddPolicy");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canAddPolicySpecified {
|
|
get {
|
|
return this.canAddPolicyFieldSpecified;
|
|
}
|
|
set {
|
|
this.canAddPolicyFieldSpecified = value;
|
|
this.RaisePropertyChanged("canAddPolicySpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=21)]
|
|
public bool canGetAppliedPolicies {
|
|
get {
|
|
return this.canGetAppliedPoliciesField;
|
|
}
|
|
set {
|
|
this.canGetAppliedPoliciesField = value;
|
|
this.RaisePropertyChanged("canGetAppliedPolicies");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetAppliedPoliciesSpecified {
|
|
get {
|
|
return this.canGetAppliedPoliciesFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetAppliedPoliciesFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetAppliedPoliciesSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=22)]
|
|
public bool canRemovePolicy {
|
|
get {
|
|
return this.canRemovePolicyField;
|
|
}
|
|
set {
|
|
this.canRemovePolicyField = value;
|
|
this.RaisePropertyChanged("canRemovePolicy");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canRemovePolicySpecified {
|
|
get {
|
|
return this.canRemovePolicyFieldSpecified;
|
|
}
|
|
set {
|
|
this.canRemovePolicyFieldSpecified = value;
|
|
this.RaisePropertyChanged("canRemovePolicySpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=23)]
|
|
public bool canGetChildren {
|
|
get {
|
|
return this.canGetChildrenField;
|
|
}
|
|
set {
|
|
this.canGetChildrenField = value;
|
|
this.RaisePropertyChanged("canGetChildren");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canGetChildrenSpecified {
|
|
get {
|
|
return this.canGetChildrenFieldSpecified;
|
|
}
|
|
set {
|
|
this.canGetChildrenFieldSpecified = value;
|
|
this.RaisePropertyChanged("canGetChildrenSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=24)]
|
|
public bool canCreateDocument {
|
|
get {
|
|
return this.canCreateDocumentField;
|
|
}
|
|
set {
|
|
this.canCreateDocumentField = value;
|
|
this.RaisePropertyChanged("canCreateDocument");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canCreateDocumentSpecified {
|
|
get {
|
|
return this.canCreateDocumentFieldSpecified;
|
|
}
|
|
set {
|
|
this.canCreateDocumentFieldSpecified = value;
|
|
this.RaisePropertyChanged("canCreateDocumentSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=25)]
|
|
public bool canCreateFolder {
|
|
get {
|
|
return this.canCreateFolderField;
|
|
}
|
|
set {
|
|
this.canCreateFolderField = value;
|
|
this.RaisePropertyChanged("canCreateFolder");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canCreateFolderSpecified {
|
|
get {
|
|
return this.canCreateFolderFieldSpecified;
|
|
}
|
|
set {
|
|
this.canCreateFolderFieldSpecified = value;
|
|
this.RaisePropertyChanged("canCreateFolderSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=26)]
|
|
public bool canCreateRelationship {
|
|
get {
|
|
return this.canCreateRelationshipField;
|
|
}
|
|
set {
|
|
this.canCreateRelationshipField = value;
|
|
this.RaisePropertyChanged("canCreateRelationship");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canCreateRelationshipSpecified {
|
|
get {
|
|
return this.canCreateRelationshipFieldSpecified;
|
|
}
|
|
set {
|
|
this.canCreateRelationshipFieldSpecified = value;
|
|
this.RaisePropertyChanged("canCreateRelationshipSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=27)]
|
|
public bool canCreatePolicy {
|
|
get {
|
|
return this.canCreatePolicyField;
|
|
}
|
|
set {
|
|
this.canCreatePolicyField = value;
|
|
this.RaisePropertyChanged("canCreatePolicy");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canCreatePolicySpecified {
|
|
get {
|
|
return this.canCreatePolicyFieldSpecified;
|
|
}
|
|
set {
|
|
this.canCreatePolicyFieldSpecified = value;
|
|
this.RaisePropertyChanged("canCreatePolicySpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=28)]
|
|
public bool canDeleteTree {
|
|
get {
|
|
return this.canDeleteTreeField;
|
|
}
|
|
set {
|
|
this.canDeleteTreeField = value;
|
|
this.RaisePropertyChanged("canDeleteTree");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool canDeleteTreeSpecified {
|
|
get {
|
|
return this.canDeleteTreeFieldSpecified;
|
|
}
|
|
set {
|
|
this.canDeleteTreeFieldSpecified = value;
|
|
this.RaisePropertyChanged("canDeleteTreeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyElementAttribute(Order=29)]
|
|
public System.Xml.XmlElement[] Any {
|
|
get {
|
|
return this.anyField;
|
|
}
|
|
set {
|
|
this.anyField = value;
|
|
this.RaisePropertyChanged("Any");
|
|
}
|
|
}
|
|
|
|
public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
|
|
|
|
protected void RaisePropertyChanged(string propertyName) {
|
|
System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
|
|
if ((propertyChanged != null)) {
|
|
propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyInteger : cmisProperty {
|
|
|
|
private string valueField;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(DataType="integer", Order=0)]
|
|
public string value {
|
|
get {
|
|
return this.valueField;
|
|
}
|
|
set {
|
|
this.valueField = value;
|
|
this.RaisePropertyChanged("value");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyHtml : cmisProperty {
|
|
|
|
private System.Xml.XmlElement[] anyField;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyElementAttribute(Order=0)]
|
|
public System.Xml.XmlElement[] Any {
|
|
get {
|
|
return this.anyField;
|
|
}
|
|
set {
|
|
this.anyField = value;
|
|
this.RaisePropertyChanged("Any");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyDateTime : cmisProperty {
|
|
|
|
private System.DateTime valueField;
|
|
|
|
private bool valueFieldSpecified;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=0)]
|
|
public System.DateTime value {
|
|
get {
|
|
return this.valueField;
|
|
}
|
|
set {
|
|
this.valueField = value;
|
|
this.RaisePropertyChanged("value");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool valueSpecified {
|
|
get {
|
|
return this.valueFieldSpecified;
|
|
}
|
|
set {
|
|
this.valueFieldSpecified = value;
|
|
this.RaisePropertyChanged("valueSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyString : cmisProperty {
|
|
|
|
private string valueField;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=0)]
|
|
public string value {
|
|
get {
|
|
return this.valueField;
|
|
}
|
|
set {
|
|
this.valueField = value;
|
|
this.RaisePropertyChanged("value");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyXml : cmisProperty {
|
|
|
|
private System.Xml.XmlElement[] anyField;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyElementAttribute(Order=0)]
|
|
public System.Xml.XmlElement[] Any {
|
|
get {
|
|
return this.anyField;
|
|
}
|
|
set {
|
|
this.anyField = value;
|
|
this.RaisePropertyChanged("Any");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyDecimal : cmisProperty {
|
|
|
|
private decimal valueField;
|
|
|
|
private bool valueFieldSpecified;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=0)]
|
|
public decimal value {
|
|
get {
|
|
return this.valueField;
|
|
}
|
|
set {
|
|
this.valueField = value;
|
|
this.RaisePropertyChanged("value");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool valueSpecified {
|
|
get {
|
|
return this.valueFieldSpecified;
|
|
}
|
|
set {
|
|
this.valueFieldSpecified = value;
|
|
this.RaisePropertyChanged("valueSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyId : cmisProperty {
|
|
|
|
private string valueField;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private string hrefField;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(Order=0)]
|
|
public string value {
|
|
get {
|
|
return this.valueField;
|
|
}
|
|
set {
|
|
this.valueField = value;
|
|
this.RaisePropertyChanged("value");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified, DataType="anyURI")]
|
|
public string href {
|
|
get {
|
|
return this.hrefField;
|
|
}
|
|
set {
|
|
this.hrefField = value;
|
|
this.RaisePropertyChanged("href");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.ComponentModel.DesignerCategoryAttribute("code")]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public partial class cmisPropertyUri : cmisProperty {
|
|
|
|
private string valueField;
|
|
|
|
private enumPropertyType propertyTypeField;
|
|
|
|
private bool propertyTypeFieldSpecified;
|
|
|
|
private System.Xml.XmlAttribute[] anyAttrField;
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlElementAttribute(DataType="anyURI", Order=0)]
|
|
public string value {
|
|
get {
|
|
return this.valueField;
|
|
}
|
|
set {
|
|
this.valueField = value;
|
|
this.RaisePropertyChanged("value");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAttributeAttribute(Form=System.Xml.Schema.XmlSchemaForm.Qualified)]
|
|
public enumPropertyType propertyType {
|
|
get {
|
|
return this.propertyTypeField;
|
|
}
|
|
set {
|
|
this.propertyTypeField = value;
|
|
this.RaisePropertyChanged("propertyType");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlIgnoreAttribute()]
|
|
public bool propertyTypeSpecified {
|
|
get {
|
|
return this.propertyTypeFieldSpecified;
|
|
}
|
|
set {
|
|
this.propertyTypeFieldSpecified = value;
|
|
this.RaisePropertyChanged("propertyTypeSpecified");
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.Xml.Serialization.XmlAnyAttributeAttribute()]
|
|
public System.Xml.XmlAttribute[] AnyAttr {
|
|
get {
|
|
return this.anyAttrField;
|
|
}
|
|
set {
|
|
this.anyAttrField = value;
|
|
this.RaisePropertyChanged("AnyAttr");
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getCheckedoutDocs", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getCheckedoutDocs {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
public string repositoryId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=1)]
|
|
public string folderID;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=2)]
|
|
public string filter;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=3)]
|
|
public bool includeAllowableActions;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=4)]
|
|
public bool includeRelationships;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=5)]
|
|
[System.Xml.Serialization.XmlElementAttribute(DataType="integer")]
|
|
public string maxItems;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=6)]
|
|
[System.Xml.Serialization.XmlElementAttribute(DataType="integer")]
|
|
public string skipCount;
|
|
|
|
public getCheckedoutDocs() {
|
|
}
|
|
|
|
public getCheckedoutDocs(string repositoryId, string folderID, string filter, bool includeAllowableActions, bool includeRelationships, string maxItems, string skipCount) {
|
|
this.repositoryId = repositoryId;
|
|
this.folderID = folderID;
|
|
this.filter = filter;
|
|
this.includeAllowableActions = includeAllowableActions;
|
|
this.includeRelationships = includeRelationships;
|
|
this.maxItems = maxItems;
|
|
this.skipCount = skipCount;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getCheckedoutDocsResponse", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getCheckedoutDocsResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("object", IsNullable=true)]
|
|
public cmisObjectType[] @object;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=1)]
|
|
public bool hasMoreItems;
|
|
|
|
public getCheckedoutDocsResponse() {
|
|
}
|
|
|
|
public getCheckedoutDocsResponse(cmisObjectType[] @object, bool hasMoreItems) {
|
|
this.@object = @object;
|
|
this.hasMoreItems = hasMoreItems;
|
|
}
|
|
}
|
|
|
|
/// <remarks/>
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.3053")]
|
|
[System.SerializableAttribute()]
|
|
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.cmis.org/2008/05")]
|
|
public enum enumTypesOfFileableObjects {
|
|
|
|
/// <remarks/>
|
|
documents,
|
|
|
|
/// <remarks/>
|
|
folders,
|
|
|
|
/// <remarks/>
|
|
policies,
|
|
|
|
/// <remarks/>
|
|
any,
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getChildren", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getChildren {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
public string repositoryId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=1)]
|
|
public string folderId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=2)]
|
|
public WcfTestClient.NavigationService.enumTypesOfFileableObjects type;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=3)]
|
|
public string filter;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=4)]
|
|
public bool includeAllowableActions;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=5)]
|
|
public bool includeRelationships;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=6)]
|
|
[System.Xml.Serialization.XmlElementAttribute(DataType="integer")]
|
|
public string maxItems;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=7)]
|
|
[System.Xml.Serialization.XmlElementAttribute(DataType="integer")]
|
|
public string skipCount;
|
|
|
|
public getChildren() {
|
|
}
|
|
|
|
public getChildren(string repositoryId, string folderId, WcfTestClient.NavigationService.enumTypesOfFileableObjects type, string filter, bool includeAllowableActions, bool includeRelationships, string maxItems, string skipCount) {
|
|
this.repositoryId = repositoryId;
|
|
this.folderId = folderId;
|
|
this.type = type;
|
|
this.filter = filter;
|
|
this.includeAllowableActions = includeAllowableActions;
|
|
this.includeRelationships = includeRelationships;
|
|
this.maxItems = maxItems;
|
|
this.skipCount = skipCount;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getChildrenResponse", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getChildrenResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("object", IsNullable=true)]
|
|
public cmisObjectType[] @object;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=1)]
|
|
public bool hasMoreItems;
|
|
|
|
public getChildrenResponse() {
|
|
}
|
|
|
|
public getChildrenResponse(cmisObjectType[] @object, bool hasMoreItems) {
|
|
this.@object = @object;
|
|
this.hasMoreItems = hasMoreItems;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getObjectParents", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getObjectParents {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
public string repositoryId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=1)]
|
|
public string objectId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=2)]
|
|
public string filter;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=3)]
|
|
public bool includeAllowableActions;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=4)]
|
|
public bool includeRelationships;
|
|
|
|
public getObjectParents() {
|
|
}
|
|
|
|
public getObjectParents(string repositoryId, string objectId, string filter, bool includeAllowableActions, bool includeRelationships) {
|
|
this.repositoryId = repositoryId;
|
|
this.objectId = objectId;
|
|
this.filter = filter;
|
|
this.includeAllowableActions = includeAllowableActions;
|
|
this.includeRelationships = includeRelationships;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getObjectParentsResponse", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getObjectParentsResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("object", IsNullable=true)]
|
|
public cmisObjectType[] @object;
|
|
|
|
public getObjectParentsResponse() {
|
|
}
|
|
|
|
public getObjectParentsResponse(cmisObjectType[] @object) {
|
|
this.@object = @object;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getFolderParent", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getFolderParent {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
public string repositoryId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=1)]
|
|
public string folderId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=2)]
|
|
public string filter;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=3)]
|
|
public bool includeAllowableActions;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=4)]
|
|
public bool includeRelationships;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=5)]
|
|
public bool returnToRoot;
|
|
|
|
public getFolderParent() {
|
|
}
|
|
|
|
public getFolderParent(string repositoryId, string folderId, string filter, bool includeAllowableActions, bool includeRelationships, bool returnToRoot) {
|
|
this.repositoryId = repositoryId;
|
|
this.folderId = folderId;
|
|
this.filter = filter;
|
|
this.includeAllowableActions = includeAllowableActions;
|
|
this.includeRelationships = includeRelationships;
|
|
this.returnToRoot = returnToRoot;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getFolderParentResponse", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getFolderParentResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("object", IsNullable=true)]
|
|
public cmisObjectType[] @object;
|
|
|
|
public getFolderParentResponse() {
|
|
}
|
|
|
|
public getFolderParentResponse(cmisObjectType[] @object) {
|
|
this.@object = @object;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getDescendants", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getDescendants {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
public string repositoryId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=1)]
|
|
public string folderId;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=2)]
|
|
public WcfTestClient.NavigationService.enumTypesOfFileableObjects type;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=3)]
|
|
[System.Xml.Serialization.XmlElementAttribute(DataType="integer")]
|
|
public string depth;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=4)]
|
|
public string filter;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=5)]
|
|
public bool includeAllowableActions;
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=6)]
|
|
public bool includeRelationships;
|
|
|
|
public getDescendants() {
|
|
}
|
|
|
|
public getDescendants(string repositoryId, string folderId, WcfTestClient.NavigationService.enumTypesOfFileableObjects type, string depth, string filter, bool includeAllowableActions, bool includeRelationships) {
|
|
this.repositoryId = repositoryId;
|
|
this.folderId = folderId;
|
|
this.type = type;
|
|
this.depth = depth;
|
|
this.filter = filter;
|
|
this.includeAllowableActions = includeAllowableActions;
|
|
this.includeRelationships = includeRelationships;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
[System.ServiceModel.MessageContractAttribute(WrapperName="getDescendantsResponse", WrapperNamespace="http://www.cmis.org/2008/05", IsWrapped=true)]
|
|
public partial class getDescendantsResponse {
|
|
|
|
[System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://www.cmis.org/2008/05", Order=0)]
|
|
[System.Xml.Serialization.XmlElementAttribute("object", IsNullable=true)]
|
|
public cmisObjectType[] @object;
|
|
|
|
public getDescendantsResponse() {
|
|
}
|
|
|
|
public getDescendantsResponse(cmisObjectType[] @object) {
|
|
this.@object = @object;
|
|
}
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
public interface NavigationServicePortChannel : WcfTestClient.NavigationService.NavigationServicePort, System.ServiceModel.IClientChannel {
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerStepThroughAttribute()]
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
|
|
public partial class NavigationServicePortClient : System.ServiceModel.ClientBase<WcfTestClient.NavigationService.NavigationServicePort>, WcfTestClient.NavigationService.NavigationServicePort {
|
|
|
|
public NavigationServicePortClient() {
|
|
}
|
|
|
|
public NavigationServicePortClient(string endpointConfigurationName) :
|
|
base(endpointConfigurationName) {
|
|
}
|
|
|
|
public NavigationServicePortClient(string endpointConfigurationName, string remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public NavigationServicePortClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(endpointConfigurationName, remoteAddress) {
|
|
}
|
|
|
|
public NavigationServicePortClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
|
|
base(binding, remoteAddress) {
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WcfTestClient.NavigationService.getCheckedoutDocsResponse WcfTestClient.NavigationService.NavigationServicePort.getCheckedoutDocs(WcfTestClient.NavigationService.getCheckedoutDocs request) {
|
|
return base.Channel.getCheckedoutDocs(request);
|
|
}
|
|
|
|
public cmisObjectType[] getCheckedoutDocs(string repositoryId, string folderID, string filter, bool includeAllowableActions, bool includeRelationships, string maxItems, string skipCount, out bool hasMoreItems) {
|
|
WcfTestClient.NavigationService.getCheckedoutDocs inValue = new WcfTestClient.NavigationService.getCheckedoutDocs();
|
|
inValue.repositoryId = repositoryId;
|
|
inValue.folderID = folderID;
|
|
inValue.filter = filter;
|
|
inValue.includeAllowableActions = includeAllowableActions;
|
|
inValue.includeRelationships = includeRelationships;
|
|
inValue.maxItems = maxItems;
|
|
inValue.skipCount = skipCount;
|
|
WcfTestClient.NavigationService.getCheckedoutDocsResponse retVal = ((WcfTestClient.NavigationService.NavigationServicePort)(this)).getCheckedoutDocs(inValue);
|
|
hasMoreItems = retVal.hasMoreItems;
|
|
return retVal.@object;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WcfTestClient.NavigationService.getChildrenResponse WcfTestClient.NavigationService.NavigationServicePort.getChildren(WcfTestClient.NavigationService.getChildren request) {
|
|
return base.Channel.getChildren(request);
|
|
}
|
|
|
|
public cmisObjectType[] getChildren(string repositoryId, string folderId, WcfTestClient.NavigationService.enumTypesOfFileableObjects type, string filter, bool includeAllowableActions, bool includeRelationships, string maxItems, string skipCount, out bool hasMoreItems) {
|
|
WcfTestClient.NavigationService.getChildren inValue = new WcfTestClient.NavigationService.getChildren();
|
|
inValue.repositoryId = repositoryId;
|
|
inValue.folderId = folderId;
|
|
inValue.type = type;
|
|
inValue.filter = filter;
|
|
inValue.includeAllowableActions = includeAllowableActions;
|
|
inValue.includeRelationships = includeRelationships;
|
|
inValue.maxItems = maxItems;
|
|
inValue.skipCount = skipCount;
|
|
WcfTestClient.NavigationService.getChildrenResponse retVal = ((WcfTestClient.NavigationService.NavigationServicePort)(this)).getChildren(inValue);
|
|
hasMoreItems = retVal.hasMoreItems;
|
|
return retVal.@object;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WcfTestClient.NavigationService.getObjectParentsResponse WcfTestClient.NavigationService.NavigationServicePort.getObjectParents(WcfTestClient.NavigationService.getObjectParents request) {
|
|
return base.Channel.getObjectParents(request);
|
|
}
|
|
|
|
public cmisObjectType[] getObjectParents(string repositoryId, string objectId, string filter, bool includeAllowableActions, bool includeRelationships) {
|
|
WcfTestClient.NavigationService.getObjectParents inValue = new WcfTestClient.NavigationService.getObjectParents();
|
|
inValue.repositoryId = repositoryId;
|
|
inValue.objectId = objectId;
|
|
inValue.filter = filter;
|
|
inValue.includeAllowableActions = includeAllowableActions;
|
|
inValue.includeRelationships = includeRelationships;
|
|
WcfTestClient.NavigationService.getObjectParentsResponse retVal = ((WcfTestClient.NavigationService.NavigationServicePort)(this)).getObjectParents(inValue);
|
|
return retVal.@object;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WcfTestClient.NavigationService.getFolderParentResponse WcfTestClient.NavigationService.NavigationServicePort.getFolderParent(WcfTestClient.NavigationService.getFolderParent request) {
|
|
return base.Channel.getFolderParent(request);
|
|
}
|
|
|
|
public cmisObjectType[] getFolderParent(string repositoryId, string folderId, string filter, bool includeAllowableActions, bool includeRelationships, bool returnToRoot) {
|
|
WcfTestClient.NavigationService.getFolderParent inValue = new WcfTestClient.NavigationService.getFolderParent();
|
|
inValue.repositoryId = repositoryId;
|
|
inValue.folderId = folderId;
|
|
inValue.filter = filter;
|
|
inValue.includeAllowableActions = includeAllowableActions;
|
|
inValue.includeRelationships = includeRelationships;
|
|
inValue.returnToRoot = returnToRoot;
|
|
WcfTestClient.NavigationService.getFolderParentResponse retVal = ((WcfTestClient.NavigationService.NavigationServicePort)(this)).getFolderParent(inValue);
|
|
return retVal.@object;
|
|
}
|
|
|
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
|
WcfTestClient.NavigationService.getDescendantsResponse WcfTestClient.NavigationService.NavigationServicePort.getDescendants(WcfTestClient.NavigationService.getDescendants request) {
|
|
return base.Channel.getDescendants(request);
|
|
}
|
|
|
|
public cmisObjectType[] getDescendants(string repositoryId, string folderId, WcfTestClient.NavigationService.enumTypesOfFileableObjects type, string depth, string filter, bool includeAllowableActions, bool includeRelationships) {
|
|
WcfTestClient.NavigationService.getDescendants inValue = new WcfTestClient.NavigationService.getDescendants();
|
|
inValue.repositoryId = repositoryId;
|
|
inValue.folderId = folderId;
|
|
inValue.type = type;
|
|
inValue.depth = depth;
|
|
inValue.filter = filter;
|
|
inValue.includeAllowableActions = includeAllowableActions;
|
|
inValue.includeRelationships = includeRelationships;
|
|
WcfTestClient.NavigationService.getDescendantsResponse retVal = ((WcfTestClient.NavigationService.NavigationServicePort)(this)).getDescendants(inValue);
|
|
return retVal.@object;
|
|
}
|
|
}
|
|
}
|