~ubuntu-branches/ubuntu/oneiric/libjboss-remoting-java/oneiric

« back to all changes in this revision

Viewing changes to tests/org/jboss/test/remoting/transport/http/ssl/timeout/HttpsPerInvocationTimeoutTestCase.java

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2011-09-09 14:01:03 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: package-import@ubuntu.com-20110909140103-hqokx61534tas9rg
Tags: 2.5.3.SP1-1
* Newer but not newest upstream release. Do not build samples.
* Change debian/watch to upstream's svn repo.
* Add patch to fix compile error caused by tomcat update.
  (Closes: #628303)
* Switch to source format 3.0.
* Switch to debhelper level 7.
* Remove useless Depends.
* Update Standards-Version: 3.9.2.
* Update README.source.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
package org.jboss.test.remoting.transport.http.ssl.timeout;
2
 
 
3
 
import java.util.Map;
4
 
 
5
 
import org.jboss.remoting.transport.http.ssl.HTTPSClientInvoker;
6
 
import org.jboss.test.remoting.timeout.SSLPerInvocationTimeoutTestRoot;
7
 
 
8
 
 
9
 
/**
10
 
 * See javadoc for PerInvocationTimeoutTestRoot.
11
 
 *   
12
 
 * @author <a href="ron.sigal@jboss.com">Ron Sigal</a>
13
 
 * @version $Revision: 2207 $
14
 
 * <p>
15
 
 * Copyright Feb 6, 2007
16
 
 * </p>
17
 
 */
18
 
public class HttpsPerInvocationTimeoutTestCase extends SSLPerInvocationTimeoutTestRoot
19
 
{
20
 
   protected void addClientConfig(Map config)
21
 
   {  
22
 
      super.addClientConfig(config);
23
 
      config.put(HTTPSClientInvoker.IGNORE_HTTPS_HOST, "true");
24
 
   }
25
 
   
26
 
   protected String getTransport()
27
 
   {
28
 
      return "https";
29
 
   }
30
 
}