|
|
|
@ -24,12 +24,37 @@ import org.wso2.carbon.apimgt.api.model.APIIdentifier;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This interface represents all methods related to API manipulation that's done as part of API-Management tasks.
|
|
|
|
|
*
|
|
|
|
|
* Note: Ideally, this has to come from the API-Management components. However, due to lack of clean APIs
|
|
|
|
|
* (as OSGi declarative services, etc) provided for API publishing and related tasks, this was introduced at the device
|
|
|
|
|
* management core implementation layer.
|
|
|
|
|
*/
|
|
|
|
|
public interface APIPublisherService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This method registers an API within the underlying API-Management infrastructure.
|
|
|
|
|
*
|
|
|
|
|
* @param api An instance of the bean that passes metadata related to the API being published
|
|
|
|
|
* @throws APIManagementException Is thrown if some unexpected event occurs while publishing the API
|
|
|
|
|
*/
|
|
|
|
|
void publishAPI(API api) throws APIManagementException;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This method removes an API that's already published within the underlying API-Management infrastructure.
|
|
|
|
|
*
|
|
|
|
|
* @param id An instance of the bean that carries API identification related metadata
|
|
|
|
|
* @throws APIManagementException Is thrown if some unexpected event occurs while removing the API
|
|
|
|
|
*/
|
|
|
|
|
void removeAPI(APIIdentifier id) throws APIManagementException;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* This method registers a collection of APIs within the underlying API-Management infrastructure.
|
|
|
|
|
*
|
|
|
|
|
* @param apis A list of the beans that passes metadata related to the APIs being published
|
|
|
|
|
* @throws APIManagementException Is thrown if some unexpected event occurs while publishing the APIs
|
|
|
|
|
*/
|
|
|
|
|
void publishAPIs(List<API> apis) throws APIManagementException;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|