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

org.openstack4j.model.network.ext.Member Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package org.openstack4j.model.network.ext;

import org.openstack4j.common.Buildable;
import org.openstack4j.model.ModelEntity;
import org.openstack4j.model.network.ext.builder.MemberBuilder;
/**
 * A member of a Lbaas pool
 * @author liujunpeng
 */
public interface Member extends ModelEntity, Buildable {

	/**
	 * 
	 * @return status The status of the member. Indicates whether the member is
	 *         operational.
	 */
	public String getStatus();

	/**
	 * @return address the IP address of a member
	 */
	public String getAddress();

	/**
	 * 
	 * @return The administrative state of the member, which is up (true) or
	 *         down (false).
	 */
	public boolean isAdminStateUp();

	/**
	 *
	 * @return the id of a tenant. Owner of the member.
	 */
	public String getTenantId();

	/**
	 * 
	 * @return the member identifier
	 */
	public String getId();

	/**
	 *
	 * @return The port on which the application is hosted.such as 80
	 */
	public Integer getProtocolPort();

	/**
	 * 
	 * @return Weight of member.1~256
	 */
	public Integer getWeight();

	/**
	 * @return The Loadbalance pool identifier
	 */
	public String getPoolId();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy