www.pudn.com > workspace.rar > UserLocal.java
/*
* Generated by XDoclet - Do not edit!
*/
package session.interfaces;
/**
* Local interface for User.
* @xdoclet-generated at ${TODAY}
* @copyright The XDoclet Team
* @author XDoclet
* @version ${version}
*/
public interface UserLocal
extends javax.ejb.EJBLocalObject
{
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean selectUserForCheck( java.lang.String username ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean insertOrdinaryUser( dao.OrdinaryUserTO userTo ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean updateOrdinaryUser( ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean deleteOrdinaryUser( java.lang.String username ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public dao.OrdinaryUserTO selectOrdinaryUser( java.lang.String username ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean insertShopUser( dao.ShopUserTO userTo ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean updateShopUser( ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean deleteShopUser( java.lang.String username ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public dao.ShopUserTO selectShopUser( java.lang.String username ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean insertStoreUser( dao.StoreUserTO userTo ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean updateStoreUser( ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public boolean deleteStoreUser( java.lang.String username ) throws javax.ejb.EJBException;
/**
* An example business method
* @throws EJBException Thrown if method fails due to system-level error. */
public dao.StoreUserTO selectStoreUser( java.lang.String username ) throws javax.ejb.EJBException;
}