c8e128e6081e6c10fead6fbd031b7fff28c282c8
[vid.git] / vid-app-common / src / main / java / org / onap / vid / job / impl / JobData.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.job.impl;
22
23 import org.onap.vid.job.JobType;
24
25 import java.util.Map;
26 import java.util.Objects;
27 import java.util.TreeMap;
28
29 public class JobData {
30
31     private TreeMap<JobType, Map<String, Object>> commandData;
32     private JobSharedData sharedData;
33
34     public JobData() {
35         commandData = new TreeMap<>();
36         sharedData = new JobSharedData();
37     }
38
39     public JobData(TreeMap<JobType, Map<String, Object>> commandData, JobSharedData sharedData) {
40         this.commandData = commandData;
41         this.sharedData = sharedData;
42     }
43
44     public TreeMap<JobType, Map<String, Object>> getCommandData() {
45         return commandData;
46     }
47
48     public void setCommandData(TreeMap<JobType, Map<String, Object>> commandData) {
49         this.commandData = commandData;
50     }
51
52     public JobSharedData getSharedData() {
53         return sharedData;
54     }
55
56     public void setSharedData(JobSharedData sharedData) {
57         this.sharedData = sharedData;
58     }
59
60     @Override
61     public boolean equals(Object o) {
62         if (this == o) return true;
63         if (!(o instanceof JobData)) return false;
64         JobData jobData = (JobData) o;
65         return Objects.equals(getCommandData(), jobData.getCommandData()) &&
66                 Objects.equals(getSharedData(), jobData.getSharedData());
67     }
68
69     @Override
70     public int hashCode() {
71
72         return Objects.hash(getCommandData(), getSharedData());
73     }
74 }