Interface GroupColorProvider

All Known Implementing Classes:
GroupColorProviderImpl

public interface GroupColorProvider
Represents a color associated with a group in the MurmelAPI.

This interface is used to define a color that can be managed by the MurmelAPI. It is a marker interface and does not contain any methods.

The GroupColorProviderImpl interface extends this interface to provide additional functionality.

  • Method Details

    • closeCache

      void closeCache()
    • refreshCache

      void refreshCache()
    • getGroupColor

      GroupColor getGroupColor(int groupId, int typeId)
    • getGroupColors

      List<GroupColor> getGroupColors(int groupId)
    • getGroupColors

      List<GroupColor> getGroupColors()
    • add

      GroupColor add(int groupId, int typeId, String value, int createdBy)
    • remove

      int remove(int groupId, int typeId)
    • clear

      int clear(int groupId)
    • update

      GroupColor update(int groupId, int typeId, String value, int changedBy)