Class GroupTemplateWithAttributes

java.lang.Object
com.atlassian.crowd.model.group.GroupTemplate
com.atlassian.crowd.model.group.GroupTemplateWithAttributes
All Implemented Interfaces:
Attributes, DirectoryEntity, Group, GroupWithAttributes, GroupWithMembers, Serializable, Comparable<Group>

public class GroupTemplateWithAttributes extends GroupTemplate implements GroupWithAttributes
Mutable group template with mutable attributes.
See Also:
  • Constructor Details

    • GroupTemplateWithAttributes

      public GroupTemplateWithAttributes(String groupName, long directoryId, GroupType groupType)
    • GroupTemplateWithAttributes

      public GroupTemplateWithAttributes(GroupWithAttributes group)
      Creates new GroupTemplateWithAttributes based on the given group and attributes.
      Parameters:
      group - group to use as a template
  • Method Details

    • ofGroupWithNoAttributes

      public static GroupTemplateWithAttributes ofGroupWithNoAttributes(Group group)
      Creates new GroupTemplateWithAttributes based on the given group with empty attributes.
      Parameters:
      group - group to use as a template
      Returns:
      GroupTemplateWithAttributes based on the given group with empty attributes
    • getAttributes

      public Map<String,Set<String>> getAttributes()
    • getValues

      @Nullable public Set<String> getValues(String name)
      Description copied from interface: Attributes
      Get all the values associated with a given key. Duplicate values are not allowed, and this should be enforced case-insensitively to match the behaviour of LDAP servers. Will return null if the key does not exist.
      Specified by:
      getValues in interface Attributes
      Parameters:
      name - the key to retrieve the values for
      Returns:
      the values associated with the given key. It may return null or empty set if the key does not exist.
    • getValue

      @Nullable public String getValue(String name)
      Description copied from interface: Attributes
      Returns any value associated with the given key, returns null if there is no value.
      Specified by:
      getValue in interface Attributes
      Parameters:
      name - the key to retrieve the value for
      Returns:
      any value associated with the given key, or null if there is no value
    • getKeys

      public Set<String> getKeys()
      Description copied from interface: Attributes
      Gets all the keys of the attributes. Warning: case-insensitive keys are currently no enforced, however this is the case for LDAP, so this may be implemented in the future.
      Specified by:
      getKeys in interface Attributes
      Returns:
      a set of all the keys.
    • isEmpty

      public boolean isEmpty()
      Specified by:
      isEmpty in interface Attributes
      Returns:
      true if there are no attributes
    • setAttribute

      public void setAttribute(String name, String value)
    • setAttribute

      public void setAttribute(String name, Set<String> values)
    • removeAttribute

      public void removeAttribute(String name)