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

org.openstack4j.model.network.Pool Maven / Gradle / Ivy

package org.openstack4j.model.network;

import org.openstack4j.model.ModelEntity;

/**
 * An IP Address Pool which has a starting network and a ending network which becomes a pool of addresses
 * 
 * @author Jeremy Unruh
 */
public interface Pool extends ModelEntity {

	/**
	 * @return the starting IP
	 */
	String getStart();
	
	/**
	 * @return the ending IP
	 */
	String getEnd();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy