Author: richard.opalka(a)jboss.com
Date: 2008-11-26 07:40:16 -0500 (Wed, 26 Nov 2008)
New Revision: 8790
Removed:
stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/Constants.java
Modified:
stack/metro/trunk/.classpath
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/HandlerResolverImpl.java
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/ServiceObjectFactory.java
Log:
optimization
Modified: stack/metro/trunk/.classpath
===================================================================
--- stack/metro/trunk/.classpath 2008-11-26 10:45:05 UTC (rev 8789)
+++ stack/metro/trunk/.classpath 2008-11-26 12:40:16 UTC (rev 8790)
@@ -9,8 +9,8 @@
<classpathentry combineaccessrules="false" kind="src"
path="/jbossws-common"/>
<classpathentry combineaccessrules="false" kind="src"
path="/jbossws-framework"/>
<classpathentry combineaccessrules="false" kind="src"
path="/jbossws-spi"/>
- <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/junit"/>
- <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/Metro-Integration-Libraries"/>
- <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/jboss-5.0.0.GA"/>
+ <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/METRO"/>
+ <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/JBOSS500GA"/>
+ <classpathentry kind="con"
path="org.eclipse.jdt.USER_LIBRARY/JUNIT"/>
<classpathentry kind="output" path="target/eclipse-classes"/>
</classpath>
Modified:
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/HandlerResolverImpl.java
===================================================================
---
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/HandlerResolverImpl.java 2008-11-26
10:45:05 UTC (rev 8789)
+++
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/HandlerResolverImpl.java 2008-11-26
12:40:16 UTC (rev 8790)
@@ -52,7 +52,7 @@
private final Class<?> clazz;
private HandlerChainsModel handlerChainsModel;
- HandlerResolverImpl(String handlerFile, Class<?> clazz)
+ public HandlerResolverImpl(String handlerFile, Class<?> clazz)
{
super();
this.handlerFile = handlerFile;
Modified:
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/ServiceObjectFactory.java
===================================================================
---
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/ServiceObjectFactory.java 2008-11-26
10:45:05 UTC (rev 8789)
+++
stack/metro/trunk/modules/client/src/main/java/org/jboss/wsf/stack/metro/client/ServiceObjectFactory.java 2008-11-26
12:40:16 UTC (rev 8790)
@@ -41,9 +41,6 @@
import org.jboss.logging.Logger;
import org.jboss.wsf.spi.WSFException;
-import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerChainMetaData;
-import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerChainsMetaData;
-import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedHandlerMetaData;
import org.jboss.wsf.spi.metadata.j2ee.serviceref.UnifiedServiceRefMetaData;
import com.sun.xml.ws.api.client.ServiceInterceptorFactory;
Deleted:
stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/Constants.java
===================================================================
---
stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/Constants.java 2008-11-26
10:45:05 UTC (rev 8789)
+++
stack/metro/trunk/modules/server/src/main/java/org/jboss/wsf/stack/metro/Constants.java 2008-11-26
12:40:16 UTC (rev 8790)
@@ -1,33 +0,0 @@
-/*
- * JBoss, Home of Professional Open Source.
- * Copyright 2006, Red Hat Middleware LLC, and individual contributors
- * as indicated by the @author tags. See the copyright.txt file in the
- * distribution for a full listing of individual contributors.
- *
- * This is free software; you can redistribute it and/or modify it
- * under the terms of the GNU Lesser General Public License as
- * published by the Free Software Foundation; either version 2.1 of
- * the License, or (at your option) any later version.
- *
- * This software is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this software; if not, write to the Free
- * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
- * 02110-1301 USA, or see the FSF site:
http://www.fsf.org.
- */
-package org.jboss.wsf.stack.metro;
-
-/**
- * A collection of constants relevant to JBossWS-Metro
- *
- * @author alessio.soldano(a)jboss.com
- *
- */
-public interface Constants
-{
- public static final String NO_WRAPPERS_GENERATION =
"org.jboss.wsf.stack.metro.noWrappersGeneration";
-}