Enum Class Show
- All Implemented Interfaces:
Serializable
,Comparable<Show>
,Constable
Options for showing data in endpoint responses.
- Since:
- 3.0.0
- Author:
- Madhura Bhave
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAlways show the item in the response.Never show the item in the response.Show the item in the response when accessed by an authorized user. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isShown
(boolean unauthorizedResult) Return if data should be shown when noSecurityContext
is available.boolean
isShown
(SecurityContext securityContext, Collection<String> roles) Return if data should be shown.static Show
Returns the enum constant of this class with the specified name.static Show[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NEVER
Never show the item in the response. -
WHEN_AUTHORIZED
Show the item in the response when accessed by an authorized user. -
ALWAYS
Always show the item in the response.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
isShown
public boolean isShown(boolean unauthorizedResult) Return if data should be shown when noSecurityContext
is available.- Parameters:
unauthorizedResult
- the result to used for an unauthorized user- Returns:
- if data should be shown
-
isShown
Return if data should be shown.- Parameters:
securityContext
- the security contextroles
- the required roles- Returns:
- if data should be shown
-