summaryrefslogtreecommitdiffstats
path: root/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereDataEntity.java
diff options
context:
space:
mode:
Diffstat (limited to 'vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereDataEntity.java')
-rw-r--r--vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereDataEntity.java45
1 files changed, 45 insertions, 0 deletions
diff --git a/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereDataEntity.java b/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereDataEntity.java
new file mode 100644
index 0000000..2e747ba
--- /dev/null
+++ b/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereDataEntity.java
@@ -0,0 +1,45 @@
+ /* Copyright (c) 2017 VMware, Inc.
+ *
+ * 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.
+ */
+
+package org.onap.multicloud.openstack.vmware;
+
+public class VsphereDataEntity {
+ private String sourceName;
+ private String sourceType;
+ private String sourceId;
+ private String status;
+ public String getSourceName() {
+ return sourceName;
+ }
+ public void setSourceName(String sourceName) {
+ this.sourceName = sourceName;
+ }
+ public String getSourceType() {
+ return sourceType;
+ }
+ public void setSourceType(String sourceType) {
+ this.sourceType = sourceType;
+ }
+ public String getSourceId() {
+ return sourceId;
+ }
+ public void setSourceId(String sourceId) {
+ this.sourceId = sourceId;
+ }
+ public String getStatus() {
+ return status;
+ }
+ public void setStatus(String status) {
+ this.status = status;
+ }
+}