summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/operation.ts
diff options
context:
space:
mode:
authorArielk <Ariel.Kenan@amdocs.com>2019-04-21 16:07:44 +0300
committerAvi Gaffa <avi.gaffa@amdocs.com>2019-04-22 12:07:46 +0000
commitc21ba95e56f70ba9fbe0daa3ac4b413424b323eb (patch)
tree5158a77b0cc7d42c0c3f91ddf64473995494db6c /catalog-ui/src/app/models/operation.ts
parentcaa3ce9b5538a7ff2e72ae4f1afe3e903ae09c8a (diff)
bug fixes to operation screen and External workflowartifact completion
Change-Id: I9d71385d6e29e1736a24f9d84581e465187e9f26 Issue-ID: SDC-2249 Signed-off-by: Arielk <Ariel.Kenan@amdocs.com>
Diffstat (limited to 'catalog-ui/src/app/models/operation.ts')
-rw-r--r--catalog-ui/src/app/models/operation.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/catalog-ui/src/app/models/operation.ts b/catalog-ui/src/app/models/operation.ts
index d9d0858870..7b0039b184 100644
--- a/catalog-ui/src/app/models/operation.ts
+++ b/catalog-ui/src/app/models/operation.ts
@@ -6,7 +6,7 @@ export class OperationParameter {
inputId: string;
required: boolean;
- constructor(param?: OperationParameter) {
+ constructor(param?: any) {
if (param) {
this.name = param.name;
this.type = param.type;
@@ -24,6 +24,7 @@ export class WORKFLOW_ASSOCIATION_OPTIONS {
static NONE = 'NONE';
static NEW = 'NEW';
static EXISTING = 'EXISTING';
+ static EXTERNAL = 'EXTERNAL';
}
export class BEOperationModel {
@@ -75,6 +76,8 @@ export class BEOperationModel {
export class OperationModel extends BEOperationModel {
interfaceType: string;
interfaceId: string;
+ artifactFile: any;
+ artifactData: any;
constructor(operation?: any) {
super(operation);