Update Master to include jar folder.
[music.git] / jar / 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 package org.onap.music.main;
23
24 /**
25  * 
26  *
27  */
28 public class MusicDigest {
29     private String evPutStatus;
30     private String vectorTs;
31
32     /**
33      * @param evPutStatus
34      * @param vectorTs
35      */
36     public MusicDigest(String evPutStatus, String vectorTs) {
37         this.evPutStatus = evPutStatus;
38         this.vectorTs = vectorTs;
39     }
40
41     /**
42      * @return
43      */
44     public String getEvPutStatus() {
45         return evPutStatus;
46     }
47
48     /**
49      * @param evPutStatus
50      */
51     public void setEvPutStatus(String evPutStatus) {
52         this.evPutStatus = evPutStatus;
53     }
54
55     /**
56      * @return
57      */
58     public String getVectorTs() {
59         return vectorTs;
60     }
61
62     /**
63      * @param vectorTs
64      */
65     public void setVectorTs(String vectorTs) {
66         this.vectorTs = vectorTs;
67     }
68
69     /*
70      * (non-Javadoc)
71      * 
72      * @see java.lang.Object#toString()
73      */
74     public String toString() {
75         return vectorTs + "|" + evPutStatus;
76     }
77 }
78