![JAR search and dependency download from the Maven repository](/logo.png)
org.openl.rules.rest.service.ProjectDependencyResolver Maven / Gradle / Ivy
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