forked from wildfly/wildfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request wildfly#6481 from emmartins/WFLY-3587
WFLY-3587: removes the need for infinispan module when creating security...
- Loading branch information
Showing
6 changed files
with
136 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
...ity/subsystem/src/main/java/org/jboss/as/security/plugins/AuthenticationCacheFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* JBoss, Home of Professional Open Source. | ||
* Copyright 2014, Red Hat, Inc., and individual contributors | ||
* as indicated by the @author tags. See the copyright.txt file in the | ||
* distribution for a full listing of individual contributors. | ||
* | ||
* This is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as | ||
* published by the Free Software Foundation; either version 2.1 of | ||
* the License, or (at your option) any later version. | ||
* | ||
* This software is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
|
||
package org.jboss.as.security.plugins; | ||
|
||
import org.jboss.security.authentication.JBossCachedAuthenticationManager.DomainInfo; | ||
|
||
import java.security.Principal; | ||
import java.util.concurrent.ConcurrentMap; | ||
|
||
/** | ||
* Factory that creates default {@code ConcurrentMap}s for authentication cache. | ||
* | ||
* @author Eduardo Martins | ||
*/ | ||
public interface AuthenticationCacheFactory { | ||
|
||
/** | ||
* Returns a cache implementation | ||
* | ||
* @return cache implementation | ||
*/ | ||
ConcurrentMap<Principal, DomainInfo> getCache(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
* | ||
* @author <a href="mailto:[email protected]">Marcus Moyses</a> | ||
*/ | ||
public class DefaultAuthenticationCacheFactory { | ||
public class DefaultAuthenticationCacheFactory implements AuthenticationCacheFactory { | ||
|
||
/** | ||
* Returns a default cache implementation | ||
|
68 changes: 68 additions & 0 deletions
68
...tem/src/main/java/org/jboss/as/security/plugins/InfinispanAuthenticationCacheFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
/* | ||
* JBoss, Home of Professional Open Source. | ||
* Copyright 2014, Red Hat, Inc., and individual contributors | ||
* as indicated by the @author tags. See the copyright.txt file in the | ||
* distribution for a full listing of individual contributors. | ||
* | ||
* This is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU Lesser General Public License as | ||
* published by the Free Software Foundation; either version 2.1 of | ||
* the License, or (at your option) any later version. | ||
* | ||
* This software is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this software; if not, write to the Free | ||
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
* 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
*/ | ||
|
||
package org.jboss.as.security.plugins; | ||
|
||
import org.infinispan.configuration.cache.Configuration; | ||
import org.infinispan.configuration.cache.ConfigurationBuilder; | ||
import org.infinispan.manager.EmbeddedCacheManager; | ||
import org.jboss.security.authentication.JBossCachedAuthenticationManager.DomainInfo; | ||
|
||
import java.security.Principal; | ||
import java.util.concurrent.ConcurrentMap; | ||
|
||
/** | ||
* Factory that creates ISPN {@code ConcurrentMap}s for authentication cache. | ||
* | ||
* @author Eduardo Martins | ||
*/ | ||
public class InfinispanAuthenticationCacheFactory implements AuthenticationCacheFactory { | ||
|
||
private final EmbeddedCacheManager cacheManager; | ||
private final String securityDomain; | ||
|
||
/** | ||
* | ||
* @param cacheManager | ||
* @param securityDomain | ||
*/ | ||
public InfinispanAuthenticationCacheFactory(Object cacheManager, String securityDomain) { | ||
this.cacheManager = (EmbeddedCacheManager) cacheManager; | ||
this.securityDomain = securityDomain; | ||
} | ||
|
||
/** | ||
* Returns a default cache implementation | ||
* | ||
* @return cache implementation | ||
*/ | ||
public ConcurrentMap<Principal, DomainInfo> getCache() { | ||
// TODO override global settings with security domain specific | ||
ConfigurationBuilder builder = new ConfigurationBuilder(); | ||
Configuration baseCfg = cacheManager.getCacheConfiguration("auth-cache"); | ||
if (baseCfg != null) { | ||
builder.read(baseCfg); | ||
} | ||
cacheManager.defineConfiguration(securityDomain, builder.build()); | ||
return cacheManager.getCache(securityDomain); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters