re base code
[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
21 package org.openecomp.sdc.be.model;
22
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.OperationDataDefinition;
26 import org.openecomp.sdc.be.datatypes.elements.OperationInputDefinition;
27 import org.openecomp.sdc.be.datatypes.elements.OperationOutputDefinition;
28
29 /**
30  * Defines an operation available to manage particular aspects of the Node Type.
31  * 
32  * @author esofer
33  */
34 public class Operation extends OperationDataDefinition implements IOperationParameter {
35
36
37
38     private boolean definition;
39
40     /**
41      * <p>
42      * Jackson DeSerialization workaround constructor to create an operation
43      * with no arguments.
44      * </p>
45      *
46      * @param emptyString
47      *            The empty string provided by jackson.
48      */
49     public Operation() {
50         super();
51     }
52
53     public Operation(OperationDataDefinition p) {
54         super(p);
55     }
56
57     public Operation(ArtifactDataDefinition implementation, String description,
58                                          ListDataDefinition<OperationInputDefinition> inputs,
59                                          ListDataDefinition<OperationOutputDefinition> outputs) {
60         super(description);
61         setImplementation(implementation);
62         setInputs(inputs);
63                 setOutputs(outputs);
64     }
65
66     @Override
67     public boolean isDefinition() {
68         return false;
69     }
70
71     public void setDefinition(boolean definition) {
72         this.definition = definition;
73     }
74
75     @Override
76     public String toString() {
77         return "Operation [definition=" + definition + "]";
78     }
79
80     public ArtifactDefinition getImplementationArtifact(){
81         if ( getImplementation() != null ){
82             return new ArtifactDefinition(getImplementation());
83         }
84         return null;
85     }
86 }