io.polyapi.plugin.service.SpecificationService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyapi-maven-plugin Show documentation
Show all versions of polyapi-maven-plugin Show documentation
Maven plugin to run handle Poly API functions.
package io.polyapi.plugin.service;
import io.polyapi.plugin.model.specification.Specification;
import java.util.List;
/**
* Service dedicated to operations with Specifications on the Poly API webservice.
*/
public interface SpecificationService {
/**
* Retrieve all the JSON specifications in Poly.
*
* @param context The contexts that should be used to filter the specifications.
* @return String A JSON containing the specifications.
*/
List list(List context);
}