Interface Addable<V>

Type Parameters:
V - The type of the value of the attribute.
All Known Subinterfaces:
AttributeExtractor, EnumeratedValuesExtractor, HasAddableKeys<V>
All Known Implementing Classes:
ApplicationScopeExtractor, EnvironmentScopeExtractor, HeaderExtractor, RequestScopeExtractor, ScopeExtractor, SessionScopeExtractor, SessionScopeExtractor, VelocityScopeExtractor

public interface Addable<V>
Allows to get and set attributes.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    setValue(String key, V value)
    Sets a value for the given key.
  • Method Details

    • setValue

      void setValue(String key, V value)
      Sets a value for the given key.
      Parameters:
      key - The key of the attribute.
      value - The value of the attribute.