org.pipservices3.rpc.services.ISwaggerService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pip-services3-rpc Show documentation
Show all versions of pip-services3-rpc Show documentation
Networking and communication platform for Pip.Services in Java
The newest version!
package org.pipservices3.rpc.services;
/**
* Interface to perform Swagger registrations.
*/
public interface ISwaggerService {
/**
* Perform required Swagger registration steps.
*/
void registerOpenApiSpec(String baseRoute, String swaggerRoute);
}