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

com.softlayer.api.service.hardware.component.RemoteManagement Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
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);
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy