Author: davidillsley Date: Wed May 16 02:16:01 2007 New Revision: 538492 URL: http://svn.apache.org/viewvc?view=rev&rev=538492 Log: Fix build break. Update to use renamed methods on AxisConfiguration
Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/LocalTestCase.java Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/LocalTestCase.java URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/LocalTestCase.java?view=diff&rev=538492&r1=538491&r2=538492 ============================================================================== --- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/LocalTestCase.java (original) +++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/LocalTestCase.java Wed May 16 02:16:01 2007 @@ -1,6 +1,4 @@ /* - * Copyright 2007 The Apache Software Foundation. - * * Licensed 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 @@ -58,14 +56,14 @@ tOut.setSender(new LocalTransportSender()); serverConfig.addTransportOut(tOut); - addInPhases(serverConfig.getGlobalInFlow()); - DispatchPhase dp = (DispatchPhase)serverConfig.getGlobalInFlow().get(1); + addInPhases(serverConfig.getInFlowPhases()); + DispatchPhase dp = (DispatchPhase)serverConfig.getInFlowPhases().get(1); dp.addHandler(new AddressingBasedDispatcher()); - addInPhases(serverConfig.getInFaultFlow()); + addInPhases(serverConfig.getInFaultFlowPhases()); - addOutPhases(serverConfig.getGlobalOutPhases()); - addOutPhases(serverConfig.getOutFaultFlow()); + addOutPhases(serverConfig.getOutFlowPhases()); + addOutPhases(serverConfig.getOutFaultFlowPhases()); // NOTE : If you want addressing (which you probably do), we can do something // like this, or we can pull it off the classpath (better solution?) --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]