Third part of onap rename
[appc.git] / appc-event-listener / appc-event-listener-bundle / src / main / java / org / onap / appc / listener / demo / model / IncomingMessage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.appc.listener.demo.model;
26
27 import com.fasterxml.jackson.annotation.JsonIgnore;
28 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
29 import com.fasterxml.jackson.annotation.JsonProperty;
30 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
31 import com.fasterxml.jackson.databind.annotation.JsonSerialize.Inclusion;
32
33 /**
34  * This class represents a message coming in from DCAE.
35  *
36  */
37 @JsonSerialize(include = Inclusion.NON_NULL)
38 @JsonIgnoreProperties(ignoreUnknown = true)
39 public class IncomingMessage extends CommonMessage {
40
41     private static final long serialVersionUID = 1L;
42
43     /*
44      * The action being requested. Its presence signals that it is an incoming message and it is not present on outgoing
45      * messages
46      */
47     //TODO; use enum
48     @JsonProperty("Action")
49     private String action;
50
51
52     public String getRequest() {
53         return action;
54     }
55
56     @JsonIgnore
57     public Action getAction() {
58         return Action.toAction(action);
59     }
60
61     public void setRequest(String request) {
62         this.action = request;
63     }
64
65 //    @Override
66 //    public String toString() {
67 //        String time = getRequestTime() != null ? getRequestTime() : "N/A";
68 //        // String req = request != null ? request : "N/A";
69 //        return String.format("[%s - %s]", time, getId());
70 //    }
71
72 //    public String toOutgoing(Status status) {
73 //        return toOutgoing(status);
74 //    }
75
76     public String toOutgoing(Status status) {
77         OutgoingMessage out = new OutgoingMessage(this);
78         out.setResponse(status);
79         return out.toResponse().toString();
80     }
81
82     /**
83      * Determines if this message should be parsed parsed. Will eventually check that the message is well formed, has
84      * all required fields, and had not exceeded any timing restrictions.
85      *
86      * @return True if the message should be parsed. False otherwise
87      */
88     public boolean isValid() {
89         return true;
90     }
91 }