All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openl.rules.rest.service.ProjectDependencyResolver Maven / Gradle / Ivy

There is a newer version: 5.27.9
Show newest version
package org.openl.rules.rest.service;

import java.util.List;
import javax.xml.bind.JAXBException;

import org.openl.rules.common.ProjectException;
import org.openl.rules.project.abstraction.RulesProject;

/**
 * @author ybiruk
 */
public interface ProjectDependencyResolver {


    /**
     * Returns all projects that project depends on.
     */
    List getProjectDependencies(RulesProject project) throws ProjectException;

    /**
     * Returns all projects that depend on project
     */
    List getDependsOnProject(RulesProject project) throws ProjectException, JAXBException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy