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

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

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.security.actions;

import java.util.List;

import org.infinispan.AdvancedCache;
import org.infinispan.interceptors.base.CommandInterceptor;

/**
 * GetCacheInterceptorChainAction.
 *
 * @author Tristan Tarrant
 * @since 7.0
 */
public class GetCacheInterceptorChainAction extends AbstractAdvancedCacheAction> {

   public GetCacheInterceptorChainAction(AdvancedCache cache) {
      super(cache);
   }

   @Override
   public List run() {
      return cache.getInterceptorChain();
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy