Files
openapi-generator/modules/swagger-codegen/src/main/resources/Java/auth/Authentication.mustache
2015-08-11 12:42:06 -07:00

13 lines
321 B
Plaintext

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