Author: dkulp
Date: Tue May 22 21:19:59 2012
New Revision: 1341634

URL: http://svn.apache.org/viewvc?rev=1341634&view=rev
Log:
Merged revisions 1338375 via  svn merge from
https://svn.apache.org/repos/asf/cxf/trunk

........
  r1338375 | dkulp | 2012-05-14 16:09:48 -0400 (Mon, 14 May 2012) | 1 line
  
  Add ability to register a port as an int
........

Modified:
    cxf/branches/2.5.x-fixes/   (props changed)
    
cxf/branches/2.5.x-fixes/testutils/src/main/java/org/apache/cxf/testutil/common/AbstractTestServerBase.java

Propchange: cxf/branches/2.5.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: 
cxf/branches/2.5.x-fixes/testutils/src/main/java/org/apache/cxf/testutil/common/AbstractTestServerBase.java
URL: 
http://svn.apache.org/viewvc/cxf/branches/2.5.x-fixes/testutils/src/main/java/org/apache/cxf/testutil/common/AbstractTestServerBase.java?rev=1341634&r1=1341633&r2=1341634&view=diff
==============================================================================
--- 
cxf/branches/2.5.x-fixes/testutils/src/main/java/org/apache/cxf/testutil/common/AbstractTestServerBase.java
 (original)
+++ 
cxf/branches/2.5.x-fixes/testutils/src/main/java/org/apache/cxf/testutil/common/AbstractTestServerBase.java
 Tue May 22 21:19:59 2012
@@ -118,6 +118,9 @@ public abstract class AbstractTestServer
         return true;
     }
     
+    protected static int allocatePortAsInt(Class<?> cls) {
+        return Integer.parseInt(TestUtil.getPortNumber(cls));
+    }
     protected static String allocatePort(Class<?> cls) {
         return TestUtil.getPortNumber(cls);
     }


Reply via email to