Package xdtestsuite.server

Source Code of xdtestsuite.server.DBTestImpl

/*
*-**************************************************************************-*
*
* XOo°f - http://www.xooof.org
* A development and XML specification framework for documenting and
* developing the services layer of enterprise business applications.
* From the specifications, it generates WSDL, DocBook, client-side and
* server-side code for Java, C# and Python.
*
* Copyright (C) 2006 Software AG Belgium
*
* This file is part of XOo°f.
*
* XOo°f is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* XOo°f is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
*
*-**************************************************************************-*
*/

package xdtestsuite.server;

import xdtestsuite.msgs.SString;

import org.xooof.xmldispatcher.interfaces.XMLDispatcherAppException;
import org.xooof.xmldispatcher.interfaces.XMLDispatcherUserException;
import org.xooof.xmldispatcher.servers.XMLDispatcherContext;

class DBTestImpl extends BaseBO implements DBTestImplSkeleton {

  public void ejbHomeInsertAndRaise(XMLDispatcherContext xdCtx)
  throws XMLDispatcherUserException, XMLDispatcherAppException
  {
  }

  public void ejbHomeInsertAndWait(XMLDispatcherContext xdCtx)
  throws XMLDispatcherUserException, XMLDispatcherAppException
  {
  }

  public void ejbHomeInsert(XMLDispatcherContext xdCtx)
  throws XMLDispatcherUserException, XMLDispatcherAppException
  {
  }

  public void ejbHomeDrop(XMLDispatcherContext xdCtx)
  throws XMLDispatcherUserException, XMLDispatcherAppException
  {
  }

  public xdtestsuite.msgs.SString ejbHomeCount(XMLDispatcherContext xdCtx)
  throws XMLDispatcherUserException, XMLDispatcherAppException
  {
    return new SString();
  }
 
  public void ejbHomeInsertManyInTransaction(XMLDispatcherContext xdCtx)
        throws XMLDispatcherUserException, XMLDispatcherAppException
  {
        throw new XMLDispatcherAppException("not implemented");
  }

  public void ejbHomeInsertManyOutOfTransaction(XMLDispatcherContext xdCtx)
    throws XMLDispatcherUserException, XMLDispatcherAppException
  {
    throw new XMLDispatcherAppException("not implemented");
  }

}
TOP

Related Classes of xdtestsuite.server.DBTestImpl

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.