Interface PersistenceDecorator


public interface PersistenceDecorator
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Flag whether the decorator should be considered.
    decorate(Persistence persistence)
     
    int
    Indicates the priority.
  • Method Details

    • active

      boolean active()
      Flag whether the decorator should be considered.
    • priority

      int priority()
      Indicates the priority. Decorators with a lower priority are applied before those with a higher priority.
    • decorate

      Persistence decorate(Persistence persistence)