use of com.bluenimble.platform.api.ApiResourcesManager in project serverless by bluenimble.
the class DefaultApiServicesManager method load.
@Override
public void load(Api api) throws ApiServicesManagerException {
this.api = (ApiImpl) api;
ApiResourcesManager rmgr = api.getResourcesManager();
try {
load(rmgr, rmgr.get(new String[] { ConfigKeys.Folders.Services }));
} catch (ApiResourcesManagerException e) {
throw new ApiServicesManagerException(e.getMessage(), e);
}
}
Aggregations