> +import java.io.Closeable; > +import java.util.Set; > + > +/** > + * Provides synchronous access to Neutron. > + * <p/> > + * > + * @see <a > href="http://docs.openstack.org/api/openstack-network/2.0/content/">api > doc</a> > + */ > +public interface NeutronApi extends Closeable { > + /** > + * @return the Zone codes configured > + */ > + @Provides > + @Zone > + Set<String> getConfiguredZones();
I wonder... Should we use `getConfiguredRegions()` now in an effort to move the OpenStack APIs to use regions? Its one less change to do in the future. WDYT? cc/ @everett-toews --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-openstack/pull/111/files#r15356596
