Interface IStringAttributesMixin
-
- All Known Subinterfaces:
IAuthenticatorConfig
,IAuthenticatorConfigWrapper
- All Known Implementing Classes:
AAuthenticatorConfig
,AConfigViewModel
,AnonymousConfigViewModel
,AnonymousConfigWrapper
,AnyoneConfigWrapper
,BaseConfigViewModel
,DistinctUserConfigWrapper
,EntityConfigWrapper
,FormConfigWrapper
,KerberosConfigWrapper
,NtlmConfigWrapper
,PasswordConfigViewModel
,PasswordConfigWrapper
,ProjectAuthenticatorConfig
,UserPortalAuthConfig
,VirtualAuthenticatorConfig
,WorkflowStateAuthenticatorConfig
public interface IStringAttributesMixin
Mixin providing utility methods for storing values in a string map- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Map<String,String>
getAttributes()
default String
getAttributeValue(String key)
Get theString
value of the attribute with the given keydefault List<String>
getAttributeValueList(String key)
Get theList
value of the attribute with the given keydefault Map<String,String>
getAttributeValueMap(String key)
Get theMap
value of the attribute with the given keydefault void
putAttribute(String key, String value)
Puts the givenString
value for the given key in the attribute map.default void
putAttributes(String key, List<String> values)
Puts the givenList
value for the given key in the attribute map.default void
putAttributes(String key, Map<String,String> valueMap)
Puts the givenMap
value for the given key in the attribute map.default String
removeAttribute(String key)
Removes the attributes for the given key
-
-
-
Method Detail
-
getAttributeValue
default String getAttributeValue(String key)
Get theString
value of the attribute with the given key
-
getAttributeValueList
default List<String> getAttributeValueList(String key)
Get theList
value of the attribute with the given key
-
getAttributeValueMap
default Map<String,String> getAttributeValueMap(String key)
Get theMap
value of the attribute with the given key
-
putAttribute
default void putAttribute(String key, String value)
Puts the givenString
value for the given key in the attribute map. If the value is empty then the key will be removed from the map
-
putAttributes
default void putAttributes(String key, List<String> values)
Puts the givenList
value for the given key in the attribute map. If the value is empty then the key will be removed from the map
-
putAttributes
default void putAttributes(String key, Map<String,String> valueMap)
Puts the givenMap
value for the given key in the attribute map. If the value is empty then the key will be removed from the map
-
-