summaryrefslogtreecommitdiffstats
path: root/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereEntity.java
diff options
context:
space:
mode:
Diffstat (limited to 'vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereEntity.java')
-rw-r--r--vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereEntity.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereEntity.java b/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereEntity.java
new file mode 100644
index 0000000..809fd78
--- /dev/null
+++ b/vesagent/src/main/java/org/onap/multicloud/openstack/vmware/VsphereEntity.java
@@ -0,0 +1,59 @@
+ /* 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 VsphereEntity {
+ private String VsphereServerName;
+ private String VsphereUsername;
+ private String VsperePassword;
+ private String VsphereVMname;
+ private String PathVspherePython;
+ private String PythonOutputJson;
+
+ public String getVsphereUsername() {
+ return VsphereUsername;
+ }
+
+ public void setVsphereUsername(String vsphereUsername) {
+ this.VsphereUsername = vsphereUsername;
+ }
+
+ public String getPythonOutputJson() {
+ return PythonOutputJson;
+ }
+ public void setPythonOutputJson(String pythonOutputJson) {
+ PythonOutputJson = pythonOutputJson;
+ }
+ public String getPathVspherePython() {
+ return PathVspherePython;
+ }
+ public void setPathVspherePython(String pathVspherePython) {
+ PathVspherePython = pathVspherePython;
+ }
+ public String getVsperePassword() {
+ return VsperePassword;
+ }
+ public void setVsperePassword(String vsperePassword) {
+ VsperePassword = vsperePassword;
+ }
+ public void setVsphereVMname(String vsphereVMname) {
+ VsphereVMname = vsphereVMname;
+ }
+ public String getVsphereServerName() {
+ return VsphereServerName;
+ }
+ public void setVsphereServerName(String vsphereServerName) {
+ VsphereServerName = vsphereServerName;
+ }
+}