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

org.openstack4j.model.compute.Address Maven / Gradle / Ivy

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

import org.openstack4j.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();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy