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

com.softlayer.api.service.network.lbaas.LoadBalancerHealthMonitorConfiguration Maven / Gradle / Ivy

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

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

/**
 * SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration specifies the check method to be used for health monitoring backend members. 
 *
 * @see SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration
 */
@ApiType("SoftLayer_Network_LBaaS_LoadBalancerHealthMonitorConfiguration")
public class LoadBalancerHealthMonitorConfiguration extends Entity {

    /**
     * Backends port
     */
    @ApiProperty(canBeNullOrNotSet = true)
    protected Long backendPort;

    public Long getBackendPort() {
        return backendPort;
    }

    public void setBackendPort(Long backendPort) {
        backendPortSpecified = true;
        this.backendPort = backendPort;
    }

    protected boolean backendPortSpecified;

    public boolean isBackendPortSpecified() {
        return backendPortSpecified;
    }

    public void unsetBackendPort() {
        backendPort = null;
        backendPortSpecified = false;
    }

    /**
     * <




© 2015 - 2024 Weber Informatics LLC | Privacy Policy