Added: servicemix/smx4/kernel/trunk/jaas/jaas-keystore/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/jaas/jaas-keystore/pom.xml?rev=659675&view=auto
==============================================================================
--- servicemix/smx4/kernel/trunk/jaas/jaas-keystore/pom.xml (added)
+++ servicemix/smx4/kernel/trunk/jaas/jaas-keystore/pom.xml Fri May 23 14:48:00 
2008
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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";>
+
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements.  See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version 2.0
+        (the "License"); you may not use this file except in compliance with
+        the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+        Unless required by applicable law or agreed to in writing, software
+        distributed under the License is distributed on an "AS IS" BASIS,
+        WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 
implied.
+        See the License for the specific language governing permissions and
+        limitations under the License.
+    -->
+
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.apache.servicemix.kernel.jaas</groupId>
+        <artifactId>jaas</artifactId>
+        <version>1.0-m4-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.kernel.jaas</groupId>
+    <artifactId>org.apache.servicemix.kernel.jaas.keystore</artifactId>
+    <packaging>bundle</packaging>
+    <version>1.0-m4-SNAPSHOT</version>
+    <name>Apache ServiceMix Kernel :: JAAS Keystore</name>
+
+    <description>
+        Provides the JAAS Config
+    </description>
+
+    <dependencies>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        
<Bundle-SymbolicName>${artifactId}</Bundle-SymbolicName>
+                        <Export-Package></Export-Package>
+                        
<Import-Package>org.apache.servicemix.kernel.jaas.config</Import-Package>
+                        
<Spring-Context>*;publish-context:=false;create-asynchronously:=false</Spring-Context>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Added: 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/META-INF/spring/servicemix-keystore.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/META-INF/spring/servicemix-keystore.xml?rev=659675&view=auto
==============================================================================
--- 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/META-INF/spring/servicemix-keystore.xml
 (added)
+++ 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/META-INF/spring/servicemix-keystore.xml
 Fri May 23 14:48:00 2008
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+
+-->
+<beans xmlns="http://www.springframework.org/schema/beans";
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xmlns:util="http://www.springframework.org/schema/util";
+       xmlns:osgi="http://www.springframework.org/schema/osgi";
+       xmlns:jaas="http://servicemix.apache.org/jaas";
+       xsi:schemaLocation="
+  http://www.springframework.org/schema/beans
+  http://www.springframework.org/schema/beans/spring-beans.xsd
+  http://www.springframework.org/schema/util
+  http://www.springframework.org/schema/util/spring-util.xsd
+  http://www.springframework.org/schema/osgi
+  http://www.springframework.org/schema/osgi/spring-osgi.xsd
+  http://servicemix.apache.org/jaas
+  http://servicemix.apache.org/schema/servicemix-jaas.xsd";>
+
+    <jaas:keystore id="RshKeystore" rank="-1"
+                   
path="classpath:org/apache/servicemix/kernel/jaas/keystore/keys.shell.cert"
+                   keystorePassword="servicemixpw"
+                   keyPasswords="servicemix=servicemixpw" />
+
+    <jaas:keystore id="RshTruststore" rank="-1"
+                   
path="classpath:org/apache/servicemix/kernel/jaas/keystore/trust.shell.cert"
+                   keystorePassword="servicemixpw" />
+
+</beans>
\ No newline at end of file

Added: 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/certificate
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/certificate?rev=659675&view=auto
==============================================================================
--- 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/certificate
 (added)
+++ 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/certificate
 Fri May 23 14:48:00 2008
@@ -0,0 +1,8 @@
+-----BEGIN CERTIFICATE-----
+MIIBPDCB5wIESDa90DANBgkqhkiG9w0BAQQFADAoMSYwJAYDVQQDEx1odHRwOi8vc2VydmljZW1p
+eC5hcGFjaGUub3JnLzAeFw0wODA1MjMxMjUxMjhaFw0xODA1MjExMjUxMjhaMCgxJjAkBgNVBAMT
+HWh0dHA6Ly9zZXJ2aWNlbWl4LmFwYWNoZS5vcmcvMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJJm
+69oD3REcKJxTCl8/b+hAY7X2KefyWnIhspnMZYsyUzpYAa+rXhIfxeHOc8vIR1XyTuhIiTZDuygQ
+Ept0X2kCAwEAATANBgkqhkiG9w0BAQQFAANBAIwKbFtyZqPO2rhJyF7fBs6WKV0iqPxOwkwnWE5X
+SsroAsGA2UgeNizFktSUFU2oGq12YWvtiQAEQ/qwuQXbBOk=
+-----END CERTIFICATE-----

Added: 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/keys.shell.cert
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/keys.shell.cert?rev=659675&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/keys.shell.cert
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/trust.shell.cert
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/trust.shell.cert?rev=659675&view=auto
==============================================================================
Binary file - no diff available.

Propchange: 
servicemix/smx4/kernel/trunk/jaas/jaas-keystore/src/main/resources/org/apache/servicemix/kernel/jaas/keystore/trust.shell.cert
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Modified: servicemix/smx4/kernel/trunk/jaas/pom.xml
URL: 
http://svn.apache.org/viewvc/servicemix/smx4/kernel/trunk/jaas/pom.xml?rev=659675&r1=659674&r2=659675&view=diff
==============================================================================
--- servicemix/smx4/kernel/trunk/jaas/pom.xml (original)
+++ servicemix/smx4/kernel/trunk/jaas/pom.xml Fri May 23 14:48:00 2008
@@ -36,6 +36,7 @@
     <modules>
         <module>jaas-boot</module>
         <module>jaas-config</module>
+        <module>jaas-keystore</module>
     </modules>
 
 </project>


Reply via email to