com.networknt.oas.model.SecurityRequirement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-parser Show documentation
Show all versions of openapi-parser Show documentation
A light-weight, fast OpenAPI 3.0 parser and validator
package com.networknt.oas.model;
import java.util.Map;
public interface SecurityRequirement extends OpenApiObject {
// Requirement
Map getRequirements();
Map getRequirements(boolean elaborate);
boolean hasRequirement(String name);
SecurityParameter getRequirement(String name);
void setRequirements(Map requirements);
void setRequirement(String name, SecurityParameter requirement);
void removeRequirement(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy