summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/main/java/org/openo/sfc/entity/NodeEntity.java
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2017-06-30 14:14:29 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2017-06-30 14:14:29 +0800
commit6346805afd9fcf4c56966751e41ee959391e8788 (patch)
tree2b61b0f39ac1784648edb20aa20f31693725dfb8 /zte/sfc-driver/sfc-driver/src/main/java/org/openo/sfc/entity/NodeEntity.java
parent19f83964f264666ceb26d55043e3f6cd05087257 (diff)
Create seed codes of nfvo
Change-Id: I72a426c6be55f8a6a0200f6dedd2486bee067062 Issue-Id: VFC-52 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'zte/sfc-driver/sfc-driver/src/main/java/org/openo/sfc/entity/NodeEntity.java')
-rw-r--r--zte/sfc-driver/sfc-driver/src/main/java/org/openo/sfc/entity/NodeEntity.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/zte/sfc-driver/sfc-driver/src/main/java/org/openo/sfc/entity/NodeEntity.java b/zte/sfc-driver/sfc-driver/src/main/java/org/openo/sfc/entity/NodeEntity.java
new file mode 100644
index 0000000..80c6700
--- /dev/null
+++ b/zte/sfc-driver/sfc-driver/src/main/java/org/openo/sfc/entity/NodeEntity.java
@@ -0,0 +1,49 @@
+/**
+ * Copyright 2016 [ZTE] and others.
+ *
+ * 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.sfc.entity;
+
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+
+@JsonIgnoreProperties(ignoreUnknown = true)
+public class NodeEntity {
+ private String ip;
+ private String port;
+ private String ttl;
+
+ public String getIp() {
+ return ip;
+ }
+
+ public void setIp(String ip) {
+ this.ip = ip;
+ }
+
+ public String getPort() {
+ return port;
+ }
+
+ public void setPort(String port) {
+ this.port = port;
+ }
+
+ public String getTtl() {
+ return ttl;
+ }
+
+ public void setTtl(String ttl) {
+ this.ttl = ttl;
+ }
+}