/*L
* Copyright Washington University in St.Louis
* Copyright Information Management Services, Inc.
* Copyright Sapient
* Copyright Booz Allen Hamilton
*
* Distributed under the OSI-approved BSD 3-Clause License.
* See http://ncip.github.com/common-biorepository-model/LICENSE.txt for details.
*/
package org.cagrid.CBM.service.globus;
import org.cagrid.CBM.service.CBMImpl;
import java.rmi.RemoteException;
/**
* DO NOT EDIT: This class is autogenerated!
*
* This class implements each method in the portType of the service. Each method call represented
* in the port type will be then mapped into the unwrapped implementation which the user provides
* in the CBMImpl class. This class handles the boxing and unboxing of each method call
* so that it can be correctly mapped in the unboxed interface that the developer has designed and
* has implemented. Authorization callbacks are automatically made for each method based
* on each methods authorization requirements.
*
* @created by Introduce Toolkit version 1.4
*
*/
public class CBMProviderImpl{
CBMImpl impl;
public CBMProviderImpl() throws RemoteException {
impl = new CBMImpl();
}
public org.cagrid.CBM.stubs.ExtractCBMdataResponse extractCBMdata(org.cagrid.CBM.stubs.ExtractCBMdataRequest params) throws RemoteException {
org.cagrid.CBM.stubs.ExtractCBMdataResponse boxedResult = new org.cagrid.CBM.stubs.ExtractCBMdataResponse();
boxedResult.setTransferServiceContextReference(impl.extractCBMdata());
return boxedResult;
}
}