[jboss-cvs] Picketlink SVN: r179 - in idm/trunk: assembly and 24 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Mar 8 18:46:46 EST 2010


Author: bdaw
Date: 2010-03-08 18:46:45 -0500 (Mon, 08 Mar 2010)
New Revision: 179

Modified:
   idm/trunk/assembly/pom.xml
   idm/trunk/example/auth-simple/pom.xml
   idm/trunk/example/auth/pom.xml
   idm/trunk/example/simple/pom.xml
   idm/trunk/integration/deployer/pom.xml
   idm/trunk/integration/jboss5/pom.xml
   idm/trunk/integration/pom.xml
   idm/trunk/parent/pom.xml
   idm/trunk/picketlink-idm-api/pom.xml
   idm/trunk/picketlink-idm-api/src/main/java/org/picketlink/idm/cache/APICacheProvider.java
   idm/trunk/picketlink-idm-auth/pom.xml
   idm/trunk/picketlink-idm-cache/pom.xml
   idm/trunk/picketlink-idm-cache/src/main/java/org/picketlink/idm/impl/cache/JBossCacheAPICacheProviderImpl.java
   idm/trunk/picketlink-idm-common/pom.xml
   idm/trunk/picketlink-idm-core/pom.xml
   idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/api/IdentitySessionFactoryImpl.java
   idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/configuration/IdentityConfigurationImpl.java
   idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/helper/Tools.java
   idm/trunk/picketlink-idm-docs/ReferenceGuide/pom.xml
   idm/trunk/picketlink-idm-docs/pom.xml
   idm/trunk/picketlink-idm-hibernate/pom.xml
   idm/trunk/picketlink-idm-ldap/pom.xml
   idm/trunk/picketlink-idm-spi/pom.xml
   idm/trunk/picketlink-idm-testsuite/pom.xml
   idm/trunk/picketlink-idm-testsuite/src/test/resources/test-identity-config-redhatds.xml
   idm/trunk/pom.xml
Log:
-templating mechanism for realms, some caching bootstrap improvements and preparation for 1.1.0.Beta9

Modified: idm/trunk/assembly/pom.xml
===================================================================
--- idm/trunk/assembly/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/assembly/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -4,14 +4,14 @@
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.picketlink.idm</groupId>
    <artifactId>picketlink-idm</artifactId>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
    <packaging>pom</packaging>
    <name>PicketLink IDM Assembly </name>
 	
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
 

Modified: idm/trunk/example/auth/pom.xml
===================================================================
--- idm/trunk/example/auth/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/example/auth/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -1,7 +1,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.picketlink.idm.example</groupId>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
    <artifactId>example-auth</artifactId>
    <packaging>jar</packaging>
    <name>Example - JEE authentication</name>

Modified: idm/trunk/example/auth-simple/pom.xml
===================================================================
--- idm/trunk/example/auth-simple/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/example/auth-simple/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -1,7 +1,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.picketlink.idm.example</groupId>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
    <artifactId>example-auth-simple</artifactId>
    <packaging>jar</packaging>
    <name>Example - JEE authentication (using deployer)</name>

Modified: idm/trunk/example/simple/pom.xml
===================================================================
--- idm/trunk/example/simple/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/example/simple/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -1,7 +1,7 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>org.picketlink.idm.example</groupId>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
    <artifactId>example-simple</artifactId>
    <packaging>jar</packaging>
    <name>Example - Simple PicketLink IDM Maven2 project</name>

Modified: idm/trunk/integration/deployer/pom.xml
===================================================================
--- idm/trunk/integration/deployer/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/integration/deployer/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -8,12 +8,12 @@
    <groupId>org.picketlink.idm.integration</groupId>
    <artifactId>picketlink-idm-jboss5-deployer</artifactId>
    <packaging>jar</packaging>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
   
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-integration</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
    </parent>
 
    <properties>

Modified: idm/trunk/integration/jboss5/pom.xml
===================================================================
--- idm/trunk/integration/jboss5/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/integration/jboss5/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -8,12 +8,12 @@
    <groupId>org.picketlink.idm.integration</groupId>
    <artifactId>picketlink-idm-jboss5</artifactId>
    <packaging>jar</packaging>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
   
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-integration</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
    </parent>
 
    <dependencies>

Modified: idm/trunk/integration/pom.xml
===================================================================
--- idm/trunk/integration/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/integration/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -13,7 +13,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent/pom.xml</relativePath>
    </parent>
 

Modified: idm/trunk/parent/pom.xml
===================================================================
--- idm/trunk/parent/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/parent/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -8,7 +8,7 @@
    <groupId>org.picketlink.idm</groupId>
    <artifactId>picketlink-idm-parent</artifactId>
    <packaging>pom</packaging>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
    <name>PicketLink IDM- Parent</name>
    <url>http://labs.jboss.org/portal/jbosssecurity/</url>
    <description>PicketLink is a cross-cutting project that handles identity  needs for the JEMS projects</description>

Modified: idm/trunk/picketlink-idm-api/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-api/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-api/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-api/src/main/java/org/picketlink/idm/cache/APICacheProvider.java
===================================================================
--- idm/trunk/picketlink-idm-api/src/main/java/org/picketlink/idm/cache/APICacheProvider.java	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-api/src/main/java/org/picketlink/idm/cache/APICacheProvider.java	2010-03-08 23:46:45 UTC (rev 179)
@@ -55,6 +55,11 @@
    void invalidate(String ns);
 
    /**
+    * Invalidate whole cache including all namespaces;
+    */
+   void invalidateAll();
+
+   /**
     * Generate realm namespace.
     *
     * @param realmId - if null will generate root namespace

Modified: idm/trunk/picketlink-idm-auth/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-auth/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-auth/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-cache/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-cache/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-cache/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-cache/src/main/java/org/picketlink/idm/impl/cache/JBossCacheAPICacheProviderImpl.java
===================================================================
--- idm/trunk/picketlink-idm-cache/src/main/java/org/picketlink/idm/impl/cache/JBossCacheAPICacheProviderImpl.java	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-cache/src/main/java/org/picketlink/idm/impl/cache/JBossCacheAPICacheProviderImpl.java	2010-03-08 23:46:45 UTC (rev 179)
@@ -30,6 +30,7 @@
 import org.picketlink.idm.impl.api.model.GroupKey;
 import org.jboss.cache.*;
 
+import java.io.InputStream;
 import java.util.Map;
 import java.util.Collection;
 import java.util.Collections;
@@ -108,10 +109,15 @@
 
    public static final String MAIN_ROOT = "NODE_MAIN_ROOT";
 
+   private Fqn getRootNode()
+   {
+      return Fqn.fromString("/" + MAIN_ROOT);
+   }
+
    private Fqn getNamespacedFqn(String ns)
    {
       String namespace = ns != null ? ns : NULL_NS_NODE;
-      return Fqn.fromString("/" + MAIN_ROOT + "/" + namespace);
+      return Fqn.fromString(getRootNode() + "/" + namespace);
    }
 
    private Fqn getFqn(String ns, String node, Object o)
@@ -161,6 +167,22 @@
       
    }
 
+   public void initialize(InputStream jbossCacheConfiguration)
+   {
+      CacheFactory factory = new DefaultCacheFactory();
+
+      if (jbossCacheConfiguration == null)
+      {
+         throw new IllegalArgumentException("JBoss Cache configuration InputStream is null");
+      }
+
+      this.cache = factory.createCache(jbossCacheConfiguration);
+
+      this.cache.create();
+      this.cache.start();
+
+   }
+
    Cache getCache()
    {
       return cache;
@@ -178,6 +200,16 @@
       }
    }
 
+   public void invalidateAll()
+   {
+      boolean success = cache.getRoot().removeChild(getRootNode());
+
+      if (log.isLoggable(Level.FINER))
+      {
+         log.finer(this.toString() + "Invalidating whole cache - success=" + success);
+      }
+   }
+
    public String getNamespace(String realmId)
    {
       if (realmId == null)

Modified: idm/trunk/picketlink-idm-common/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-common/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-common/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-core/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-core/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-core/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/api/IdentitySessionFactoryImpl.java
===================================================================
--- idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/api/IdentitySessionFactoryImpl.java	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/api/IdentitySessionFactoryImpl.java	2010-03-08 23:46:45 UTC (rev 179)
@@ -26,11 +26,13 @@
 import java.util.HashMap;
 import java.util.Map;
 
+import org.picketlink.idm.impl.helper.Tools;
 import org.picketlink.idm.api.IdentitySession;
 import org.picketlink.idm.api.IdentitySessionFactory;
 import org.picketlink.idm.common.exception.IdentityException;
 import org.picketlink.idm.impl.api.session.IdentitySessionImpl;
 import org.picketlink.idm.impl.configuration.IdentitySessionConfigurationContext;
+import org.picketlink.idm.spi.configuration.metadata.IdentityConfigurationMetaData;
 
 /**
  * @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
@@ -46,9 +48,12 @@
 
    private final Map<String, IdentitySessionConfigurationContext> sessionContextMap;
 
-   public IdentitySessionFactoryImpl(Map<String, IdentitySessionConfigurationContext> sessionContextMap)
+   private final IdentityConfigurationMetaData configMD;
+
+   public IdentitySessionFactoryImpl(IdentityConfigurationMetaData configMD, Map<String, IdentitySessionConfigurationContext> sessionContextMap)
    {
       this.sessionContextMap = sessionContextMap;
+      this.configMD = configMD;
    }
 
    public void close()
@@ -65,16 +70,44 @@
    public IdentitySession createIdentitySession(String realmName) throws IdentityException
    {
 
-      if (!sessionContextMap.containsKey(realmName))
+      IdentitySessionConfigurationContext sessionConfigCtx = sessionContextMap.get(realmName);
+
+      // If no realm mapped then look for a template which name is a prefix of realmName
+      if (sessionConfigCtx == null)
       {
-         throw new IdentityException("Cannot find configured realm with a given name: " + realmName);
+         for (String ctx : sessionContextMap.keySet())
+         {
+            if (realmName.startsWith(ctx))
+            {
+               // Matching realm must have proper option set
+               String isTemplate = Tools.getOptionSingleValue("template", sessionContextMap.get(ctx).getRealmOptions());
+               if (isTemplate != null && isTemplate.equalsIgnoreCase("true"))
+               {
+                  sessionConfigCtx = sessionContextMap.get(ctx);
+                  break;
+               }
+            }
+         }
       }
 
-      //IdentitySession session = new IdentitySessionImpl(realmName, repo, mapper);
-      IdentitySessionConfigurationContext sessionConfigCtx = sessionContextMap.get(realmName);
+      // If no template with matching name was found then check if there is default template present
+      if (sessionConfigCtx == null)
+      {
+         String defaultTemplate = Tools.getOptionSingleValue("defaultTemplate", configMD.getOptions());
+         if (defaultTemplate != null && sessionContextMap.containsKey(defaultTemplate))
+         {
+            sessionConfigCtx = sessionContextMap.get(defaultTemplate);
+         }
+      }
 
+      // If still no matching realm then throw exception
+      if (sessionConfigCtx == null)
+      {
+         throw new IdentityException("Cannot find configuration realm with a given name or any matching template: " + realmName);
+      }
+
       IdentitySession newSession =
-         new IdentitySessionImpl(sessionConfigCtx.getRealmName(),
+         new IdentitySessionImpl(realmName,
             sessionConfigCtx.getRepository(),
             sessionConfigCtx.getTypeMapper(),
             sessionConfigCtx.getApiCacheProvider(),

Modified: idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/configuration/IdentityConfigurationImpl.java
===================================================================
--- idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/configuration/IdentityConfigurationImpl.java	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/configuration/IdentityConfigurationImpl.java	2010-03-08 23:46:45 UTC (rev 179)
@@ -151,7 +151,7 @@
          throw new IdentityConfigurationException("Failed to build IdentitySessionFactory", e);
       }
 
-      return new IdentitySessionFactoryImpl(realmMap);
+      return new IdentitySessionFactoryImpl(configMD, realmMap);
    }
 
    private Map<String, IdentitySessionConfigurationContext> createRealmMap(IdentityConfigurationMetaData configMD) throws Exception

Modified: idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/helper/Tools.java
===================================================================
--- idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/helper/Tools.java	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-core/src/main/java/org/picketlink/idm/impl/helper/Tools.java	2010-03-08 23:46:45 UTC (rev 179)
@@ -25,6 +25,7 @@
 import java.util.List;
 import java.util.Enumeration;
 import java.util.ArrayList;
+import java.util.Map;
 
 /**
  * @author <a href="mailto:boleslaw.dawidowicz at redhat.com">Boleslaw Dawidowicz</a>
@@ -100,4 +101,21 @@
 
       return parts[1];
    }
+
+   public static String getOptionSingleValue(String optionName, Map<String, List<String>> options)
+   {
+      if (options == null || options.size() == 0)
+      {
+         return null;
+      }
+
+      List<String> values = options.get(optionName);
+
+      if (values != null && values.size() > 0)
+      {
+         return values.get(0);
+      }
+
+      return null;
+   }
 }

Modified: idm/trunk/picketlink-idm-docs/ReferenceGuide/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-docs/ReferenceGuide/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-docs/ReferenceGuide/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../../parent</relativePath>
    </parent>
 

Modified: idm/trunk/picketlink-idm-docs/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-docs/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-docs/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
 <parent>
    <groupId>org.picketlink.idm</groupId>
    <artifactId>picketlink-idm-parent</artifactId>
-   <version>1.1.0.Beta9-SNAPSHOT</version>
+   <version>1.1.0.Beta9</version>
    <relativePath>../parent</relativePath>
 </parent>
 

Modified: idm/trunk/picketlink-idm-hibernate/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-hibernate/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-hibernate/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-ldap/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-ldap/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-ldap/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-spi/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-spi/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-spi/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-testsuite/pom.xml
===================================================================
--- idm/trunk/picketlink-idm-testsuite/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-testsuite/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -2,7 +2,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>../parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

Modified: idm/trunk/picketlink-idm-testsuite/src/test/resources/test-identity-config-redhatds.xml
===================================================================
--- idm/trunk/picketlink-idm-testsuite/src/test/resources/test-identity-config-redhatds.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/picketlink-idm-testsuite/src/test/resources/test-identity-config-redhatds.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -158,7 +158,7 @@
          </options>
       </repository>
    </repositories>
-   <stores>
+   <stores>                                                   
       <attribute-stores/>
       <identity-stores>
          <identity-store>

Modified: idm/trunk/pom.xml
===================================================================
--- idm/trunk/pom.xml	2010-03-08 19:25:38 UTC (rev 178)
+++ idm/trunk/pom.xml	2010-03-08 23:46:45 UTC (rev 179)
@@ -3,7 +3,7 @@
    <parent>
       <groupId>org.picketlink.idm</groupId>
       <artifactId>picketlink-idm-parent</artifactId>
-      <version>1.1.0.Beta9-SNAPSHOT</version>
+      <version>1.1.0.Beta9</version>
       <relativePath>parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>




More information about the jboss-cvs-commits mailing list