fb70231fb2d8540423972546cb5b8772ecfce00f
[clamp.git] / src / main / java / org / onap / clamp / clds / tosca / update / MetadataParser.java
1
2 /*-
3  * ============LICENSE_START=======================================================
4  * ONAP CLAMP
5  * ================================================================================
6  * Copyright (C) 2020 AT&T Intellectual Property. All rights
7  *                             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.clamp.clds.tosca.update;
26
27 import com.google.gson.JsonObject;
28 import org.onap.clamp.tosca.DictionaryService;
29
30 public class MetadataParser {
31
32     /**
33      * This method is used to start the processing of the metadata field.
34      *
35      * @param property          The property metadata as Json Object
36      * @param dictionaryService the Dictionary service, if null nothing will be done
37      * @return The jsonObject structure that must be added to the json schema
38      */
39     public static JsonObject processAllMetadataElement(Property property, DictionaryService dictionaryService) {
40         if (dictionaryService != null) {
41             return null;
42         } else {
43             return null;
44         }
45     }
46 }