aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-core/catalog-mgr/src/main/java/org/openo/commontosca/catalog/model/parser/yaml/yamlmodel/EntrySchema.java
diff options
context:
space:
mode:
authorYuanHu <yuan.hu1@zte.com.cn>2016-09-30 11:46:32 +0800
committerYuanHu <yuan.hu1@zte.com.cn>2016-09-30 11:46:32 +0800
commit959c15db300c39b10ccab1df41496118b6df8eac (patch)
tree5c79e6fbc599b76deecc3af9dd231de8ae244bcd /catalog-core/catalog-mgr/src/main/java/org/openo/commontosca/catalog/model/parser/yaml/yamlmodel/EntrySchema.java
parentcee5085e4a3868d1dabfed4d032a7446ea49fee9 (diff)
Parse Plan information from our own alone file. Definitions/plans.yaml
Change-Id: Ic300ff92bc8063cad33a372f3f31ecc5941c3b1a Signed-off-by: YuanHu <yuan.hu1@zte.com.cn>
Diffstat (limited to 'catalog-core/catalog-mgr/src/main/java/org/openo/commontosca/catalog/model/parser/yaml/yamlmodel/EntrySchema.java')
-rw-r--r--catalog-core/catalog-mgr/src/main/java/org/openo/commontosca/catalog/model/parser/yaml/yamlmodel/EntrySchema.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/catalog-core/catalog-mgr/src/main/java/org/openo/commontosca/catalog/model/parser/yaml/yamlmodel/EntrySchema.java b/catalog-core/catalog-mgr/src/main/java/org/openo/commontosca/catalog/model/parser/yaml/yamlmodel/EntrySchema.java
new file mode 100644
index 00000000..42542c6d
--- /dev/null
+++ b/catalog-core/catalog-mgr/src/main/java/org/openo/commontosca/catalog/model/parser/yaml/yamlmodel/EntrySchema.java
@@ -0,0 +1,42 @@
+/**
+ * Copyright 2016 ZTE Corporation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.openo.commontosca.catalog.model.parser.yaml.yamlmodel;
+
+/**
+ * @author 10090474
+ *
+ */
+public class EntrySchema {
+ private String type = "";
+
+ public EntrySchema() {
+
+ }
+
+ public EntrySchema(String type) {
+ super();
+ this.type = type;
+ }
+
+ public String getType() {
+ return type;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+
+}