Examples of restoreVersion()


Examples of net.sf.archimede.model.folder.FolderDao.restoreVersion()

    }
   
    public String restoreVersion() {
        FolderDao folderDao = FolderDao.createInstance();
        CustomTreeNode ctn = (CustomTreeNode) this.versionsTreeModel.getNode();
        folderDao.restoreVersion((Folder) ctn.getContent());
       
        //TODO faire une méthode refreshState()
        Folder folder = folderDao.retrieve(this.selectedFolder.getId());
        this.selectedFolder = new ViewFolder(folder);
        this.metadataTreeModel = getMetadataTreeNode();
View Full Code Here

Examples of org.dspace.versioning.VersioningService.restoreVersion()

        try
        {

            VersioningService versioningService = new DSpace()
                    .getSingletonService(VersioningService.class);
            versioningService.restoreVersion(context, versionID, summary);

            context.commit();

        }
        catch (Exception ex)
View Full Code Here

Examples of org.dspace.versioning.VersioningService.restoreVersion()

        FlowResult result = new FlowResult();
        try {
            result.setContinue(false);

            VersioningService versioningService = new DSpace().getSingletonService(VersioningService.class);
            versioningService.restoreVersion(context, versionID, summary);

            context.commit();

            result.setOutcome(true);
            result.setContinue(true);
View Full Code Here

Examples of org.wso2.carbon.registry.resource.ui.clients.ResourceServiceClient.restoreVersion()

                getSession().getAttribute(ServerConstants.ADMIN_SERVICE_COOKIE);

        try {
            ResourceServiceClient client =
                    new ResourceServiceClient(cookie, config, request.getSession());
            client.restoreVersion(versionPath);

        } catch (Exception e) {
            String msg = "Failed to restore the resource " + versionPath + ". " + e.getMessage();
            log.error(msg, e);
            throw new UIException(msg, 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.