Package eu.planets_project.pp.plato.services.action

Examples of eu.planets_project.pp.plato.services.action.IPreservationAction


        if (!a.isExecutable()) {
            // this alternative has to be evaluated manually, nothing to do here
            return;
        }

        IPreservationAction action =
            PreservationActionServiceFactory.getPreservationAction(a.getAction());

        // if the action is null the service isn't accessible (anymore)
        // we have to set an error message for each sample record
        if (action == null) {
View Full Code Here


            Alternative a = emulationAlternative;
            if (!a.isExecutable()) {
                // this alternative has to be evaluated manually, nothing to do here
                return;
            }
            IPreservationAction action =
                PreservationActionServiceFactory.getPreservationAction(a.getAction());
            /*
             * clear old run description
             */
            if (action == null) {
View Full Code Here

TOP

Related Classes of eu.planets_project.pp.plato.services.action.IPreservationAction

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.