Package org.jboss.ws.core.client

Source Code of org.jboss.ws.core.client.ServiceRefBinderFactoryImpl

/*    */ package org.jboss.ws.core.client;
/*    */
/*    */ import org.jboss.ws.core.jaxrpc.client.NativeServiceRefBinderJAXRPC;
/*    */ import org.jboss.ws.core.jaxws.client.NativeServiceRefBinderJAXWS;
/*    */ import org.jboss.wsf.spi.serviceref.ServiceRefBinder;
/*    */ import org.jboss.wsf.spi.serviceref.ServiceRefBinderFactory;
/*    */ import org.jboss.wsf.spi.serviceref.ServiceRefHandler.Type;
/*    */
/*    */ public class ServiceRefBinderFactoryImpl
/*    */   implements ServiceRefBinderFactory
/*    */ {
/*    */   public ServiceRefBinder newServiceRefBinder(ServiceRefHandler.Type type)
/*    */   {
/* 42 */     return type == ServiceRefHandler.Type.JAXRPC ? new NativeServiceRefBinderJAXRPC() : new NativeServiceRefBinderJAXWS();
/*    */   }
/*    */ }

/* Location:           /home/mnovotny/projects/EMBEDDED_JBOSS_BETA3_COMMUNITY/embedded/output/lib/embedded-jboss/lib/jboss-embedded-all.jar
* Qualified Name:     org.jboss.ws.core.client.ServiceRefBinderFactoryImpl
* JD-Core Version:    0.6.0
*/
TOP

Related Classes of org.jboss.ws.core.client.ServiceRefBinderFactoryImpl

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.