Package org.apache.servicemix.jsr181.packaging

Source Code of org.apache.servicemix.jsr181.packaging.Jsr181ServiceUnitAnalyzer$DummyComponentContext

/*
* 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.servicemix.jsr181.packaging;

import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.MissingResourceException;
import java.util.logging.Logger;

import javax.jbi.JBIException;
import javax.jbi.component.ComponentContext;
import javax.jbi.management.MBeanNames;
import javax.jbi.messaging.DeliveryChannel;
import javax.jbi.messaging.MessagingException;
import javax.jbi.servicedesc.ServiceEndpoint;
import javax.management.MBeanServer;
import javax.naming.InitialContext;
import javax.xml.namespace.QName;

import org.apache.servicemix.common.Endpoint;
import org.apache.servicemix.common.xbean.AbstractXBeanServiceUnitAnalyzer;
import org.apache.servicemix.common.xbean.ParentBeanFactoryPostProcessor;
import org.apache.servicemix.jsr181.Jsr181Component;
import org.apache.servicemix.jsr181.Jsr181Endpoint;
import org.w3c.dom.Document;
import org.w3c.dom.DocumentFragment;

public class Jsr181ServiceUnitAnalyzer extends AbstractXBeanServiceUnitAnalyzer {

  protected List getConsumes(Endpoint endpoint) {
    return new ArrayList();
  }

  protected List getProvides(Endpoint endpoint) {
    // We need to generate the dummy component to register the services
    Jsr181Endpoint jsr181Endpoint = (Jsr181Endpoint) endpoint;
    try {
      Jsr181Component componentDummy = new Jsr181Component();
      componentDummy.setEndpoints(new Jsr181Endpoint[] { jsr181Endpoint });
      componentDummy.getLifeCycle().init(new DummyComponentContext());
    } catch (Exception e) {
      throw new RuntimeException("Unable to register JSR-181 service, " + e.getMessage(), e);
    }
    return super.getProvides(endpoint);
  }

  protected String getXBeanFile() {
    return "xbean.xml";
  }

  protected boolean isValidEndpoint(Object bean) {
    if (bean instanceof Jsr181Endpoint)
      return true;
    else
      return false;
  }

    protected List getBeanFactoryPostProcessors(String absolutePath) {
        Map beans = new HashMap();
        beans.put("context", new DummyComponentContext());
        return Collections.singletonList(new ParentBeanFactoryPostProcessor(beans));
    }
   
  public class DummyComponentContext implements ComponentContext {

    public ServiceEndpoint activateEndpoint(QName serviceName,
        String endpointName) throws JBIException {
      return null;
    }

    public void deactivateEndpoint(ServiceEndpoint endpoint)
        throws JBIException {
    }

    public void deregisterExternalEndpoint(ServiceEndpoint externalEndpoint)
        throws JBIException {

    }

    public String getComponentName() {
      return null;
    }

    public DeliveryChannel getDeliveryChannel() throws MessagingException {
      return null;
    }

    public ServiceEndpoint getEndpoint(QName service, String name) {
      return null;
    }

    public Document getEndpointDescriptor(ServiceEndpoint endpoint)
        throws JBIException {
      return null;
    }

    public ServiceEndpoint[] getEndpoints(QName interfaceName) {
      return null;
    }

    public ServiceEndpoint[] getEndpointsForService(QName serviceName) {
      return null;
    }

    public ServiceEndpoint[] getExternalEndpoints(QName interfaceName) {
      return null;
    }

    public ServiceEndpoint[] getExternalEndpointsForService(
        QName serviceName) {
      return null;
    }

    public String getInstallRoot() {
      return null;
    }

    public Logger getLogger(String suffix, String resourceBundleName)
        throws MissingResourceException, JBIException {
      return null;
    }

    public MBeanNames getMBeanNames() {
      return null;
    }

    public MBeanServer getMBeanServer() {
      return null;
    }

    public InitialContext getNamingContext() {
      return null;
    }

    public Object getTransactionManager() {
      return null;
    }

    public String getWorkspaceRoot() {
      return null;
    }

    public void registerExternalEndpoint(ServiceEndpoint externalEndpoint)
        throws JBIException {
    }

    public ServiceEndpoint resolveEndpointReference(DocumentFragment epr) {
      return null;
    }

  }

}
TOP

Related Classes of org.apache.servicemix.jsr181.packaging.Jsr181ServiceUnitAnalyzer$DummyComponentContext

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.