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

org.openstack4j.model.network.ext.VipUpdate 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.VipUpdateBuilder;

/**
 * An entity used to update a vip
 * 
 * @author liujunpeng
 */
public interface VipUpdate extends ModelEntity, Buildable {
	/**
	 * Optional
	 * 
	 * @see Vip#isAdminStateUp()
	 */
	public boolean isAdminStateUp();

	/**
	 * Optional
	 * 
	 * @see Vip#getConnectionLimit()
	 */
	public Integer getConnectionLimit();

	/**
	 * Optional
	 * 
	 * @see Vip#getDescription()
	 */
	public String getDescription();

	/**
	 * Optional
	 * 
	 * @see Vip#getName()
	 */
	public String getName();

	/**
	 * Optional
	 * 
	 * @see Vip#getPoolId()
	 */
	public String getPoolId();

	/**
	 * Optional
	 * 
	 * @see Vip#getSessionPersistence()
	 */
	public SessionPersistence getSessionPersistence();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy