All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.security.actions.GetCacheAuthorizationManagerAction Maven / Gradle / Ivy

package org.infinispan.security.actions;

import org.infinispan.AdvancedCache;
import org.infinispan.security.AuthorizationManager;

/**
 * GetCacheAuthorizationManagerAction.
 *
 * @author Tristan Tarrant
 * @since 7.0
 */
public class GetCacheAuthorizationManagerAction extends AbstractAdvancedCacheAction {
   public GetCacheAuthorizationManagerAction(AdvancedCache cache) {
      super(cache);
   }

   @Override
   public AuthorizationManager run() {
      return cache.getAuthorizationManager();
   }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy