Package org.apache.cloudstack.engine.datacenter.entity.api

Examples of org.apache.cloudstack.engine.datacenter.entity.api.ZoneEntity.disable()


    }

    @POST @Path("/zone/{zone-id}/disable")
    public String disable(@PathParam("zone-id") String zoneId) {
        ZoneEntity zoneEntity = _provisioningService.getZone(zoneId);
        zoneEntity.disable();
        return null;
    }

    @POST @Path("/zone/{zone-id}/deactivate")
    public String deactivate(@PathParam("zone-id") String zoneId) {
View Full Code Here


    @POST
    @Path("/zone/{zone-id}/disable")
    public String disable(@PathParam("zone-id") String zoneId) {
        ZoneEntity zoneEntity = _provisioningService.getZone(zoneId);
        zoneEntity.disable();
        return null;
    }

    @POST
    @Path("/zone/{zone-id}/deactivate")
View Full Code Here

    }

    @POST @Path("/zone/{zone-id}/disable")
    public String disable(@PathParam("zone-id") String zoneId) {
        ZoneEntity zoneEntity = _provisioningService.getZone(zoneId);
        zoneEntity.disable();
        return null;
    }

    @POST @Path("/zone/{zone-id}/deactivate")
    public String deactivate(@PathParam("zone-id") String zoneId) {
View Full Code Here

    }

    @POST @Path("/zone/{zone-id}/disable")
    public String disable(@PathParam("zone-id") String zoneId) {
        ZoneEntity zoneEntity = _provisioningService.getZone(zoneId);
        zoneEntity.disable();
        return null;
    }

    @POST @Path("/zone/{zone-id}/deactivate")
    public String deactivate(@PathParam("zone-id") String zoneId) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.