Class DomainLogic


public class DomainLogic extends AbstractTransactionalLogic<EntityTO>
  • Field Details

  • Constructor Details

  • Method Details

    • list

      @PreAuthorize("@environment.getProperty(\'keymaster.username\') == authentication.name") public List<Domain> list()
    • read

      @PreAuthorize("@environment.getProperty(\'keymaster.username\') == authentication.name") public Domain read(String key)
    • create

      @PreAuthorize("@environment.getProperty(\'keymaster.username\') == authentication.name") public Domain create(Domain domain)
    • deployed

      @PreAuthorize("@environment.getProperty(\'keymaster.username\') == authentication.name") public void deployed(String key)
    • changeAdminPassword

      @PreAuthorize("@environment.getProperty(\'keymaster.username\') == authentication.name") public void changeAdminPassword(String key, String password, CipherAlgorithm cipherAlgorithm)
    • adjustPoolSize

      @PreAuthorize("@environment.getProperty(\'keymaster.username\') == authentication.name") public void adjustPoolSize(String key, int poolMaxActive, int poolMinIdle)
    • delete

      @PreAuthorize("@environment.getProperty(\'keymaster.username\') == authentication.name") public void delete(String key)
    • resolveReference

      protected EntityTO resolveReference(Method method, Object... args)
      Specified by:
      resolveReference in class AbstractLogic<EntityTO>