Package org.apache.stratos.rest.endpoint.bean.topology

Examples of org.apache.stratos.rest.endpoint.bean.topology.Cluster


    @Path("/cluster/clusterId/{clusterId}")
    @Produces("application/json")
    @Consumes("application/json")
    @AuthorizationAction("/permission/protected/manage/monitor/tenants")
    public Cluster getCluster(@PathParam("clusterId") String clusterId) throws RestAPIException {
      Cluster cluster = null;
      if(log.isDebugEnabled()) {
        log.debug("Finding the Cluster for [id]: "+clusterId);
      }
        Cluster[] clusters = ServiceUtils.getClustersForTenant(getConfigContext());
        if(log.isDebugEnabled()) {
View Full Code Here

TOP

Related Classes of org.apache.stratos.rest.endpoint.bean.topology.Cluster

Copyright © 2018 www.massapicom. 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.