Backend support for operation milestones with activities
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / Operation.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.openecomp.sdc.be.model;
21
22 import java.util.Map;
23 import org.openecomp.sdc.be.datatypes.elements.ArtifactDataDefinition;
24 import org.openecomp.sdc.be.datatypes.elements.ListDataDefinition;
25 import org.openecomp.sdc.be.datatypes.elements.MilestoneDataDefinition;
26 import org.openecomp.sdc.be.datatypes.elements.OperationDataDefinition;
27 import org.openecomp.sdc.be.datatypes.elements.OperationInputDefinition;
28 import org.openecomp.sdc.be.datatypes.elements.OperationOutputDefinition;
29 import org.openecomp.sdc.be.datatypes.enums.MilestoneTypeEnum;
30
31 /**
32  * Defines an operation available to manage particular aspects of the Node Type.
33  *
34  * @author esofer
35  */
36 public class Operation extends OperationDataDefinition implements IOperationParameter {
37
38     private boolean definition;
39
40     /**
41      * <p>
42      * Jackson DeSerialization workaround constructor to create an operation with no arguments.
43      * </p>
44      */
45     public Operation() {
46         super();
47     }
48
49     public Operation(OperationDataDefinition p) {
50         super(p);
51     }
52
53     public Operation(ArtifactDataDefinition implementation, String description, ListDataDefinition<OperationInputDefinition> inputs,
54                      ListDataDefinition<OperationOutputDefinition> outputs, Map<String, MilestoneDataDefinition> milestones) {
55         super(description);
56         setImplementation(implementation);
57         setInputs(inputs);
58         setOutputs(outputs);
59         setMilestones(milestones);
60     }
61
62     @Override
63     public boolean isDefinition() {
64         return false;
65     }
66
67     public void setDefinition(boolean definition) {
68         this.definition = definition;
69     }
70
71     @Override
72     public String toString() {
73         return "Operation [definition=" + definition + "]";
74     }
75
76     public ArtifactDefinition getImplementationArtifact() {
77         if (getImplementation() != null) {
78             return new ArtifactDefinition(getImplementation());
79         }
80         return null;
81     }
82 }