com.softlayer.api.service.hardware.component.RemoteManagement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
package com.softlayer.api.service.hardware.component;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.network.Component;
/**
* This class adds functionality to the base SoftLayer_Hardware class for web servers (all server hardware)
*
* @see SoftLayer_Hardware_Component_RemoteManagement
*/
@ApiType("SoftLayer_Hardware_Component_RemoteManagement")
public class RemoteManagement extends com.softlayer.api.service.hardware.Component {
/**
* A network component data type.
*/
@ApiProperty
protected Component networkComponent;
public Component getNetworkComponent() {
return networkComponent;
}
public void setNetworkComponent(Component networkComponent) {
this.networkComponent = networkComponent;
}
public static class Mask extends com.softlayer.api.service.hardware.Component.Mask {
public com.softlayer.api.service.network.Component.Mask networkComponent() {
return withSubMask("networkComponent", com.softlayer.api.service.network.Component.Mask.class);
}
}
}