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

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

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

import org.infinispan.lifecycle.ComponentStatus;
import org.infinispan.manager.EmbeddedCacheManager;

/**
 * GetCacheManagerStatusAction.
 *
 * @author Tristan Tarrant
 * @since 7.0
 */
public class GetCacheManagerStatusAction extends AbstractEmbeddedCacheManagerAction {

   public GetCacheManagerStatusAction(EmbeddedCacheManager cacheManager) {
      super(cacheManager);
   }

   @Override
   public ComponentStatus run() {
      return cacheManager.getStatus();
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy