Initial TCA commit into DCAEGEN2
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / main / java / org / openecomp / dcae / apod / analytics / common / service / filter / JsonMessageFilterProcessorContext.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
4  * ================================================================================
5  *    Copyright © 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.dcae.apod.analytics.common.service.filter;
22
23 import org.openecomp.dcae.apod.analytics.common.service.processor.AbstractProcessorContext;
24
25 /**
26  * A processor context for Json Message Filter Processor
27  * <p>
28  * @author Rajiv Singla . Creation Date: 2/10/2017.
29  */
30 public class JsonMessageFilterProcessorContext extends AbstractProcessorContext {
31
32     private static final long serialVersionUID = 1L;
33
34     private Boolean isMatched;
35
36     public JsonMessageFilterProcessorContext(final String jsonMessageString) {
37         super(jsonMessageString, true);
38     }
39
40     /**
41      * Returns true if Json Message Filter match was successful
42      *
43      * @return true if Json Message Filter match was successful, false if filter was match was unsuccessful
44      */
45     public Boolean getMatched() {
46         return isMatched;
47     }
48
49     /**
50      * Sets the value for Json Message Filter match
51      *
52      * @param matched new value for json message filter match
53      */
54     public void setMatched(final Boolean matched) {
55         isMatched = matched;
56     }
57 }