Removed wildcard from getAttachInterfaceApi and fixed formatting

This commit is contained in:
Jeremy Daggett 2015-02-11 09:42:22 -08:00
parent a356ca9991
commit 59fc23249f
2 changed files with 7 additions and 8 deletions

View File

@ -274,12 +274,12 @@ public interface NovaApi extends Closeable {
Optional<FloatingIPPoolApi> getFloatingIPPoolApi(
@EndpointParam(parser = RegionToEndpoint.class) String region);
/**
* Provides access to attach interface features.
*/
@Delegate
Optional<? extends AttachInterfaceApi> getAttachInterfaceApi(
@EndpointParam(parser = RegionToEndpoint.class) String region);
/**
* Provides access to attach interface features.
*/
@Delegate
Optional<AttachInterfaceApi> getAttachInterfaceApi(
@EndpointParam(parser = RegionToEndpoint.class) String region);
/**
* @return the Zone codes configured

View File

@ -117,10 +117,9 @@ public final class ExtensionNamespaces {
* Floating IP pools support
*/
public static final String FLOATING_IP_POOLS = "http://docs.openstack.org/ext/floating_ip_pools/api/v1.1";
/**
* Attach interfaces extension
*/
*/
public static final String ATTACH_INTERFACES = "http://docs.openstack.org/compute/ext/interfaces/api/v1.1";
private ExtensionNamespaces() {