Files
openapi-generator/modules/swagger-codegen/src/main/resources/Java/auth/Authentication.mustache
2015-06-22 15:16:45 -07:00

12 lines
294 B
Plaintext

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