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

Examples of org.apache.cloudstack.engine.datacenter.entity.api.ClusterEntityImpl


        return podEntity;
    }

    @Override
    public ClusterEntity registerCluster(String clusterUuid, String name, String owner, List<String> tags, Map<String, String> details) {
        ClusterEntityImpl clusterEntity = new ClusterEntityImpl(clusterUuid, manager);
        clusterEntity.setOwner(owner);
        clusterEntity.setName(name);
        clusterEntity.persist();
        return clusterEntity;
    }
View Full Code Here


        podEntity.disable();
    }

    @Override
    public void deregisterCluster(String uuid) {
        ClusterEntityImpl clusterEntity = new ClusterEntityImpl(uuid, manager);
        clusterEntity.disable();

    }
View Full Code Here

        return podEntity;
    }

    @Override
    public ClusterEntity registerCluster(final String clusterUuid, final String name, final String owner, final List<String> tags, final Map<String, String> details) {
        ClusterEntityImpl clusterEntity = new ClusterEntityImpl(clusterUuid, manager);
        clusterEntity.setOwner(owner);
        clusterEntity.setName(name);
        clusterEntity.persist();
        return clusterEntity;
    }
View Full Code Here

        podEntity.disable();
    }

    @Override
    public void deregisterCluster(final String uuid) {
        ClusterEntityImpl clusterEntity = new ClusterEntityImpl(uuid, manager);
        clusterEntity.disable();

    }
View Full Code Here

TOP

Related Classes of org.apache.cloudstack.engine.datacenter.entity.api.ClusterEntityImpl

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.