Merge "Update Version to Snapshot and"
[music.git] / src / main / java / org / onap / music / main / MusicDigest.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
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  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.main;
24
25 /**
26  * 
27  *
28  */
29 public class MusicDigest {
30     private String evPutStatus;
31     private String vectorTs;
32
33     /**
34      * @param evPutStatus
35      * @param vectorTs
36      */
37     public MusicDigest(String evPutStatus, String vectorTs) {
38         this.evPutStatus = evPutStatus;
39         this.vectorTs = vectorTs;
40     }
41
42     /**
43      * @return
44      */
45     public String getEvPutStatus() {
46         return evPutStatus;
47     }
48
49     /**
50      * @param evPutStatus
51      */
52     public void setEvPutStatus(String evPutStatus) {
53         this.evPutStatus = evPutStatus;
54     }
55
56     /**
57      * @return
58      */
59     public String getVectorTs() {
60         return vectorTs;
61     }
62
63     /**
64      * @param vectorTs
65      */
66     public void setVectorTs(String vectorTs) {
67         this.vectorTs = vectorTs;
68     }
69
70     /*
71      * (non-Javadoc)
72      * 
73      * @see java.lang.Object#toString()
74      */
75     public String toString() {
76         return vectorTs + "|" + evPutStatus;
77     }
78 }
79