Package eu.scape_project.planning.services.myexperiment.MyExperimentRESTClient

Examples of eu.scape_project.planning.services.myexperiment.MyExperimentRESTClient.ComponentQuery.addProfile()


    public List<IServiceInfo> searchMigrationAction() throws PlanningServiceException {
        List<IServiceInfo> services = new ArrayList<IServiceInfo>();

        // Create query
        ComponentQuery query = myExperimentRESTClient.createComponentQuery();
        query.addProfile(profile).addMigrationPath(sourceMimetype).setMigrationPathTargetPattern(targetMimetype)
            .addInputPort(ComponentConstants.VALUE_SOURCE_OBJECT).addOutputPort(ComponentConstants.VALUE_TARGET_OBJECT)
            .addInstallationEnvironment(environment).addInstallationEnvironmentType(environmentType);

        query.setDependencyLabelPattern(dependencyLabel);
        query.finishQuery();
View Full Code Here


     */
    public List<IServiceInfo> searchObjectQa() throws PlanningServiceException {
        List<IServiceInfo> services = new ArrayList<IServiceInfo>();

        ComponentQuery query = myExperimentRESTClient.createComponentQuery();
        query.addProfile(profile);

        query.addHandlesMimetype(sourceMimetype, targetMimetype)
            .addHandlesMimetypeWildcard(sourceMimetype, targetMimetype)
            .addHandlesMimetypes(sourceMimetype, targetMimetype)
            .addHandlesMimetypesWildcard(sourceMimetype, targetMimetype);
View Full Code Here

     */
    public List<IServiceInfo> searchCc() throws PlanningServiceException {
        List<IServiceInfo> services = new ArrayList<IServiceInfo>();

        ComponentQuery query = myExperimentRESTClient.createComponentQuery();
        query.addProfile(profile).addHandlesMimetype(targetMimetype).addHandlesMimetypeWildcard(targetMimetype)
            .addInputPort(ComponentConstants.VALUE_SOURCE_OBJECT);

        if (measure != null) {
            query.addMeasureOutputPort(measure);
        }
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.