2d5bca7da3c08c73829b3ceee0cf5e9ef0ddd0fd
[dcaegen2/platform.git] / mod / bpgenerator / onap / src / main / java / org / onap / blueprintgenerator / model / common / GetAttribute.java
1
2 /*
3  *
4  *  * ============LICENSE_START=======================================================
5  *  *  org.onap.dcae
6  *  *  ================================================================================
7  *  *  Copyright (c) 2020  AT&T Intellectual Property. All rights reserved.
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  *  *  ============LICENSE_END=========================================================
21  *
22  *
23  */
24
25 package org.onap.blueprintgenerator.model.common;
26
27 import com.fasterxml.jackson.annotation.JsonProperty;
28 import lombok.Data;
29
30 /**
31  * @author : Ravi Mantena
32  * @date 10/16/2020
33  * Application: ONAP - Blueprint Generator
34  * ONAP Common Model used by both ONAP and DMAAP: Get Attribute
35  */
36
37
38 @Data
39 public class GetAttribute {
40
41     @JsonProperty("get_attribute")
42     private Object attribute;
43
44 }