Package springfox.documentation
Class RequestHandlerKey
- java.lang.Object
-
- springfox.documentation.RequestHandlerKey
-
public class RequestHandlerKey extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description RequestHandlerKey(java.util.Set<java.lang.String> pathMappings, java.util.Set<org.springframework.web.bind.annotation.RequestMethod> supportedMethods, java.util.Set<org.springframework.http.MediaType> supportedMediaTypes, java.util.Set<org.springframework.http.MediaType> producibleMediaTypes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.util.Set<java.lang.String>
getPathMappings()
java.util.Set<org.springframework.http.MediaType>
getProducibleMediaTypes()
java.util.Set<org.springframework.http.MediaType>
getSupportedMediaTypes()
java.util.Set<org.springframework.web.bind.annotation.RequestMethod>
getSupportedMethods()
int
hashCode()
java.lang.String
toString()
-
-
-
Constructor Detail
-
RequestHandlerKey
public RequestHandlerKey(java.util.Set<java.lang.String> pathMappings, java.util.Set<org.springframework.web.bind.annotation.RequestMethod> supportedMethods, java.util.Set<org.springframework.http.MediaType> supportedMediaTypes, java.util.Set<org.springframework.http.MediaType> producibleMediaTypes)
-
-
Method Detail
-
getPathMappings
public java.util.Set<java.lang.String> getPathMappings()
-
getSupportedMethods
public java.util.Set<org.springframework.web.bind.annotation.RequestMethod> getSupportedMethods()
-
getSupportedMediaTypes
public java.util.Set<org.springframework.http.MediaType> getSupportedMediaTypes()
-
getProducibleMediaTypes
public java.util.Set<org.springframework.http.MediaType> getProducibleMediaTypes()
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-