Package com.okta.authn.sdk.http
Class QueryParameter
- java.lang.Object
-
- com.okta.authn.sdk.http.QueryParameter
-
- All Implemented Interfaces:
RequestParameter
public final class QueryParameter extends java.lang.Object implements RequestParameter
-
-
Constructor Summary
Constructors Constructor Description QueryParameter(java.lang.String key, java.lang.String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
K
getKey()
V
getValue()
int
hashCode()
static QueryParameter
query(java.lang.String key, java.lang.String value)
java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.okta.authn.sdk.http.RequestParameter
getKey, getValue
-
-
-
-
Method Detail
-
query
public static QueryParameter query(java.lang.String key, java.lang.String value)
-
getKey
public K getKey()
-
getValue
public V getValue()
-
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
-
-