Package org.apache.juddi.v3.client.transport.wrapper

Source Code of org.apache.juddi.v3.client.transport.wrapper.UDDIPublicationService

/*
* Copyright 2001-2010 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
*
*      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.juddi.v3.client.transport.wrapper;

import java.util.HashMap;

import org.apache.juddi.v3.client.config.UDDIClerkManager;
import org.apache.juddi.v3.client.config.UDDIClientContainer;
import org.apache.juddi.v3.client.transport.Transport;
import org.apache.log4j.helpers.Loader;
import org.uddi.api_v3.AddPublisherAssertions;
import org.uddi.api_v3.DeleteBinding;
import org.uddi.api_v3.DeleteBusiness;
import org.uddi.api_v3.DeletePublisherAssertions;
import org.uddi.api_v3.DeleteService;
import org.uddi.api_v3.DeleteTModel;
import org.uddi.api_v3.GetAssertionStatusReport;
import org.uddi.api_v3.GetPublisherAssertions;
import org.uddi.api_v3.GetRegisteredInfo;
import org.uddi.api_v3.SaveBinding;
import org.uddi.api_v3.SaveBusiness;
import org.uddi.api_v3.SaveService;
import org.uddi.api_v3.SaveTModel;
import org.uddi.api_v3.SetPublisherAssertions;
import org.uddi.v3_service.UDDIPublicationPortType;
import org.w3c.dom.Element;
import org.w3c.dom.Node;

/**
* @author Tom Cunningham (tcunning@apache.org)
*/
public class UDDIPublicationService {
  private final static String DEFAULT_NODE_NAME = "default";

    // collection of valid operations

  private HashMap<String, Handler> operations = null;

 
    public UDDIPublicationService() {
    super();
    operations = new HashMap<String, Handler>();
    operations.put("get_registeredInfo", new Handler("getRegisteredInfo", GetRegisteredInfo.class));
      operations.put("save_business", new Handler("saveBusiness", SaveBusiness.class));
      operations.put("save_service", new Handler("saveService", SaveService.class));
      operations.put("save_binding", new Handler("saveBinding", SaveBinding.class));
      operations.put("save_tmodel", new Handler("saveTModel", SaveTModel.class));
      operations.put("delete_business", new Handler("deleteBusiness", DeleteBusiness.class));
      operations.put("delete_service", new Handler("deleteService", DeleteService.class));
      operations.put("delete_binding", new Handler("deleteBinding", DeleteBinding.class));
      operations.put("delete_tmodel", new Handler("deleteTModel", DeleteTModel.class));
      operations.put("add_publisherassertions", new Handler("addPublisherAssertions", AddPublisherAssertions.class));
      operations.put("set_publisherassertions", new Handler("setPublisherAssertions", SetPublisherAssertions.class));
      operations.put("get_publisherassertions", new Handler("getPublisherAssertions", GetPublisherAssertions.class));
      operations.put("delete_publisherassertions", new Handler("deletePublisherAssertions", DeletePublisherAssertions.class));
      operations.put("get_assertionstatusreport", new Handler("getAssertionStatusReport", GetAssertionStatusReport.class));
  }

  //Verify that the appropriate endpoint was targeted for
  // this service request.  The validateRequest method will
  // throw an UnsupportedOperationException if anything's amiss.
  public void validateRequest(String operation)
    throws UnsupportedOperationException
  {
      if ((operation == null) || (operation.trim().length() == 0))
        throw new UnsupportedOperationException("operation " + operation + " not supported");
  }

  public Node publish(Element uddiReq) throws Exception
  {
    UDDIClerkManager manager = UDDIClientContainer.getUDDIClerkManager(null);
    String clazz = manager.getClientConfig().getUDDINode(DEFAULT_NODE_NAME).getProxyTransport();
        Class<?> transportClass = Loader.loadClass(clazz);
        Transport transport = (Transport) transportClass.getConstructor(String.class).newInstance(DEFAULT_NODE_NAME);
    UDDIPublicationPortType publish = transport.getUDDIPublishService();

      //new RequestHandler on it's own thread
      RequestHandler requestHandler = new RequestHandler();
      requestHandler.setPortType(publish);
      String operation = requestHandler.getOperation(uddiReq);
    Handler opHandler = operations.get(operation);
      requestHandler.setMethodName(opHandler.getMethodName());
    requestHandler.setOperationClass(opHandler.getParameter());
     
    @SuppressWarnings("unused")
      String version   = requestHandler.getVersion(uddiReq, operation);
      validateRequest(operation);
     
      Node temp = requestHandler.invoke(uddiReq);
      if (requestHandler.getException()!=null) {
        throw new Exception(requestHandler.getException());
      }

      return temp;
  }
}
TOP

Related Classes of org.apache.juddi.v3.client.transport.wrapper.UDDIPublicationService

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.