Test many POJOs getters/setters
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / Workflow.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 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.onap.vid.model;
22
23
24 import java.util.Collection;
25
26 public class Workflow {
27     //Private members:
28     private int id;
29     private String workflowName;
30     private Collection<String> vnfNames;
31
32
33     //Constructors:
34     public Workflow() {}
35
36     public Workflow(int id, String workflowName, Collection<String> vnfNames) {
37         this.id = id;
38         this.workflowName = workflowName;
39         this.vnfNames = vnfNames;
40     }
41
42
43     //Setters and getters:
44     public int getId() {
45         return id;
46     }
47
48     public String getWorkflowName() {
49         return workflowName;
50     }
51
52     public Collection<String> getVnfNames() {
53         return this.vnfNames;
54     }
55
56     public void setId(int id) {
57         this.id = id;
58     }
59
60     public void setWorkflowName(String workflowName) {
61         this.workflowName = workflowName;
62     }
63
64     public void setVnfNames(Collection<String> vnfNames) {
65         this.vnfNames = vnfNames;
66     }
67 }