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();
}