Package com.okta.authn.sdk.resource
Interface Link
-
- All Superinterfaces:
com.okta.sdk.resource.ExtensibleResource
,java.util.Map<java.lang.String,java.lang.Object>
,com.okta.sdk.resource.PropertyRetriever
,com.okta.sdk.resource.Resource
- All Known Implementing Classes:
DefaultLink
,NestedLink
public interface Link extends com.okta.sdk.resource.ExtensibleResource
HAL (Hypertext Application Language) based links).- Since:
- 0.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>
getHintsAllow()
java.lang.String
getHref()
java.lang.String
getName()
java.util.List<Link>
getNestedLinks()
java.lang.String
getType()
boolean
hasNestedLinks()
Returns true ONLY if this object contains nested links INSTEAD of containing a link itself.-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, put, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getType
java.lang.String getType()
-
getHintsAllow
java.util.List<java.lang.String> getHintsAllow()
-
getHref
java.lang.String getHref()
-
hasNestedLinks
boolean hasNestedLinks()
Returns true ONLY if this object contains nested links INSTEAD of containing a link itself.- Returns:
- true if this object contains nested links.
-
getNestedLinks
java.util.List<Link> getNestedLinks()
-
-