Package org.uengine.processpublisher.bpel.importer

Source Code of org.uengine.processpublisher.bpel.importer.InvokeImplAdapter

/*
* Created on 2004-05-08
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package org.uengine.processpublisher.bpel.importer;

import org.uengine.processpublisher.Adapter;
import org.uengine.kernel.WebServiceActivity;

import org.uengine.smcp.twister.engine.priv.core.definition.impl.*;

/**
* @author Administrator
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class InvokeImplAdapter implements Adapter{

  public Object convert(Object src, java.util.Hashtable keyedContext) throws Exception{
    InvokeImpl srcAct = (InvokeImpl)src;
   
    WebServiceActivity destAct = new WebServiceActivity();
    destAct.setName(srcAct.getName());
   
    return destAct;
 
}
TOP

Related Classes of org.uengine.processpublisher.bpel.importer.InvokeImplAdapter

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.