Examples of unmanage()


Examples of brooklyn.management.LocationManager.unmanage()

        DockerLocation location = getDynamicLocation();

        if (location != null) {
            LocationManager mgr = getManagementContext().getLocationManager();
            if (mgr.isManaged(location)) {
                mgr.unmanage(location);
            }
        }

        setAttribute(DYNAMIC_LOCATION, null);
        setAttribute(LOCATION_NAME, null);
View Full Code Here

Examples of brooklyn.management.LocationManager.unmanage()

        DockerContainerLocation location = getDynamicLocation();

        if (location != null) {
            LocationManager mgr = getManagementContext().getLocationManager();
            if (mgr.isManaged(location)) {
                mgr.unmanage(location);
            }
        }

        setAttribute(DYNAMIC_LOCATION, null);
        setAttribute(LOCATION_NAME, null);
View Full Code Here

Examples of brooklyn.management.LocationManager.unmanage()

        DockerHostLocation location = getDynamicLocation();

        if (location != null) {
            LocationManager mgr = getManagementContext().getLocationManager();
            if (mgr.isManaged(location)) {
                mgr.unmanage(location);
            }
            if (getConfig(DockerInfrastructure.REGISTER_DOCKER_HOST_LOCATIONS)) {
                getManagementContext().getLocationRegistry().removeDefinedLocation(location.getId());
            }
        }
View Full Code Here

Examples of org.eclipse.team.internal.ccvs.core.ICVSResource.unmanage()

     *             the evolizer exception
     */
    public void unshareResource(IResource resource) throws EvolizerException {
        ICVSResource cvsResource = CVSWorkspaceRoot.getCVSResourceFor(resource);
        try {
            cvsResource.unmanage(new NullProgressMonitor());
        } catch (CVSException e) {
            throw new EvolizerException("Cannot unshare resource", e);
        }
    }

View Full Code Here

Examples of org.jclouds.management.ManagementContext.unmanage()

      managementContext.register(anyObject(Compute.class));
      expectLastCall().once();
      managementContext.manage(anyObject(ComputeManagement.class), eq("testname"));
      expectLastCall().once();
      managementContext.unmanage(anyObject(ComputeManagement.class), eq("testname"));
      expectLastCall().once();
      managementContext.unregister(anyObject(Compute.class));
      expectLastCall().once();
      replay(managementContext);
View Full Code Here

Examples of org.jclouds.management.ManagementContext.unmanage()

      managementContext.register(anyObject(Compute.class));
      expectLastCall().once();
      managementContext.manage(anyObject(ComputeManagement.class), eq("testname"));
      expectLastCall().once();
      managementContext.unmanage(anyObject(ComputeManagement.class), eq("testname"));
      expectLastCall().once();
      managementContext.unregister(anyObject(Compute.class));
      expectLastCall().once();
      replay(managementContext);
View Full Code Here

Examples of org.tigris.subversion.subclipse.core.ISVNLocalFolder.unmanage()

            try {
                monitor = monitor == null ? new NullProgressMonitor() : monitor;
                monitor.beginTask("Disconnecting " + project.getName()
                    + " from SVN", 1);
                if (deleteContent) {
                    folder.unmanage(monitor);
                    project.refreshLocal(IResource.DEPTH_INFINITE, monitor);
                }
                monitor.worked(1);
            } catch (SVNException e) {
                undocumentedException(e);
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.