> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +package org.jclouds.shipyard;
> +
> +import org.jclouds.rest.annotations.Delegate;
> +import org.jclouds.shipyard.features.ContainersApi;
> +import org.jclouds.shipyard.features.EnginesApi;
> +import org.jclouds.shipyard.features.ImagesApi;
> +
> +import java.io.Closeable;
> +
> +public interface ShipyardApi extends Closeable {
> +
> + @Delegate
> + ContainersApi getContainersApi();
Prefer a naming like `containersApi()` for delegate apis.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/116/files#r21861836