All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmware.vim25.HostIpmiInfo Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for HostIpmiInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="HostIpmiInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="bmcIpAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="bmcMacAddress" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="login" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostIpmiInfo", propOrder = { "bmcIpAddress", "bmcMacAddress", "login", "password" }) public class HostIpmiInfo extends DynamicData { protected String bmcIpAddress; protected String bmcMacAddress; protected String login; protected String password; /** * Gets the value of the bmcIpAddress property. * * @return * possible object is * {@link String } * */ public String getBmcIpAddress() { return bmcIpAddress; } /** * Sets the value of the bmcIpAddress property. * * @param value * allowed object is * {@link String } * */ public void setBmcIpAddress(String value) { this.bmcIpAddress = value; } /** * Gets the value of the bmcMacAddress property. * * @return * possible object is * {@link String } * */ public String getBmcMacAddress() { return bmcMacAddress; } /** * Sets the value of the bmcMacAddress property. * * @param value * allowed object is * {@link String } * */ public void setBmcMacAddress(String value) { this.bmcMacAddress = value; } /** * Gets the value of the login property. * * @return * possible object is * {@link String } * */ public String getLogin() { return login; } /** * Sets the value of the login property. * * @param value * allowed object is * {@link String } * */ public void setLogin(String value) { this.login = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy