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

com.softlayer.api.service.container.remotemanagement.PmInfo Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package com.softlayer.api.service.container.remotemanagement;

import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;

/**
 * The SoftLayer_Container_RemoteManagement_PmInfo contains pminfo information retrieved from a server's remote management card. 
 *
 * @see SoftLayer_Container_RemoteManagement_PmInfo
 */
@ApiType("SoftLayer_Container_RemoteManagement_PmInfo")
public class PmInfo extends Entity {

    /**
     * PmInfo ID
     */
    @ApiProperty(canBeNullOrNotSet = true)
    protected String pmInfoId;

    public String getPmInfoId() {
        return pmInfoId;
    }

    public void setPmInfoId(String pmInfoId) {
        pmInfoIdSpecified = true;
        this.pmInfoId = pmInfoId;
    }

    protected boolean pmInfoIdSpecified;

    public boolean isPmInfoIdSpecified() {
        return pmInfoIdSpecified;
    }

    public void unsetPmInfoId() {
        pmInfoId = null;
        pmInfoIdSpecified = false;
    }

    /**
     * PmInfo Reading
     */
    @ApiProperty(canBeNullOrNotSet = true)
    protected String pmInfoReading;

    public String getPmInfoReading() {
        return pmInfoReading;
    }

    public void setPmInfoReading(String pmInfoReading) {
        pmInfoReadingSpecified = true;
        this.pmInfoReading = pmInfoReading;
    }

    protected boolean pmInfoReadingSpecified;

    public boolean isPmInfoReadingSpecified() {
        return pmInfoReadingSpecified;
    }

    public void unsetPmInfoReading() {
        pmInfoReading = null;
        pmInfoReadingSpecified = false;
    }

    public static class Mask extends com.softlayer.api.service.Entity.Mask {

        public Mask pmInfoId() {
            withLocalProperty("pmInfoId");
            return this;
        }

        public Mask pmInfoReading() {
            withLocalProperty("pmInfoReading");
            return this;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy