You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by an...@apache.org on 2015/11/23 15:15:14 UTC

[16/25] tomee git commit: EOL

http://git-wip-us.apache.org/repos/asf/tomee/blob/5dd70c83/tomee/tomee-common/src/main/java/org/apache/tomee/common/WsFactory.java
----------------------------------------------------------------------
diff --git a/tomee/tomee-common/src/main/java/org/apache/tomee/common/WsFactory.java b/tomee/tomee-common/src/main/java/org/apache/tomee/common/WsFactory.java
index 1de7a83..8546deb 100644
--- a/tomee/tomee-common/src/main/java/org/apache/tomee/common/WsFactory.java
+++ b/tomee/tomee-common/src/main/java/org/apache/tomee/common/WsFactory.java
@@ -1,134 +1,134 @@
-/**
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- *  Unless required by applicable law or agreed to in writing, software
- *  distributed under the License is distributed on an "AS IS" BASIS,
- *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- *  See the License for the specific language governing permissions and
- *  limitations under the License.
- */
-package org.apache.tomee.common;
-
-import org.apache.naming.ResourceRef;
-import org.apache.openejb.Injection;
-import org.apache.openejb.core.ivm.naming.JaxWsServiceReference;
-import org.apache.openejb.core.webservices.HandlerChainData;
-import org.apache.openejb.core.webservices.PortRefData;
-
-import javax.naming.Context;
-import javax.naming.Name;
-import javax.naming.NamingException;
-import javax.naming.Reference;
-import javax.xml.namespace.QName;
-import javax.xml.ws.Service;
-import java.net.URL;
-import java.util.Collection;
-import java.util.Collections;
-import java.util.Hashtable;
-import java.util.List;
-import java.util.Properties;
-
-public class WsFactory extends AbstractObjectFactory {
-    public Object getObjectInstance(final Object object, final Name name, final Context context, final Hashtable environment) throws Exception {
-        // ignore non resource-refs
-        if (!(object instanceof ResourceRef)) {
-            return null;
-        }
-
-        final Reference ref = (Reference) object;
-
-        final Object value;
-        if (NamingUtil.getProperty(ref, NamingUtil.JNDI_NAME) != null) {
-            // lookup the value in JNDI
-            value = super.getObjectInstance(object, name, context, environment);
-        } else {
-            // load service class which is used to construct the port
-            final String serviceClassName = NamingUtil.getProperty(ref, NamingUtil.WS_CLASS);
-            Class<? extends Service> serviceClass = Service.class;
-            if (serviceClassName != null) {
-                final Class<?> loadClass = NamingUtil.loadClass(serviceClassName);
-
-                if (loadClass == null) {
-                    throw new NamingException("Could not load service type class "+ serviceClassName);
-                }
-
-                serviceClass = loadClass.asSubclass(Service.class);
-            }
-
-            // load the reference class which is the ultimate type of the port
-            final Class<?> referenceClass = NamingUtil.loadClass(ref.getClassName());
-
-            // if ref class is a subclass of Service, use it for the service class
-            if (referenceClass != null && Service.class.isAssignableFrom(referenceClass)) {
-                serviceClass = referenceClass.asSubclass(Service.class);
-            }
-
-            // PORT ID
-            final String serviceId = NamingUtil.getProperty(ref, NamingUtil.WS_ID);
-
-            // Service QName
-            QName serviceQName = null;
-            String property = NamingUtil.getProperty(ref, NamingUtil.WS_QNAME);
-            if (property != null) {
-                serviceQName = QName.valueOf(property);
-            }
-
-            // WSDL URL
-            URL wsdlUrl = null;
-            property = NamingUtil.getProperty(ref, NamingUtil.WSDL_URL);
-            if (property != null) {
-                wsdlUrl = new URL(property);
-            }
-
-            // Port QName
-            QName portQName = null;
-            property = NamingUtil.getProperty(ref, NamingUtil.WS_PORT_QNAME);
-            if (property != null) {
-                portQName = QName.valueOf(property);
-            }
-
-            // port refs
-            List<PortRefData> portRefs = NamingUtil.getStaticValue(ref, "port-refs");
-            if (portRefs == null) {
-                portRefs = Collections.emptyList();
-            }
-
-            // HandlerChain
-            List<HandlerChainData> handlerChains = NamingUtil.getStaticValue(ref, "handler-chains");
-            if (handlerChains == null) {
-                handlerChains = Collections.emptyList();
-            }
-            Collection<Injection> injections = NamingUtil.getStaticValue(ref, "injections");
-            if (injections == null) {
-                injections = Collections.emptyList();
-            }
-
-            final Properties properties = new Properties();
-            properties.putAll(environment);
-            final JaxWsServiceReference serviceReference = new JaxWsServiceReference(serviceId,
-                    serviceQName,
-                    serviceClass, portQName,
-                    referenceClass,
-                    wsdlUrl,
-                    portRefs,
-                    handlerChains,
-                    injections,
-                    properties);
-            value = serviceReference.getObject();
-        }
-
-        return value;
-    }
-
-    protected String buildJndiName(final Reference reference) throws NamingException {
-        throw new UnsupportedOperationException();
-    }
-}
+/**
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You 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
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *  Unless required by applicable law or agreed to in writing, software
+ *  distributed under the License is distributed on an "AS IS" BASIS,
+ *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *  See the License for the specific language governing permissions and
+ *  limitations under the License.
+ */
+package org.apache.tomee.common;
+
+import org.apache.naming.ResourceRef;
+import org.apache.openejb.Injection;
+import org.apache.openejb.core.ivm.naming.JaxWsServiceReference;
+import org.apache.openejb.core.webservices.HandlerChainData;
+import org.apache.openejb.core.webservices.PortRefData;
+
+import javax.naming.Context;
+import javax.naming.Name;
+import javax.naming.NamingException;
+import javax.naming.Reference;
+import javax.xml.namespace.QName;
+import javax.xml.ws.Service;
+import java.net.URL;
+import java.util.Collection;
+import java.util.Collections;
+import java.util.Hashtable;
+import java.util.List;
+import java.util.Properties;
+
+public class WsFactory extends AbstractObjectFactory {
+    public Object getObjectInstance(final Object object, final Name name, final Context context, final Hashtable environment) throws Exception {
+        // ignore non resource-refs
+        if (!(object instanceof ResourceRef)) {
+            return null;
+        }
+
+        final Reference ref = (Reference) object;
+
+        final Object value;
+        if (NamingUtil.getProperty(ref, NamingUtil.JNDI_NAME) != null) {
+            // lookup the value in JNDI
+            value = super.getObjectInstance(object, name, context, environment);
+        } else {
+            // load service class which is used to construct the port
+            final String serviceClassName = NamingUtil.getProperty(ref, NamingUtil.WS_CLASS);
+            Class<? extends Service> serviceClass = Service.class;
+            if (serviceClassName != null) {
+                final Class<?> loadClass = NamingUtil.loadClass(serviceClassName);
+
+                if (loadClass == null) {
+                    throw new NamingException("Could not load service type class "+ serviceClassName);
+                }
+
+                serviceClass = loadClass.asSubclass(Service.class);
+            }
+
+            // load the reference class which is the ultimate type of the port
+            final Class<?> referenceClass = NamingUtil.loadClass(ref.getClassName());
+
+            // if ref class is a subclass of Service, use it for the service class
+            if (referenceClass != null && Service.class.isAssignableFrom(referenceClass)) {
+                serviceClass = referenceClass.asSubclass(Service.class);
+            }
+
+            // PORT ID
+            final String serviceId = NamingUtil.getProperty(ref, NamingUtil.WS_ID);
+
+            // Service QName
+            QName serviceQName = null;
+            String property = NamingUtil.getProperty(ref, NamingUtil.WS_QNAME);
+            if (property != null) {
+                serviceQName = QName.valueOf(property);
+            }
+
+            // WSDL URL
+            URL wsdlUrl = null;
+            property = NamingUtil.getProperty(ref, NamingUtil.WSDL_URL);
+            if (property != null) {
+                wsdlUrl = new URL(property);
+            }
+
+            // Port QName
+            QName portQName = null;
+            property = NamingUtil.getProperty(ref, NamingUtil.WS_PORT_QNAME);
+            if (property != null) {
+                portQName = QName.valueOf(property);
+            }
+
+            // port refs
+            List<PortRefData> portRefs = NamingUtil.getStaticValue(ref, "port-refs");
+            if (portRefs == null) {
+                portRefs = Collections.emptyList();
+            }
+
+            // HandlerChain
+            List<HandlerChainData> handlerChains = NamingUtil.getStaticValue(ref, "handler-chains");
+            if (handlerChains == null) {
+                handlerChains = Collections.emptyList();
+            }
+            Collection<Injection> injections = NamingUtil.getStaticValue(ref, "injections");
+            if (injections == null) {
+                injections = Collections.emptyList();
+            }
+
+            final Properties properties = new Properties();
+            properties.putAll(environment);
+            final JaxWsServiceReference serviceReference = new JaxWsServiceReference(serviceId,
+                    serviceQName,
+                    serviceClass, portQName,
+                    referenceClass,
+                    wsdlUrl,
+                    portRefs,
+                    handlerChains,
+                    injections,
+                    properties);
+            value = serviceReference.getObject();
+        }
+
+        return value;
+    }
+
+    protected String buildJndiName(final Reference reference) throws NamingException {
+        throw new UnsupportedOperationException();
+    }
+}