Picketlink SVN: r849 - picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-31 11:49:35 -0400 (Thu, 31 Mar 2011)
New Revision: 849
Modified:
picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/ExternalAuthenticator.java
picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/FacebookPrincipal.java
picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/OpenIdPrincipal.java
picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/Requests.java
picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/SeamSamlPrincipal.java
Log:
make serializable
Modified: picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/ExternalAuthenticator.java
===================================================================
--- picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/ExternalAuthenticator.java 2011-03-24 15:40:32 UTC (rev 848)
+++ picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/ExternalAuthenticator.java 2011-03-31 15:49:35 UTC (rev 849)
@@ -21,6 +21,7 @@
*/
package org.picketlink.identity.seam.federation;
+import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.HashMap;
@@ -47,8 +48,10 @@
@AutoCreate
@Import("org.picketlink.identity.seam.federation")
@Scope(ScopeType.PAGE)
-public class ExternalAuthenticator
-{
+public class ExternalAuthenticator implements Serializable
+{
+ private static final long serialVersionUID = 2993545665152121656L;
+
private String returnUrl;
private String openId;
Modified: picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/FacebookPrincipal.java
===================================================================
--- picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/FacebookPrincipal.java 2011-03-24 15:40:32 UTC (rev 848)
+++ picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/FacebookPrincipal.java 2011-03-31 15:49:35 UTC (rev 849)
@@ -21,14 +21,17 @@
*/
package org.picketlink.identity.seam.federation;
+import java.io.Serializable;
import java.security.Principal;
/**
* @author Marcel Kolsteren
* @since Sep 26, 2010
*/
-public class FacebookPrincipal implements Principal
-{
+public class FacebookPrincipal implements Principal, Serializable
+{
+ private static final long serialVersionUID = 8086364702249670998L;
+
private String accessToken;
private String id;
Modified: picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/OpenIdPrincipal.java
===================================================================
--- picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/OpenIdPrincipal.java 2011-03-24 15:40:32 UTC (rev 848)
+++ picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/OpenIdPrincipal.java 2011-03-31 15:49:35 UTC (rev 849)
@@ -21,6 +21,7 @@
*/
package org.picketlink.identity.seam.federation;
+import java.io.Serializable;
import java.net.URL;
import java.security.Principal;
import java.util.List;
@@ -30,8 +31,10 @@
* @author Marcel Kolsteren
* @since Jan 30, 2010
*/
-public class OpenIdPrincipal implements Principal
-{
+public class OpenIdPrincipal implements Principal, Serializable
+{
+ private static final long serialVersionUID = 4404673070085740561L;
+
private String identifier;
private URL openIdProvider;
Modified: picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/Requests.java
===================================================================
--- picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/Requests.java 2011-03-24 15:40:32 UTC (rev 848)
+++ picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/Requests.java 2011-03-31 15:49:35 UTC (rev 849)
@@ -22,6 +22,7 @@
package org.picketlink.identity.seam.federation;
import java.io.IOException;
+import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
@@ -43,8 +44,10 @@
@Name("org.picketlink.identity.seam.federation.requests")
@AutoCreate
@Scope(ScopeType.SESSION)
-public class Requests
-{
+public class Requests implements Serializable
+{
+ private static final long serialVersionUID = 2392595885426155460L;
+
private Map<String, RequestContext> requests = new HashMap<String, RequestContext>();
@Logger
Modified: picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/SeamSamlPrincipal.java
===================================================================
--- picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/SeamSamlPrincipal.java 2011-03-24 15:40:32 UTC (rev 848)
+++ picketlink-seam/trunk/picketlink-seam/src/main/java/org/picketlink/identity/seam/federation/SeamSamlPrincipal.java 2011-03-31 15:49:35 UTC (rev 849)
@@ -21,6 +21,7 @@
*/
package org.picketlink.identity.seam.federation;
+import java.io.Serializable;
import java.security.Principal;
import java.util.LinkedList;
import java.util.List;
@@ -35,8 +36,10 @@
* @author Marcel Kolsteren
* @since Jan 28, 2010
*/
-public class SeamSamlPrincipal implements Principal
-{
+public class SeamSamlPrincipal implements Principal, Serializable
+{
+ private static final long serialVersionUID = 507586079806563349L;
+
private NameIDType nameId;
private SamlIdentityProvider identityProvider;
13 years, 9 months
Picketlink SVN: r848 - integration-tests/trunk/ant-scripts.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-24 11:40:32 -0400 (Thu, 24 Mar 2011)
New Revision: 848
Modified:
integration-tests/trunk/ant-scripts/ant-build.xml
Log:
before starting jbas and tomcat, run stop first so that any rogue processes are killed
Modified: integration-tests/trunk/ant-scripts/ant-build.xml
===================================================================
--- integration-tests/trunk/ant-scripts/ant-build.xml 2011-03-23 20:13:30 UTC (rev 847)
+++ integration-tests/trunk/ant-scripts/ant-build.xml 2011-03-24 15:40:32 UTC (rev 848)
@@ -106,7 +106,7 @@
<copy file="${basedir}/../picketlink-sts-tests/src/test/resources/sts-config.properties" todir="${JBAS6_DEPLOY}/../conf/"/>
</target>
- <target name="start-jboss">
+ <target name="start-jboss" depends="stop-jboss">
<echo>Starting Local 8080 </echo>
<exec executable="${jbossas}/bin/run.sh"
osfamily="unix" spawn="true" />
@@ -139,7 +139,7 @@
</antcall>
</target>
- <target name="start-tomcat6" depends="copy-picketlink-tomcat6" >
+ <target name="start-tomcat6" depends="copy-picketlink-tomcat6,stop-tomcat6" >
<echo>Starting Local 8080 </echo>
<exec executable="${TOMCAT6_DEPLOY}/../bin/startup.sh"
osfamily="unix" spawn="true" />
13 years, 9 months
Picketlink SVN: r847 - integration-tests/trunk.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 16:13:30 -0400 (Wed, 23 Mar 2011)
New Revision: 847
Added:
integration-tests/trunk/README
Log:
add readme
Added: integration-tests/trunk/README
===================================================================
--- integration-tests/trunk/README (rev 0)
+++ integration-tests/trunk/README 2011-03-23 20:13:30 UTC (rev 847)
@@ -0,0 +1,19 @@
+**********************************
+* PicketLink Integration Tests *
+**********************************
+
+WORKSPACE LAYOUT
+===============
+We have STS tests in the picketlink-sts-tests module
+We have SAML tests in the picketlink-saml-tests module
+The above modules dont run tests. But just compile the test classes.
+
+There are numerous picketlink-saml-* and picketlink-sts-* modules that test a various combination
+of JBoss AS 5.1, JBoss AS 6.0, Apache Tomcat 6.0 etc
+These modules run the surefire plugin against the test classes directory from picketlink-*-tests modules.
+
+
+TROUBLESHOOTING
+==============
+1. My tests are not detected in the modules. All I see are JBAS started and stopped. No tests are run.
+Solution: Try to run the picketlink-saml-tests and/or picketlink-sts-tests first.
13 years, 9 months
Picketlink SVN: r846 - integration-tests/trunk/picketlink-sts-tests/src/test/resources.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 16:02:56 -0400 (Wed, 23 Mar 2011)
New Revision: 846
Modified:
integration-tests/trunk/picketlink-sts-tests/src/test/resources/sts-config.properties
Log:
PLFED-165: mask password
Modified: integration-tests/trunk/picketlink-sts-tests/src/test/resources/sts-config.properties
===================================================================
--- integration-tests/trunk/picketlink-sts-tests/src/test/resources/sts-config.properties 2011-03-23 20:02:30 UTC (rev 845)
+++ integration-tests/trunk/picketlink-sts-tests/src/test/resources/sts-config.properties 2011-03-23 20:02:56 UTC (rev 846)
@@ -2,5 +2,10 @@
portName=PicketLinkSTSPort
endpointAddress=http://localhost:8080/picketlink-sts/PicketLinkSTS
username=admin
-password=admin
+#password=admin
+password=MASK-0BbleBL2LZk=
+salt=18273645
+iterationCount=56
+#java -cp picketlink-fed-core.jar org.picketlink.identity.federation.core.util.PBEUtils 18273645 56 admin
+#Encoded password: MASK-0BbleBL2LZk=
13 years, 9 months
Picketlink SVN: r845 - in federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core: wstrust and 1 other directory.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 16:02:30 -0400 (Wed, 23 Mar 2011)
New Revision: 845
Modified:
federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/util/StringUtil.java
federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/wstrust/STSClientConfig.java
Log:
PLFED-165: mask password
Modified: federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/util/StringUtil.java
===================================================================
--- federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/util/StringUtil.java 2011-03-23 18:21:50 UTC (rev 844)
+++ federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/util/StringUtil.java 2011-03-23 20:02:30 UTC (rev 845)
@@ -27,6 +27,13 @@
import java.util.regex.Matcher;
import java.util.regex.Pattern;
+import javax.crypto.SecretKey;
+import javax.crypto.SecretKeyFactory;
+import javax.crypto.spec.PBEKeySpec;
+import javax.crypto.spec.PBEParameterSpec;
+
+import org.picketlink.identity.federation.core.constants.PicketLinkFederationConstants;
+
/**
* Utility dealing with Strings
* @author Anil.Saldhana(a)redhat.com
@@ -127,4 +134,33 @@
}
return list;
}
+
+ /**
+ * Given a masked password {@link String}, decode it
+ * @param maskedString a password string that is masked
+ * @param salt Salt
+ * @param iterationCount Iteration Count
+ * @return Decoded String
+ * @throws Exception
+ */
+ public static String decode(String maskedString, String salt, int iterationCount) throws Exception
+ {
+ String pbeAlgo = PicketLinkFederationConstants.PBE_ALGORITHM;
+ if (maskedString.startsWith(PicketLinkFederationConstants.PASS_MASK_PREFIX))
+ {
+ // Create the PBE secret key
+ SecretKeyFactory factory = SecretKeyFactory.getInstance(pbeAlgo);
+
+ char[] password = "somearbitrarycrazystringthatdoesnotmatter".toCharArray();
+ PBEParameterSpec cipherSpec = new PBEParameterSpec(salt.getBytes(), iterationCount);
+ PBEKeySpec keySpec = new PBEKeySpec(password);
+ SecretKey cipherKey = factory.generateSecret(keySpec);
+
+ maskedString = maskedString.substring(PicketLinkFederationConstants.PASS_MASK_PREFIX.length());
+ String decodedValue = PBEUtils.decode64(maskedString, pbeAlgo, cipherKey, cipherSpec);
+
+ maskedString = decodedValue;
+ }
+ return maskedString;
+ }
}
\ No newline at end of file
Modified: federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/wstrust/STSClientConfig.java
===================================================================
--- federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/wstrust/STSClientConfig.java 2011-03-23 18:21:50 UTC (rev 844)
+++ federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/wstrust/STSClientConfig.java 2011-03-23 20:02:30 UTC (rev 845)
@@ -26,6 +26,9 @@
import java.io.InputStream;
import java.util.Properties;
+import org.picketlink.identity.federation.core.constants.PicketLinkFederationConstants;
+import org.picketlink.identity.federation.core.util.StringUtil;
+
/**
* STSClientConfig has the ability to either programatically construct the configuration
* needed for {@link STSClient} or parse a file containing the configuration parameters.
@@ -48,223 +51,254 @@
* }</pre>
*
* @author <a href="mailto:dbevenius@jboss.com">Daniel Bevenius</a>
+ * @author Anil Saldhana
*/
public class STSClientConfig
{
- public static final String DEFAULT_CONFIG_FILE = "sts-client.properties";
-
- public static final String SERVICE_NAME = "serviceName";
- public static final String PORT_NAME = "portName";
- public static final String ENDPOINT_ADDRESS = "endpointAddress";
- public static final String USERNAME = "username";
- public static final String PASSWORD = "password";
- public static final String TOKEN_TYPE = "tokenType";
+ public static final String DEFAULT_CONFIG_FILE = "sts-client.properties";
- private String serviceName;
- private String portName;
- private String endpointAddress;
- private String username;
- private String password;
+ public static final String SERVICE_NAME = "serviceName";
- private STSClientConfig(final Builder builder)
- {
- serviceName = builder.serviceName;
- portName = builder.portName;
- endpointAddress = builder.endpointAddress;
- username = builder.username;
- password = builder.password;
- }
+ public static final String PORT_NAME = "portName";
- public String getServiceName()
- {
- return serviceName;
- }
+ public static final String ENDPOINT_ADDRESS = "endpointAddress";
- public String getPortName()
- {
- return portName;
- }
+ public static final String USERNAME = "username";
- public String getEndPointAddress()
- {
- return endpointAddress;
- }
+ public static final String PASSWORD = "password";
- public String getUsername()
- {
- return username;
- }
+ public static final String TOKEN_TYPE = "tokenType";
- public String getPassword()
- {
- return password;
- }
-
- public String toString()
- {
- return getClass().getSimpleName() + "[serviceName=" + serviceName + ", portName=" + portName + ", endpointAddress=" + endpointAddress + "]";
- }
+ private final String serviceName;
- public static class Builder
- {
- private String serviceName;
- private String portName;
- private String endpointAddress;
- private String username;
- private String password;
-
- public Builder()
- {
- }
-
- public Builder(final String configFile)
- {
- populate(configFile);
- }
+ private final String portName;
- public Builder serviceName(final String serviceName)
- {
- this.serviceName = serviceName;
- return this;
- }
+ private final String endpointAddress;
- public Builder portName(final String portName)
- {
- this.portName = portName;
- return this;
- }
+ private final String username;
- public Builder endpointAddress(final String address)
- {
- this.endpointAddress = address;
- return this;
- }
+ private final String password;
- public Builder username(final String username)
- {
- this.username = username;
- return this;
- }
+ private STSClientConfig(final Builder builder)
+ {
+ serviceName = builder.serviceName;
+ portName = builder.portName;
+ endpointAddress = builder.endpointAddress;
+ username = builder.username;
+ password = builder.password;
+ }
- public Builder password(final String password)
- {
- this.password = password;
- return this;
- }
-
- public String getServiceName()
- {
- return serviceName;
- }
+ public String getServiceName()
+ {
+ return serviceName;
+ }
- public String getPortName()
- {
- return portName;
- }
+ public String getPortName()
+ {
+ return portName;
+ }
- public String getEndpointAddress()
- {
- return endpointAddress;
- }
+ public String getEndPointAddress()
+ {
+ return endpointAddress;
+ }
- public String getUsername()
- {
- return username;
- }
+ public String getUsername()
+ {
+ return username;
+ }
- public String getPassword()
- {
- return password;
- }
+ public String getPassword()
+ {
+ return password;
+ }
- public STSClientConfig build()
- {
- validate(this);
- return new STSClientConfig(this);
- }
+ public String toString()
+ {
+ return getClass().getSimpleName() + "[serviceName=" + serviceName + ", portName=" + portName
+ + ", endpointAddress=" + endpointAddress + "]";
+ }
- private void populate(final String configFile)
- {
- InputStream in = null;
-
- try
+ public static class Builder
+ {
+ private String serviceName;
+
+ private String portName;
+
+ private String endpointAddress;
+
+ private String username;
+
+ private String password;
+
+ public Builder()
+ {
+ }
+
+ public Builder(final String configFile)
+ {
+ populate(configFile);
+ }
+
+ public Builder serviceName(final String serviceName)
+ {
+ this.serviceName = serviceName;
+ return this;
+ }
+
+ public Builder portName(final String portName)
+ {
+ this.portName = portName;
+ return this;
+ }
+
+ public Builder endpointAddress(final String address)
+ {
+ this.endpointAddress = address;
+ return this;
+ }
+
+ public Builder username(final String username)
+ {
+ this.username = username;
+ return this;
+ }
+
+ public Builder password(final String password)
+ {
+ this.password = password;
+ return this;
+ }
+
+ public String getServiceName()
+ {
+ return serviceName;
+ }
+
+ public String getPortName()
+ {
+ return portName;
+ }
+
+ public String getEndpointAddress()
+ {
+ return endpointAddress;
+ }
+
+ public String getUsername()
+ {
+ return username;
+ }
+
+ public String getPassword()
+ {
+ return password;
+ }
+
+ public STSClientConfig build()
+ {
+ validate(this);
+ return new STSClientConfig(this);
+ }
+
+ private void populate(final String configFile)
+ {
+ InputStream in = null;
+
+ try
+ {
+ in = getResource(configFile);
+ if (in == null)
{
- in = getResource(configFile);
- if (in == null)
- {
- throw new IllegalStateException("Could not find properties file " + configFile);
-
- }
- final Properties properties = new Properties();
- properties.load(in);
- this.serviceName = properties.getProperty(SERVICE_NAME);
- this.portName = properties.getProperty(PORT_NAME);
- this.endpointAddress = properties.getProperty(ENDPOINT_ADDRESS);
- this.username = properties.getProperty(USERNAME);
- this.password = properties.getProperty(PASSWORD);
+ throw new IllegalStateException("Could not find properties file " + configFile);
+
}
- catch (IOException e)
+ final Properties properties = new Properties();
+ properties.load(in);
+ this.serviceName = properties.getProperty(SERVICE_NAME);
+ this.portName = properties.getProperty(PORT_NAME);
+ this.endpointAddress = properties.getProperty(ENDPOINT_ADDRESS);
+ this.username = properties.getProperty(USERNAME);
+ this.password = properties.getProperty(PASSWORD);
+
+ if (this.password.startsWith(PicketLinkFederationConstants.PASS_MASK_PREFIX))
{
- throw new IllegalStateException("Could not load properties from " + configFile);
+ //password is masked
+ String salt = properties.getProperty(PicketLinkFederationConstants.SALT);
+ int iterationCount = Integer.parseInt(properties
+ .getProperty(PicketLinkFederationConstants.ITERATION_COUNT));
+ try
+ {
+ this.password = StringUtil.decode(password, salt, iterationCount);
+ }
+ catch (Exception e)
+ {
+ throw new RuntimeException("Unable to decode password:" + this.password);
+ }
}
- finally
+ }
+ catch (IOException e)
+ {
+ throw new IllegalStateException("Could not load properties from " + configFile);
+ }
+ finally
+ {
+ try
{
- try
- {
- if (in != null)
- in.close();
- }
- catch (final IOException ignored)
- {
- ignored.printStackTrace();
- }
+ if (in != null)
+ in.close();
}
- }
+ catch (final IOException ignored)
+ {
+ ignored.printStackTrace();
+ }
+ }
+ }
- private void validate(Builder builder)
- {
- checkPropertyShowValue(serviceName, SERVICE_NAME);
- checkPropertyShowValue(portName, PORT_NAME);
- checkPropertyShowValue(endpointAddress, endpointAddress);
- checkProperty(username, USERNAME);
- checkProperty(password, PASSWORD);
- }
+ private void validate(Builder builder)
+ {
+ checkPropertyShowValue(serviceName, SERVICE_NAME);
+ checkPropertyShowValue(portName, PORT_NAME);
+ checkPropertyShowValue(endpointAddress, endpointAddress);
+ checkProperty(username, USERNAME);
+ checkProperty(password, PASSWORD);
+ }
- private void checkPropertyShowValue(final String propertyName, final String propertyValue)
- {
- if (propertyValue == null || propertyValue.equals(""))
- throw new IllegalArgumentException(propertyName + " property must not be null or empty was:" + propertyValue);
- }
+ private void checkPropertyShowValue(final String propertyName, final String propertyValue)
+ {
+ if (propertyValue == null || propertyValue.equals(""))
+ throw new IllegalArgumentException(propertyName + " property must not be null or empty was:"
+ + propertyValue);
+ }
- private void checkProperty(final String propertyName, final String propertyValue)
- {
- if (propertyValue == null || propertyValue.equals(""))
- throw new IllegalArgumentException(propertyName + " property must not be null");
- }
- }
+ private void checkProperty(final String propertyName, final String propertyValue)
+ {
+ if (propertyValue == null || propertyValue.equals(""))
+ throw new IllegalArgumentException(propertyName + " property must not be null");
+ }
+ }
- private static InputStream getResource(String resource) throws IOException
- {
- // Try it as a File resource...
- final File file = new File(resource);
+ private static InputStream getResource(String resource) throws IOException
+ {
+ // Try it as a File resource...
+ final File file = new File(resource);
- if (file.exists() && !file.isDirectory())
- {
- return new FileInputStream(file);
- }
- // Try it as a classpath resource ...
- final ClassLoader threadClassLoader = Thread.currentThread().getContextClassLoader() ;
- if (threadClassLoader != null)
- {
- final InputStream is = threadClassLoader.getResourceAsStream(resource) ;
- if (is != null)
- {
- return is ;
- }
- }
-
- return null;
- }
+ if (file.exists() && !file.isDirectory())
+ {
+ return new FileInputStream(file);
+ }
+ // Try it as a classpath resource ...
+ final ClassLoader threadClassLoader = Thread.currentThread().getContextClassLoader();
+ if (threadClassLoader != null)
+ {
+ final InputStream is = threadClassLoader.getResourceAsStream(resource);
+ if (is != null)
+ {
+ return is;
+ }
+ }
+ return null;
+ }
+
}
-
13 years, 9 months
Picketlink SVN: r844 - integration-tests/trunk.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 14:21:50 -0400 (Wed, 23 Mar 2011)
New Revision: 844
Modified:
integration-tests/trunk/pom.xml
Log:
add the as6 sts module
Modified: integration-tests/trunk/pom.xml
===================================================================
--- integration-tests/trunk/pom.xml 2011-03-23 17:45:02 UTC (rev 843)
+++ integration-tests/trunk/pom.xml 2011-03-23 18:21:50 UTC (rev 844)
@@ -22,6 +22,7 @@
<module>picketlink-sts-tests</module>
<module>picketlink-sts-jbas51-native</module>
<module>picketlink-sts-jbas51-cxf</module>
+ <module>picketlink-sts-jbas6-cxf</module>
<module>picketlink-openid-tests</module>
<module>picketlink-pdp-tests</module>
</modules>
13 years, 9 months
Picketlink SVN: r843 - in integration-tests/trunk: picketlink-sts-jbas6-cxf and 1 other directory.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 13:45:02 -0400 (Wed, 23 Mar 2011)
New Revision: 843
Added:
integration-tests/trunk/picketlink-sts-jbas6-cxf/
integration-tests/trunk/picketlink-sts-jbas6-cxf/pom.xml
Removed:
integration-tests/trunk/picketlink-sts-jbas6-cxf/pom.xml
integration-tests/trunk/picketlink-sts-jbas6-native/
Log:
rename workspace to indicate cxf
Deleted: integration-tests/trunk/picketlink-sts-jbas6-cxf/pom.xml
===================================================================
--- integration-tests/trunk/picketlink-sts-jbas6-native/pom.xml 2011-03-23 17:13:18 UTC (rev 840)
+++ integration-tests/trunk/picketlink-sts-jbas6-cxf/pom.xml 2011-03-23 17:45:02 UTC (rev 843)
@@ -1,185 +0,0 @@
-<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">
- <parent>
- <groupId>org.picketlink</groupId>
- <artifactId>picketlink-integration-tests-parent</artifactId>
- <version>2.0.0-SNAPSHOT</version>
- <relativePath>../parent</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>picketlink-integration-sts-jbas6-native</artifactId>
- <packaging>jar</packaging>
- <name>PicketLink Integration Tests for WS-Trust (STS) - JBoss AS 6 - Native Stack</name>
- <url>http://labs.jboss.org/portal/picketlink/</url>
- <description>PicketLink Federation Tests to be run in a continous integration environment such as Hudson</description>
- <licenses>
- <license>
- <name>lgpl</name>
- <url>http://repository.jboss.com/licenses/lgpl.txt</url>
- </license>
- </licenses>
- <organization>
- <name>JBoss Inc.</name>
- <url>http://www.jboss.org</url>
- </organization>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.4.3</version>
- <configuration>
- <phase>test</phase>
- <!-- <skipTests>true</skipTests> -->
- <testClassesDirectory>${basedir}/../picketlink-sts-tests/target/test-classes</testClassesDirectory>
- <testResourcesDirectory>${basedir}/../picketlink-sts-tests/target/test-classes</testResourcesDirectory>
- <printSummary>true</printSummary>
- <disableXmlReport>false</disableXmlReport>
- <includes>
- <include>**/**TestCase.java</include>
- </includes>
- <forkMode>pertest</forkMode>
- <argLine>-Djava.endorsed.dirs=${basedir}/../picketlink-sts-tests/src/test/resources/endorsed</argLine>
- <useFile>false</useFile>
- <trimStackTrace>false</trimStackTrace>
- <reportsDirectory>${project.build.directory}/surefire-reports-native</reportsDirectory>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <id>phase-1</id>
- <phase>compile</phase>
- <configuration>
- <tasks>
- <property name="version" value="${project.version}"/>
- <property name="depclasspath" refid="maven.dependency.classpath"/>
- <property name="localRepository" value="${user.home}/.m2/repository"/>
- <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="init-jboss6" />
- <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="install-jbws-cxf-jbas6" />
- <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="copy-sts-props-jbas6" />
- <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="start-jboss6" />
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- <execution>
- <id>phase-2</id>
- <phase>test</phase>
- <configuration>
- <tasks>
- <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="stop-jboss6" />
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <dependencies>
- <dependency>
- <groupId>org.picketlink</groupId>
- <artifactId>picketlink-fed</artifactId>
- <version>${version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.security</groupId>
- <artifactId>jbosssx-client</artifactId>
- <version>2.0.4.SP6</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.jboss.jbossas</groupId>
- <artifactId>jboss-as-server</artifactId>
- <classifier>jmx-invoker-adaptor-client</classifier>
- <version>6.0.0.Final</version>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>trove</groupId>
- <artifactId>trove</artifactId>
- </exclusion>
- <exclusion>
- <groupId>wutka-dtdparser</groupId>
- <artifactId>dtdparser121</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>httpunit</groupId>
- <artifactId>httpunit</artifactId>
- <version>1.7</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>rhino</groupId>
- <artifactId>js</artifactId>
- <version>1.6R7</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>apache-log4j</groupId>
- <artifactId>log4j</artifactId>
- <version>1.2.14</version>
- </dependency>
- <dependency>
- <groupId>nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.12</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>apache-xerces</groupId>
- <artifactId>xercesImpl</artifactId>
- <version>2.9.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>ant-contrib</groupId>
- <artifactId>ant-contrib</artifactId>
- <version>1.0b2</version>
- </dependency>
-
- </dependencies>
-
- <reporting>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <doclet>org.jboss.apiviz.APIviz</doclet>
- <docletArtifact>
- <groupId>org.jboss.apiviz</groupId>
- <artifactId>apiviz</artifactId>
- <version>1.2.5.GA</version>
- </docletArtifact>
- <additionalparam>
- -charset UTF-8
- -docencoding UTF-8
- -version
- -author
- -breakiterator
- -windowtitle "${project.name} ${project.version} API Reference"
- -doctitle "${project.name} ${project.version} API Reference"
- -bottom "Copyright © ${project.inceptionYear}-Present ${project.organization.name}. All Rights Reserved."
- -link http://java.sun.com/javase/6/docs/api/
- -sourceclasspath ${project.build.outputDirectory}
- </additionalparam>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </reporting>
-</project>
Copied: integration-tests/trunk/picketlink-sts-jbas6-cxf/pom.xml (from rev 842, integration-tests/trunk/picketlink-sts-jbas6-native/pom.xml)
===================================================================
--- integration-tests/trunk/picketlink-sts-jbas6-cxf/pom.xml (rev 0)
+++ integration-tests/trunk/picketlink-sts-jbas6-cxf/pom.xml 2011-03-23 17:45:02 UTC (rev 843)
@@ -0,0 +1,185 @@
+<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">
+ <parent>
+ <groupId>org.picketlink</groupId>
+ <artifactId>picketlink-integration-tests-parent</artifactId>
+ <version>2.0.0-SNAPSHOT</version>
+ <relativePath>../parent</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>picketlink-integration-sts-jbas6-cxf</artifactId>
+ <packaging>jar</packaging>
+ <name>PicketLink Integration Tests for WS-Trust (STS) - JBoss AS 6 - CXF Stack</name>
+ <url>http://labs.jboss.org/portal/picketlink/</url>
+ <description>PicketLink Federation Tests to be run in a continous integration environment such as Hudson</description>
+ <licenses>
+ <license>
+ <name>lgpl</name>
+ <url>http://repository.jboss.com/licenses/lgpl.txt</url>
+ </license>
+ </licenses>
+ <organization>
+ <name>JBoss Inc.</name>
+ <url>http://www.jboss.org</url>
+ </organization>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.4.3</version>
+ <configuration>
+ <phase>test</phase>
+ <!-- <skipTests>true</skipTests> -->
+ <testClassesDirectory>${basedir}/../picketlink-sts-tests/target/test-classes</testClassesDirectory>
+ <testResourcesDirectory>${basedir}/../picketlink-sts-tests/target/test-classes</testResourcesDirectory>
+ <printSummary>true</printSummary>
+ <disableXmlReport>false</disableXmlReport>
+ <includes>
+ <include>**/**TestCase.java</include>
+ </includes>
+ <forkMode>pertest</forkMode>
+ <argLine>-Djava.endorsed.dirs=${basedir}/../picketlink-sts-tests/src/test/resources/endorsed</argLine>
+ <useFile>false</useFile>
+ <trimStackTrace>false</trimStackTrace>
+ <reportsDirectory>${project.build.directory}/surefire-reports-native</reportsDirectory>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>phase-1</id>
+ <phase>compile</phase>
+ <configuration>
+ <tasks>
+ <property name="version" value="${project.version}"/>
+ <property name="depclasspath" refid="maven.dependency.classpath"/>
+ <property name="localRepository" value="${user.home}/.m2/repository"/>
+ <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="init-jboss6" />
+ <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="install-jbws-cxf-jbas6" />
+ <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="copy-sts-props-jbas6" />
+ <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="start-jboss6" />
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>phase-2</id>
+ <phase>test</phase>
+ <configuration>
+ <tasks>
+ <ant antfile="${basedir}/../ant-scripts/ant-build.xml" target="stop-jboss6" />
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>org.picketlink</groupId>
+ <artifactId>picketlink-fed</artifactId>
+ <version>${version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.security</groupId>
+ <artifactId>jbosssx-client</artifactId>
+ <version>2.0.4.SP6</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jboss.jbossas</groupId>
+ <artifactId>jboss-as-server</artifactId>
+ <classifier>jmx-invoker-adaptor-client</classifier>
+ <version>6.0.0.Final</version>
+ <scope>test</scope>
+ <exclusions>
+ <exclusion>
+ <groupId>trove</groupId>
+ <artifactId>trove</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>wutka-dtdparser</groupId>
+ <artifactId>dtdparser121</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>httpunit</groupId>
+ <artifactId>httpunit</artifactId>
+ <version>1.7</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>rhino</groupId>
+ <artifactId>js</artifactId>
+ <version>1.6R7</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>apache-log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+ <dependency>
+ <groupId>nekohtml</groupId>
+ <artifactId>nekohtml</artifactId>
+ <version>1.9.12</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>apache-xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.9.1</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>ant-contrib</groupId>
+ <artifactId>ant-contrib</artifactId>
+ <version>1.0b2</version>
+ </dependency>
+
+ </dependencies>
+
+ <reporting>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <configuration>
+ <doclet>org.jboss.apiviz.APIviz</doclet>
+ <docletArtifact>
+ <groupId>org.jboss.apiviz</groupId>
+ <artifactId>apiviz</artifactId>
+ <version>1.2.5.GA</version>
+ </docletArtifact>
+ <additionalparam>
+ -charset UTF-8
+ -docencoding UTF-8
+ -version
+ -author
+ -breakiterator
+ -windowtitle "${project.name} ${project.version} API Reference"
+ -doctitle "${project.name} ${project.version} API Reference"
+ -bottom "Copyright © ${project.inceptionYear}-Present ${project.organization.name}. All Rights Reserved."
+ -link http://java.sun.com/javase/6/docs/api/
+ -sourceclasspath ${project.build.outputDirectory}
+ </additionalparam>
+ <encoding>UTF-8</encoding>
+ </configuration>
+ </plugin>
+ </plugins>
+ </reporting>
+</project>
13 years, 9 months
Picketlink SVN: r842 - integration-tests/trunk/picketlink-sts-jbas6-native.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 13:42:51 -0400 (Wed, 23 Mar 2011)
New Revision: 842
Modified:
integration-tests/trunk/picketlink-sts-jbas6-native/pom.xml
Log:
change to cxf
Modified: integration-tests/trunk/picketlink-sts-jbas6-native/pom.xml
===================================================================
--- integration-tests/trunk/picketlink-sts-jbas6-native/pom.xml 2011-03-23 17:40:40 UTC (rev 841)
+++ integration-tests/trunk/picketlink-sts-jbas6-native/pom.xml 2011-03-23 17:42:51 UTC (rev 842)
@@ -6,9 +6,9 @@
<relativePath>../parent</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
- <artifactId>picketlink-integration-sts-jbas6-native</artifactId>
+ <artifactId>picketlink-integration-sts-jbas6-cxf</artifactId>
<packaging>jar</packaging>
- <name>PicketLink Integration Tests for WS-Trust (STS) - JBoss AS 6 - Native Stack</name>
+ <name>PicketLink Integration Tests for WS-Trust (STS) - JBoss AS 6 - CXF Stack</name>
<url>http://labs.jboss.org/portal/picketlink/</url>
<description>PicketLink Federation Tests to be run in a continous integration environment such as Hudson</description>
<licenses>
13 years, 9 months
Picketlink SVN: r841 - federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/factories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 13:40:40 -0400 (Wed, 23 Mar 2011)
New Revision: 841
Modified:
federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/factories/SecurityActions.java
Log:
workaround AS6 issues with mbean server domains
Modified: federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/factories/SecurityActions.java
===================================================================
--- federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/factories/SecurityActions.java 2011-03-23 17:13:18 UTC (rev 840)
+++ federation/trunk/picketlink-fed-core/src/main/java/org/picketlink/identity/federation/core/factories/SecurityActions.java 2011-03-23 17:40:40 UTC (rev 841)
@@ -40,7 +40,7 @@
* @version $Revision: 1 $
*/
class SecurityActions
-{
+{
static SecurityContext createSecurityContext() throws PrivilegedActionException
{
return AccessController.doPrivileged(new PrivilegedExceptionAction<SecurityContext>()
@@ -51,24 +51,33 @@
}
});
}
-
+
static MBeanServer getJBossMBeanServer()
{
- return AccessController.doPrivileged( new PrivilegedAction<MBeanServer>()
- {
+ return AccessController.doPrivileged(new PrivilegedAction<MBeanServer>()
+ {
public MBeanServer run()
- {
- for (Iterator<MBeanServer> i = MBeanServerFactory.findMBeanServer(null).iterator(); i.hasNext(); )
+ {
+ //Differences in JBAS5.1, 6.0 with the "jboss" mbean server.
+ MBeanServer cached = null;
+
+ for (Iterator<MBeanServer> i = MBeanServerFactory.findMBeanServer(null).iterator(); i.hasNext();)
{
MBeanServer server = i.next();
+
+ if (server.getDefaultDomain().contains("Default"))
+ cached = server;
+
if (server.getDefaultDomain().equals("jboss"))
{
return server;
}
}
+ if (cached != null)
+ return cached; //We did not find one with jboss but there is "DefaultDomain" which is the norm in AS6
throw new IllegalStateException("No 'jboss' MBeanServer found!");
}
});
-
+
}
}
\ No newline at end of file
13 years, 9 months
Picketlink SVN: r840 - in integration-tests/trunk: ant-scripts and 56 other directories.
by picketlink-commits@lists.jboss.org
Author: anil.saldhana(a)jboss.com
Date: 2011-03-23 13:13:18 -0400 (Wed, 23 Mar 2011)
New Revision: 840
Modified:
integration-tests/trunk/
integration-tests/trunk/ant-scripts/
integration-tests/trunk/common-dist/
integration-tests/trunk/common-dist/jbossas/
integration-tests/trunk/common-dist/jbossas/5.1.0.GA/
integration-tests/trunk/common-dist/jbossas/6.0/
integration-tests/trunk/common-dist/jbossws/
integration-tests/trunk/common-dist/jbossws/3.3.1.GA/
integration-tests/trunk/common-dist/scripts/
integration-tests/trunk/common-dist/tomcat/
integration-tests/trunk/common-dist/tomcat/6.0.26/
integration-tests/trunk/parent/
integration-tests/trunk/picketlink-openid-tests/
integration-tests/trunk/picketlink-openid-tests/src/
integration-tests/trunk/picketlink-openid-tests/src/test/
integration-tests/trunk/picketlink-openid-tests/src/test/java/
integration-tests/trunk/picketlink-openid-tests/src/test/java/org/
integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink/
integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink/test/
integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink/test/integration/
integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink/test/integration/openid/
integration-tests/trunk/picketlink-pdp-tests/
integration-tests/trunk/picketlink-pdp-tests/src/
integration-tests/trunk/picketlink-pdp-tests/src/test/
integration-tests/trunk/picketlink-pdp-tests/src/test/java/
integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/
integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink/
integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink/test/
integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink/test/integration/
integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink/test/integration/pdp/
integration-tests/trunk/picketlink-pdp-tests/src/test/resources/
integration-tests/trunk/picketlink-saml-jbas51/
integration-tests/trunk/picketlink-saml-jbas6/
integration-tests/trunk/picketlink-saml-tests/
integration-tests/trunk/picketlink-saml-tests/src/
integration-tests/trunk/picketlink-saml-tests/src/test/
integration-tests/trunk/picketlink-saml-tests/src/test/java/
integration-tests/trunk/picketlink-saml-tests/src/test/java/org/
integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink/
integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink/test/
integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink/test/integration/
integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink/test/integration/saml2/
integration-tests/trunk/picketlink-saml-tests/src/test/resources/
integration-tests/trunk/picketlink-saml-tomcat6/
integration-tests/trunk/picketlink-sts-jbas51-cxf/
integration-tests/trunk/picketlink-sts-jbas51-native/
integration-tests/trunk/picketlink-sts-jbas6-native/
integration-tests/trunk/picketlink-sts-tests/
integration-tests/trunk/picketlink-sts-tests/src/
integration-tests/trunk/picketlink-sts-tests/src/test/
integration-tests/trunk/picketlink-sts-tests/src/test/java/
integration-tests/trunk/picketlink-sts-tests/src/test/java/org/
integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink/
integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink/test/
integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink/test/integration/
integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink/test/integration/sts/
integration-tests/trunk/picketlink-sts-tests/src/test/resources/
integration-tests/trunk/picketlink-sts-tests/src/test/resources/keystore/
Log:
recursively set svn ignore
Property changes on: integration-tests/trunk
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/ant-scripts
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/jbossas
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/jbossas/5.1.0.GA
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/jbossas/6.0
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/jbossws
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/jbossws/3.3.1.GA
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/scripts
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/tomcat
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/common-dist/tomcat/6.0.26
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/parent
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src/test/java
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src/test/java/org
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink/test/integration
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-openid-tests/src/test/java/org/picketlink/test/integration/openid
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test/java
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test/java/org
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink/test/integration
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test/java/org/picketlink/test/integration/pdp
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-pdp-tests/src/test/resources
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-jbas51
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-jbas6
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test/java
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test/java/org
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink/test/integration
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test/java/org/picketlink/test/integration/saml2
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tests/src/test/resources
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-saml-tomcat6
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-jbas51-cxf
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-jbas51-native
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-jbas6-native
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/java
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/java/org
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink/test
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink/test/integration
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/java/org/picketlink/test/integration/sts
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/resources
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
Property changes on: integration-tests/trunk/picketlink-sts-tests/src/test/resources/keystore
___________________________________________________________________
Modified: svn:ignore
- .settings
.classpath
.project
target
target-eclipse
+ .settings
.classpath
.project
target
target-eclipse
.metadata
13 years, 9 months