[jbossws-commits] JBossWS SVN: r16484 - spi/trunk/src/main/java/org/jboss/wsf/spi/deployer.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Wed Jul 18 10:26:56 EDT 2012


Author: alessio.soldano at jboss.com
Date: 2012-07-18 10:26:55 -0400 (Wed, 18 Jul 2012)
New Revision: 16484

Modified:
   spi/trunk/src/main/java/org/jboss/wsf/spi/deployer/Deployer.java
Log:
[JBWS-3446] Allow jbossws tests to install a test https connector on target server


Modified: spi/trunk/src/main/java/org/jboss/wsf/spi/deployer/Deployer.java
===================================================================
--- spi/trunk/src/main/java/org/jboss/wsf/spi/deployer/Deployer.java	2012-07-18 13:21:30 UTC (rev 16483)
+++ spi/trunk/src/main/java/org/jboss/wsf/spi/deployer/Deployer.java	2012-07-18 14:26:55 UTC (rev 16484)
@@ -57,4 +57,19 @@
      * @param name
      */
     void removeSecurityDomain(String name) throws Exception;
+    
+    /**
+     * Adds a test https connector
+     * 
+     * @param sslOptions
+     * @throws Exception
+     */
+    public void addHttpsConnector(Map<String, String> sslOptions) throws Exception;
+    
+    /**
+     * Remove the test https connector
+     * 
+     * @throws Exception
+     */
+    public void removeHttpsConnector() throws Exception;
 }



More information about the jbossws-commits mailing list