io.swagger.models.auth.SecuritySchemeDefinition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-all Show documentation
Show all versions of swagger-all Show documentation
swagger-all is a rebundled verison of Swagger as one OSGi bundle.
The newest version!
package io.swagger.models.auth;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import java.util.Map;
public interface SecuritySchemeDefinition {
String getType();
void setType(String type);
@JsonAnyGetter
Map getVendorExtensions();
@JsonAnySetter
void setVendorExtension(String name, Object value);
String getDescription();
void setDescription(String description);
}