15-12-2022 ~ 2
This commit is contained in:
@@ -5,6 +5,7 @@
|
||||
<xsd:import namespace="http://DigitalData.Services.EDMIService" />
|
||||
<xsd:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
|
||||
<xsd:import namespace="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows" />
|
||||
<xsd:import namespace="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" />
|
||||
<xsd:import namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
||||
</xsd:schema>
|
||||
</wsdl:types>
|
||||
|
||||
@@ -0,0 +1,153 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" xmlns:ser="http://schemas.microsoft.com/2003/10/Serialization/" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
|
||||
<xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
||||
<xs:complexType name="ArrayOfHistoryItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="HistoryItem" nillable="true" type="tns:HistoryItem" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfHistoryItem" nillable="true" type="tns:ArrayOfHistoryItem" />
|
||||
<xs:complexType name="HistoryItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="CreatedAt" type="xs:dateTime" />
|
||||
<xs:element minOccurs="0" name="ErrorMessage" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="JobName" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Message" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Steps" nillable="true" type="tns:ArrayOfHistoryItem.HistoryStep" />
|
||||
<xs:element minOccurs="0" name="Successful" type="xs:boolean" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="HistoryItem" nillable="true" type="tns:HistoryItem" />
|
||||
<xs:complexType name="ArrayOfHistoryItem.HistoryStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="HistoryItem.HistoryStep" nillable="true" type="tns:HistoryItem.HistoryStep" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfHistoryItem.HistoryStep" nillable="true" type="tns:ArrayOfHistoryItem.HistoryStep" />
|
||||
<xs:complexType name="HistoryItem.HistoryStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Created" type="xs:dateTime" />
|
||||
<xs:element minOccurs="0" name="Level" type="tns:HistoryItem.StepLevel" />
|
||||
<xs:element minOccurs="0" name="Message" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="HistoryItem.HistoryStep" nillable="true" type="tns:HistoryItem.HistoryStep" />
|
||||
<xs:simpleType name="HistoryItem.StepLevel">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="Debug" />
|
||||
<xs:enumeration value="Info" />
|
||||
<xs:enumeration value="Warning" />
|
||||
<xs:enumeration value="Error" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:element name="HistoryItem.StepLevel" nillable="true" type="tns:HistoryItem.StepLevel" />
|
||||
<xs:complexType name="ArrayOfStatusItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="StatusItem" nillable="true" type="tns:StatusItem" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfStatusItem" nillable="true" type="tns:ArrayOfStatusItem" />
|
||||
<xs:complexType name="StatusItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="CompleteTime" type="xs:dateTime" />
|
||||
<xs:element minOccurs="0" name="Executing" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="ExecutionTime" type="ser:duration" />
|
||||
<xs:element minOccurs="0" name="Id" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="ProgressCurrent" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="ProgressTotal" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="StartTime" type="xs:dateTime" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="StatusItem" nillable="true" type="tns:StatusItem" />
|
||||
<xs:complexType name="JobDefinition">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="CronSchedule" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Type" nillable="true" type="tns:JobType" />
|
||||
<xs:element minOccurs="0" name="TypeId" type="xs:int" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="JobDefinition" nillable="true" type="tns:JobDefinition" />
|
||||
<xs:complexType name="JobType">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="JobType" nillable="true" type="tns:JobType" />
|
||||
<xs:complexType name="ImportProfile">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="BackupFolder" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="DeleteFiles" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="FileExcludeRegex" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="IncludeSubfolders" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="Job" nillable="true" type="tns:JobDefinition" />
|
||||
<xs:element minOccurs="0" name="JobId" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="ObjectType" nillable="true" type="tns:ObjectType" />
|
||||
<xs:element minOccurs="0" name="ObjectTypeName" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="SourceFolder" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Steps" nillable="true" type="tns:ArrayOfImportProfileStep" />
|
||||
<xs:element minOccurs="0" name="SubfolderDateFormat" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="TargetFolder" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ImportProfile" nillable="true" type="tns:ImportProfile" />
|
||||
<xs:complexType name="ObjectType">
|
||||
<xs:sequence>
|
||||
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="Indexes" nillable="true" type="q1:ArrayOfstring" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ObjectType" nillable="true" type="tns:ObjectType" />
|
||||
<xs:complexType name="ArrayOfImportProfileStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="ImportProfileStep" nillable="true" type="tns:ImportProfileStep" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfImportProfileStep" nillable="true" type="tns:ArrayOfImportProfileStep" />
|
||||
<xs:complexType name="ImportProfileStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="Argument1" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Argument2" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Argument3" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="IndexName" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Method" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="ProfileId" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="Scope" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ImportProfileStep" nillable="true" type="tns:ImportProfileStep" />
|
||||
<xs:complexType name="ArrayOfJobDefinition">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="JobDefinition" nillable="true" type="tns:JobDefinition" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfJobDefinition" nillable="true" type="tns:ArrayOfJobDefinition" />
|
||||
<xs:complexType name="ArrayOfJobType">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="JobType" nillable="true" type="tns:JobType" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfJobType" nillable="true" type="tns:ArrayOfJobType" />
|
||||
<xs:complexType name="ArrayOfImportProfile">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="ImportProfile" nillable="true" type="tns:ImportProfile" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfImportProfile" nillable="true" type="tns:ArrayOfImportProfile" />
|
||||
<xs:complexType name="ArrayOfObjectType">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="ObjectType" nillable="true" type="tns:ObjectType" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfObjectType" nillable="true" type="tns:ArrayOfObjectType" />
|
||||
</xs:schema>
|
||||
@@ -1,13 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows" xmlns:ser="http://schemas.microsoft.com/2003/10/Serialization/" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/" />
|
||||
<xs:import namespace="http://schemas.microsoft.com/2003/10/Serialization/Arrays" />
|
||||
<xs:schema xmlns:tns="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows" elementFormDefault="qualified" targetNamespace="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows" xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
||||
<xs:import namespace="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" />
|
||||
<xs:complexType name="GetJobStatus.GetJobStatusResponse">
|
||||
<xs:complexContent mixed="false">
|
||||
<xs:extension base="tns:Base.BaseResponse">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="HistoryItems" nillable="true" type="tns:ArrayOfHistoryItem" />
|
||||
<xs:element minOccurs="0" name="StatusItems" nillable="true" type="tns:ArrayOfStatusItem" />
|
||||
<xs:element xmlns:q1="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="HistoryItems" nillable="true" type="q1:ArrayOfHistoryItem" />
|
||||
<xs:element xmlns:q2="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="StatusItems" nillable="true" type="q2:ArrayOfStatusItem" />
|
||||
</xs:sequence>
|
||||
</xs:extension>
|
||||
</xs:complexContent>
|
||||
@@ -21,65 +20,6 @@
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="Base.BaseResponse" nillable="true" type="tns:Base.BaseResponse" />
|
||||
<xs:complexType name="ArrayOfHistoryItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="HistoryItem" nillable="true" type="tns:HistoryItem" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfHistoryItem" nillable="true" type="tns:ArrayOfHistoryItem" />
|
||||
<xs:complexType name="HistoryItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="CreatedAt" type="xs:dateTime" />
|
||||
<xs:element minOccurs="0" name="ErrorMessage" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="JobName" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Message" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Steps" nillable="true" type="tns:ArrayOfHistoryItem.HistoryStep" />
|
||||
<xs:element minOccurs="0" name="Successful" type="xs:boolean" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="HistoryItem" nillable="true" type="tns:HistoryItem" />
|
||||
<xs:complexType name="ArrayOfHistoryItem.HistoryStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="HistoryItem.HistoryStep" nillable="true" type="tns:HistoryItem.HistoryStep" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfHistoryItem.HistoryStep" nillable="true" type="tns:ArrayOfHistoryItem.HistoryStep" />
|
||||
<xs:complexType name="HistoryItem.HistoryStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Created" type="xs:dateTime" />
|
||||
<xs:element minOccurs="0" name="Level" type="tns:HistoryItem.StepLevel" />
|
||||
<xs:element minOccurs="0" name="Message" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="HistoryItem.HistoryStep" nillable="true" type="tns:HistoryItem.HistoryStep" />
|
||||
<xs:simpleType name="HistoryItem.StepLevel">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="Debug" />
|
||||
<xs:enumeration value="Info" />
|
||||
<xs:enumeration value="Warning" />
|
||||
<xs:enumeration value="Error" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:element name="HistoryItem.StepLevel" nillable="true" type="tns:HistoryItem.StepLevel" />
|
||||
<xs:complexType name="ArrayOfStatusItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="StatusItem" nillable="true" type="tns:StatusItem" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfStatusItem" nillable="true" type="tns:ArrayOfStatusItem" />
|
||||
<xs:complexType name="StatusItem">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="CompleteTime" type="xs:dateTime" />
|
||||
<xs:element minOccurs="0" name="Executing" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="ExecutionTime" type="ser:duration" />
|
||||
<xs:element minOccurs="0" name="Id" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="ProgressCurrent" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="ProgressTotal" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="StartTime" type="xs:dateTime" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="StatusItem" nillable="true" type="tns:StatusItem" />
|
||||
<xs:complexType name="RunJob.RunJobRequest">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="JobId" type="xs:int" />
|
||||
@@ -97,7 +37,7 @@
|
||||
<xs:complexType name="UpdateJob.UpdateJobRequest">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Action" type="tns:UpdateJob.UpdateJobRequest.UpdateJobAction" />
|
||||
<xs:element minOccurs="0" name="Job" nillable="true" type="tns:JobDefinition" />
|
||||
<xs:element xmlns:q3="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="Job" nillable="true" type="q3:JobDefinition" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="UpdateJob.UpdateJobRequest" nillable="true" type="tns:UpdateJob.UpdateJobRequest" />
|
||||
@@ -109,25 +49,6 @@
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:element name="UpdateJob.UpdateJobRequest.UpdateJobAction" nillable="true" type="tns:UpdateJob.UpdateJobRequest.UpdateJobAction" />
|
||||
<xs:complexType name="JobDefinition">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="CronSchedule" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Type" nillable="true" type="tns:JobType" />
|
||||
<xs:element minOccurs="0" name="TypeId" type="xs:int" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="JobDefinition" nillable="true" type="tns:JobDefinition" />
|
||||
<xs:complexType name="JobType">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="JobType" nillable="true" type="tns:JobType" />
|
||||
<xs:complexType name="UpdateJob.UpdateJobResponse">
|
||||
<xs:complexContent mixed="false">
|
||||
<xs:extension base="tns:Base.BaseResponse">
|
||||
@@ -139,7 +60,7 @@
|
||||
<xs:complexType name="UpdateProfile.UpdateProfileRequest">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Action" type="tns:UpdateProfile.UpdateProfileRequest.UpdateProfileAction" />
|
||||
<xs:element minOccurs="0" name="ImportProfile" nillable="true" type="tns:ImportProfile" />
|
||||
<xs:element xmlns:q4="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="ImportProfile" nillable="true" type="q4:ImportProfile" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="UpdateProfile.UpdateProfileRequest" nillable="true" type="tns:UpdateProfile.UpdateProfileRequest" />
|
||||
@@ -151,52 +72,6 @@
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:element name="UpdateProfile.UpdateProfileRequest.UpdateProfileAction" nillable="true" type="tns:UpdateProfile.UpdateProfileRequest.UpdateProfileAction" />
|
||||
<xs:complexType name="ImportProfile">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="BackupFolder" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="DeleteFiles" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="FileExcludeRegex" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="IncludeSubfolders" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="Job" nillable="true" type="tns:JobDefinition" />
|
||||
<xs:element minOccurs="0" name="JobId" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="ObjectType" nillable="true" type="tns:ObjectType" />
|
||||
<xs:element minOccurs="0" name="ObjectTypeName" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="SourceFolder" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Steps" nillable="true" type="tns:ArrayOfImportProfileStep" />
|
||||
<xs:element minOccurs="0" name="SubfolderDateFormat" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="TargetFolder" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ImportProfile" nillable="true" type="tns:ImportProfile" />
|
||||
<xs:complexType name="ObjectType">
|
||||
<xs:sequence>
|
||||
<xs:element xmlns:q1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="Indexes" nillable="true" type="q1:ArrayOfstring" />
|
||||
<xs:element minOccurs="0" name="Name" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ObjectType" nillable="true" type="tns:ObjectType" />
|
||||
<xs:complexType name="ArrayOfImportProfileStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="ImportProfileStep" nillable="true" type="tns:ImportProfileStep" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfImportProfileStep" nillable="true" type="tns:ArrayOfImportProfileStep" />
|
||||
<xs:complexType name="ImportProfileStep">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="Active" type="xs:boolean" />
|
||||
<xs:element minOccurs="0" name="Argument1" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Argument2" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Argument3" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Id" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="IndexName" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="Method" nillable="true" type="xs:string" />
|
||||
<xs:element minOccurs="0" name="ProfileId" type="xs:int" />
|
||||
<xs:element minOccurs="0" name="Scope" nillable="true" type="xs:string" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ImportProfileStep" nillable="true" type="tns:ImportProfileStep" />
|
||||
<xs:complexType name="UpdateProfile.UpdateProfileResponse">
|
||||
<xs:complexContent mixed="false">
|
||||
<xs:extension base="tns:Base.BaseResponse">
|
||||
@@ -209,43 +84,19 @@
|
||||
<xs:complexContent mixed="false">
|
||||
<xs:extension base="tns:Base.BaseResponse">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="JobDefinitions" nillable="true" type="tns:ArrayOfJobDefinition" />
|
||||
<xs:element minOccurs="0" name="JobTypes" nillable="true" type="tns:ArrayOfJobType" />
|
||||
<xs:element xmlns:q5="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="JobDefinitions" nillable="true" type="q5:ArrayOfJobDefinition" />
|
||||
<xs:element xmlns:q6="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="JobTypes" nillable="true" type="q6:ArrayOfJobType" />
|
||||
<xs:element minOccurs="0" name="ProfileDefinitions" nillable="true" type="tns:GetJobConfig.GetJobConfigResponse.ProfileDefinitionConfig" />
|
||||
<xs:element minOccurs="0" name="WindreamObjectTypes" nillable="true" type="tns:ArrayOfObjectType" />
|
||||
<xs:element xmlns:q7="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="WindreamObjectTypes" nillable="true" type="q7:ArrayOfObjectType" />
|
||||
</xs:sequence>
|
||||
</xs:extension>
|
||||
</xs:complexContent>
|
||||
</xs:complexType>
|
||||
<xs:element name="GetJobConfig.GetJobConfigResponse" nillable="true" type="tns:GetJobConfig.GetJobConfigResponse" />
|
||||
<xs:complexType name="ArrayOfJobDefinition">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="JobDefinition" nillable="true" type="tns:JobDefinition" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfJobDefinition" nillable="true" type="tns:ArrayOfJobDefinition" />
|
||||
<xs:complexType name="ArrayOfJobType">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="JobType" nillable="true" type="tns:JobType" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfJobType" nillable="true" type="tns:ArrayOfJobType" />
|
||||
<xs:complexType name="GetJobConfig.GetJobConfigResponse.ProfileDefinitionConfig">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" name="ImportProfiles" nillable="true" type="tns:ArrayOfImportProfile" />
|
||||
<xs:element xmlns:q8="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common" minOccurs="0" name="ImportProfiles" nillable="true" type="q8:ArrayOfImportProfile" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="GetJobConfig.GetJobConfigResponse.ProfileDefinitionConfig" nillable="true" type="tns:GetJobConfig.GetJobConfigResponse.ProfileDefinitionConfig" />
|
||||
<xs:complexType name="ArrayOfImportProfile">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="ImportProfile" nillable="true" type="tns:ImportProfile" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfImportProfile" nillable="true" type="tns:ArrayOfImportProfile" />
|
||||
<xs:complexType name="ArrayOfObjectType">
|
||||
<xs:sequence>
|
||||
<xs:element minOccurs="0" maxOccurs="unbounded" name="ObjectType" nillable="true" type="tns:ObjectType" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:element name="ArrayOfObjectType" nillable="true" type="tns:ArrayOfObjectType" />
|
||||
</xs:schema>
|
||||
@@ -27,6 +27,7 @@
|
||||
<MetadataFile FileName="DigitalData.Services.EDMIService.xsd" MetadataType="Schema" ID="d9797fa8-53bb-4228-a77d-4f795d7e7595" SourceId="1" SourceUrl="net.tcp://172.24.12.39:9001/DigitalData/Services/JobRunner/mex" />
|
||||
<MetadataFile FileName="service.xsd" MetadataType="Schema" ID="82f08b96-e901-43fd-b34f-8c5660ef7b9d" SourceId="1" SourceUrl="net.tcp://172.24.12.39:9001/DigitalData/Services/JobRunner/mex" />
|
||||
<MetadataFile FileName="ECM.JobRunner.Windows.xsd" MetadataType="Schema" ID="767808c0-aa74-46cc-af21-73a1ccedb8e9" SourceId="1" SourceUrl="net.tcp://172.24.12.39:9001/DigitalData/Services/JobRunner/mex" />
|
||||
<MetadataFile FileName="ECM.JobRunner.Common.xsd" MetadataType="Schema" ID="f51feb28-2b0c-4ae5-9256-e872a8513346" SourceId="1" SourceUrl="net.tcp://172.24.12.39:9001/DigitalData/Services/JobRunner/mex" />
|
||||
<MetadataFile FileName="Arrays.xsd" MetadataType="Schema" ID="908086d3-61bf-4869-9efb-ca4e72ed984a" SourceId="1" SourceUrl="net.tcp://172.24.12.39:9001/DigitalData/Services/JobRunner/mex" />
|
||||
</Metadata>
|
||||
<Extensions>
|
||||
|
||||
@@ -284,7 +284,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="HistoryItem", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="HistoryItem", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class HistoryItem
|
||||
Inherits Object
|
||||
@@ -410,7 +410,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="HistoryItem.HistoryStep", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="HistoryItem.HistoryStep", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class HistoryStep
|
||||
Inherits Object
|
||||
@@ -487,7 +487,7 @@ Namespace JobRunnerReference
|
||||
End Class
|
||||
|
||||
<System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="HistoryItem.StepLevel", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows")> _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="HistoryItem.StepLevel", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common")> _
|
||||
Public Enum StepLevel As Integer
|
||||
|
||||
<System.Runtime.Serialization.EnumMemberAttribute()> _
|
||||
@@ -506,7 +506,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="StatusItem", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="StatusItem", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class StatusItem
|
||||
Inherits Object
|
||||
@@ -665,7 +665,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="JobDefinition", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="JobDefinition", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class JobDefinition
|
||||
Inherits Object
|
||||
@@ -792,7 +792,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="JobType", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="JobType", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class JobType
|
||||
Inherits Object
|
||||
@@ -871,7 +871,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="ObjectType", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="ObjectType", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class ObjectType
|
||||
Inherits Object
|
||||
@@ -934,7 +934,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="ImportProfile", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="ImportProfile", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class ImportProfile
|
||||
Inherits Object
|
||||
@@ -1189,7 +1189,7 @@ Namespace JobRunnerReference
|
||||
|
||||
<System.Diagnostics.DebuggerStepThroughAttribute(), _
|
||||
System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="ImportProfileStep", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Windows"), _
|
||||
System.Runtime.Serialization.DataContractAttribute(Name:="ImportProfileStep", [Namespace]:="http://schemas.datacontract.org/2004/07/ECM.JobRunner.Common"), _
|
||||
System.SerializableAttribute()> _
|
||||
Partial Public Class ImportProfileStep
|
||||
Inherits Object
|
||||
|
||||
@@ -45,6 +45,7 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.ComponentModel.DataAnnotations" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Runtime.Serialization" />
|
||||
<Reference Include="System.ServiceModel" />
|
||||
@@ -72,6 +73,14 @@
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Constants.vb" />
|
||||
<Compile Include="Models\Jobs\HistoryItem.vb" />
|
||||
<Compile Include="Models\Jobs\JobDefinition.vb" />
|
||||
<Compile Include="Models\Jobs\JobType.vb" />
|
||||
<Compile Include="Models\Jobs\StatusItem.vb" />
|
||||
<Compile Include="Models\Profiles\ImportFile.vb" />
|
||||
<Compile Include="Models\Profiles\ImportProfile.vb" />
|
||||
<Compile Include="Models\Profiles\ImportProfileStep.vb" />
|
||||
<Compile Include="Models\Windream\ObjectType.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
@@ -120,6 +129,9 @@
|
||||
<None Include="Connected Services\JobRunnerReference\ECM.JobRunner.Common.JobRunnerReference.UpdateProfileUpdateProfileResponse.datasource">
|
||||
<DependentUpon>Reference.svcmap</DependentUpon>
|
||||
</None>
|
||||
<None Include="Connected Services\JobRunnerReference\ECM.JobRunner.Common.xsd">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Include="Connected Services\JobRunnerReference\ECM.JobRunner.Windows.xsd">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
|
||||
22
ECM.JobRunner.Common/Models/Jobs/HistoryItem.vb
Normal file
22
ECM.JobRunner.Common/Models/Jobs/HistoryItem.vb
Normal file
@@ -0,0 +1,22 @@
|
||||
Public Class HistoryItem
|
||||
Public Property JobName As String
|
||||
Public Property CreatedAt As DateTime
|
||||
Public Property Successful As Boolean
|
||||
Public Property ErrorMessage As String
|
||||
Public Property Message As String
|
||||
Public Property Steps As List(Of HistoryStep)
|
||||
|
||||
Public Class HistoryStep
|
||||
Public Property Created As Date = Now
|
||||
Public Property Message As String
|
||||
Public Property Level As StepLevel
|
||||
End Class
|
||||
|
||||
Public Enum StepLevel
|
||||
Debug
|
||||
Info
|
||||
Warning
|
||||
[Error]
|
||||
End Enum
|
||||
|
||||
End Class
|
||||
20
ECM.JobRunner.Common/Models/Jobs/JobDefinition.vb
Normal file
20
ECM.JobRunner.Common/Models/Jobs/JobDefinition.vb
Normal file
@@ -0,0 +1,20 @@
|
||||
Imports System.ComponentModel.DataAnnotations
|
||||
|
||||
Public Class JobDefinition
|
||||
<Required>
|
||||
Public Id As Integer = -1
|
||||
|
||||
<Required>
|
||||
Public TypeId As Integer
|
||||
Public Type As JobType
|
||||
|
||||
<Required>
|
||||
<StringLength(250)>
|
||||
Public Name As String
|
||||
|
||||
<Required>
|
||||
<StringLength(250)>
|
||||
Public CronSchedule As String
|
||||
|
||||
Public Active As Boolean
|
||||
End Class
|
||||
5
ECM.JobRunner.Common/Models/Jobs/JobType.vb
Normal file
5
ECM.JobRunner.Common/Models/Jobs/JobType.vb
Normal file
@@ -0,0 +1,5 @@
|
||||
Public Class JobType
|
||||
Public Id As Integer
|
||||
Public Name As String
|
||||
Public Active As Boolean
|
||||
End Class
|
||||
14
ECM.JobRunner.Common/Models/Jobs/StatusItem.vb
Normal file
14
ECM.JobRunner.Common/Models/Jobs/StatusItem.vb
Normal file
@@ -0,0 +1,14 @@
|
||||
Public Class StatusItem
|
||||
Public Const PROGRESS_CURRENT = "__Progress_Current"
|
||||
Public Const PROGRESS_TOTAL = "__Progress_Total"
|
||||
|
||||
Public Id As String
|
||||
Public Name As String
|
||||
Public ExecutionTime As TimeSpan
|
||||
Public ProgressCurrent As Integer
|
||||
Public ProgressTotal As Integer
|
||||
Public Executing As Boolean = False
|
||||
|
||||
Public StartTime As Date
|
||||
Public CompleteTime As Date
|
||||
End Class
|
||||
19
ECM.JobRunner.Common/Models/Profiles/ImportFile.vb
Normal file
19
ECM.JobRunner.Common/Models/Profiles/ImportFile.vb
Normal file
@@ -0,0 +1,19 @@
|
||||
Public Class ImportFile
|
||||
Public Property FilePath As String
|
||||
Public Property FilePathOriginal As String
|
||||
Public Property FilePathWindream As String
|
||||
Public Property FileInfo As IO.FileInfo
|
||||
|
||||
Public Property IndexValues As New List(Of IndexItem)
|
||||
|
||||
Public Class IndexItem
|
||||
Public Value As String
|
||||
Public IndexName As String
|
||||
End Class
|
||||
|
||||
Public Sub New(pFilePath As String)
|
||||
_FilePathOriginal = pFilePath
|
||||
_FilePath = pFilePath
|
||||
_FileInfo = New IO.FileInfo(pFilePath)
|
||||
End Sub
|
||||
End Class
|
||||
18
ECM.JobRunner.Common/Models/Profiles/ImportProfile.vb
Normal file
18
ECM.JobRunner.Common/Models/Profiles/ImportProfile.vb
Normal file
@@ -0,0 +1,18 @@
|
||||
Imports System.ComponentModel.DataAnnotations
|
||||
|
||||
Public Class ImportProfile
|
||||
Public Property Job As New JobDefinition
|
||||
Public Property Active As Boolean
|
||||
Public Property Id As Integer
|
||||
Public Property JobId As Integer
|
||||
Public Property ObjectTypeName As String
|
||||
Public Property ObjectType As ObjectType
|
||||
Public Property SourceFolder As String
|
||||
Public Property TargetFolder As String
|
||||
Public Property BackupFolder As String
|
||||
Public Property SubfolderDateFormat As String
|
||||
Public Property FileExcludeRegex As String
|
||||
Public Property DeleteFiles As Boolean
|
||||
Public Property IncludeSubfolders As Boolean
|
||||
Public Property Steps As New List(Of ImportProfileStep)
|
||||
End Class
|
||||
15
ECM.JobRunner.Common/Models/Profiles/ImportProfileStep.vb
Normal file
15
ECM.JobRunner.Common/Models/Profiles/ImportProfileStep.vb
Normal file
@@ -0,0 +1,15 @@
|
||||
Public Class ImportProfileStep
|
||||
Public Property Active As Boolean
|
||||
Public Property Id As Integer
|
||||
Public Property ProfileId As Integer
|
||||
Public Property IndexName As String
|
||||
|
||||
Public Property Scope As String
|
||||
Public Property Method As String
|
||||
|
||||
Public Property Argument1 As String
|
||||
Public Property Argument2 As String
|
||||
Public Property Argument3 As String
|
||||
End Class
|
||||
|
||||
|
||||
4
ECM.JobRunner.Common/Models/Windream/ObjectType.vb
Normal file
4
ECM.JobRunner.Common/Models/Windream/ObjectType.vb
Normal file
@@ -0,0 +1,4 @@
|
||||
Public Class ObjectType
|
||||
Public Name As String
|
||||
Public Indexes As New List(Of String)
|
||||
End Class
|
||||
Reference in New Issue
Block a user