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

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


        return zoneEntity;
    }

    @Override
    public PodEntity registerPod(String podUuid, String name, String owner, String zoneUuid, List<String> tags, Map<String, String> details) {
        PodEntityImpl podEntity = new PodEntityImpl(podUuid, manager);
        podEntity.setOwner(owner);
        podEntity.setName(name);
        podEntity.persist();
        return podEntity;
    }
View Full Code Here


        zoneEntity.disable();
    }

    @Override
    public void deregisterPod(String uuid) {
        PodEntityImpl podEntity = new PodEntityImpl(uuid, manager);
        podEntity.disable();
    }
View Full Code Here

        return zoneEntity;
    }

    @Override
    public PodEntity registerPod(final String podUuid, final String name, final String owner, final String zoneUuid, final List<String> tags, final Map<String, String> details) {
        PodEntityImpl podEntity = new PodEntityImpl(podUuid, manager);
        podEntity.setOwner(owner);
        podEntity.setName(name);
        podEntity.persist();
        return podEntity;
    }
View Full Code Here

        zoneEntity.disable();
    }

    @Override
    public void deregisterPod(final String uuid) {
        PodEntityImpl podEntity = new PodEntityImpl(uuid, manager);
        podEntity.disable();
    }
View Full Code Here

TOP

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

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.