com.github.narcissujsk.openstackjsk.model.compute.Address Maven / Gradle / Ivy
The newest version!
package com.github.narcissujsk.openstackjsk.model.compute;
import com.github.narcissujsk.openstackjsk.model.ModelEntity;
/**
* Represents an IP Address
*
* @author Jeremy Unruh
*/
public interface Address extends ModelEntity {
/**
* @return the macaddress for the address
*/
String getMacAddr();
/**
* @return the IP version (4 | 6)
*/
int getVersion();
/**
* @return the IP Address
*/
String getAddr();
/**
* @return the type of address
*/
String getType();
}