Class AttributeRepositoryImpl

  • All Implemented Interfaces:
    AttributeRepository

    public class AttributeRepositoryImpl
    extends Object
    implements AttributeRepository
    A bean implementing the AttributeRepository interface.
    Author:
    Martin Lindström (martin.lindstrom@litsec.se)
    • Constructor Detail

      • AttributeRepositoryImpl

        public AttributeRepositoryImpl​(List<AttributeTemplate> attributes)
        Constructor.
        Parameters:
        attributes - the attributes stored by the repository
    • Method Detail

      • getAttributeNames

        public List<String> getAttributeNames()
        Returns a list of all attribute names that are stored in the repository.
        Specified by:
        getAttributeNames in interface AttributeRepository
        Returns:
        a list of attribute names
      • getByName

        public AttributeTemplate getByName​(String name)
        Returns the AttributeTemplate for the given attribute name.
        Specified by:
        getByName in interface AttributeRepository
        Parameters:
        name - the attribute name
        Returns:
        the matching AttributeTemplate or null if no match exists
      • getByFriendlyName

        public AttributeTemplate getByFriendlyName​(String friendlyName)
        Returns the AttributeTemplate for the given friendly name.
        Specified by:
        getByFriendlyName in interface AttributeRepository
        Parameters:
        friendlyName - the attribute friendly name
        Returns:
        the matching AttributeTemplate or null if no match exists