Files
openapi-generator/modules/swagger-codegen/src/main/resources/Java/auth/Authentication.mustache

12 lines
306 B
Plaintext

package {{invokerPackage}}.auth;
import {{invokerPackage}}.QueryParam;
import java.util.Map;
import java.util.Set;
public interface Authentication {
/** Apply authentication settings to header and query params. */
void applyToParams(Set<QueryParam> queryParams, Map<String, String> headerParams);
}