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

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

The newest version!
package org.openl.rules.rest.service;

import java.util.List;
import javax.annotation.Nonnull;

import org.openl.rules.project.abstraction.AProject;
import org.openl.rules.rest.model.ProjectViewModel;

/**
 * Project service API
 *
 * @author Vladyslav Pikus
 */
public interface ProjectService {

    /**
     * Get projects by criteria query
     *
     * @param query criteria query
     * @return list of projects
     */
    @Nonnull
    List getProjects(@Nonnull ProjectCriteriaQuery query);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy