⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 basemanager.vm

📁 torque服务器源代码
💻 VM
字号:
#* * author <a href="mailto:jmcnally@collab.net">John McNally</a> * version $Id: BaseManager.vm,v 1.3 2003/08/07 13:13:00 mpoeschl Exp $ *##set ($interfaceName = $table.JavaName)#if ($table.Interface)  #set ($interfaceName = $table.Interface)#endpackage ${package};import java.math.BigDecimal;import java.util.Date;import java.util.List;import org.apache.torque.Torque;import org.apache.torque.TorqueException;import org.apache.torque.manager.AbstractBaseManager;import org.apache.torque.manager.CacheListener;import org.apache.torque.manager.MethodResultCache;import org.apache.torque.om.ObjectKey;import org.apache.torque.om.SimpleKey;import org.apache.torque.om.Persistent;import org.apache.torque.util.Criteria;/** * This class manages $interfaceName objects. * This class was autogenerated by Torque #if ($addTimeStamp)on: * * [$now] * #end * * You should not use this class directly.  It should not even be * extended all references should be to ${interfaceName}Manager */public abstract class $basePrefix${interfaceName}Manager    extends AbstractBaseManager{    /** The name of the manager */    protected static String MANAGED_CLASS = "${package}.${interfaceName}";    /** The name of our class to pass to Torque as the default manager. */    protected static String DEFAULT_MANAGER_CLASS        = "${package}.${interfaceName}Manager";    /**     * Retrieves an implementation of the manager, based on the settings in     * the configuration.     *     * @return an implementation of ${interfaceName}Manager.     */    public static ${interfaceName}Manager getManager()    {        return (${interfaceName}Manager)            Torque.getManager(${interfaceName}Manager.MANAGED_CLASS,                ${interfaceName}Manager.DEFAULT_MANAGER_CLASS);    }    /**     * Static accessor for the @see #getInstanceImpl().     *     * @return a <code>${interfaceName}</code> value     * @exception TorqueException if an error occurs     */    public static ${interfaceName} getInstance()        throws TorqueException    {        return getManager().getInstanceImpl();    }    /**     * Static accessor for the @see #getInstanceImpl(ObjectKey).     *     * @param id an <code>ObjectKey</code> value     * @return a <code>${interfaceName}</code> value     * @exception TorqueException if an error occurs     */    public static ${interfaceName} getInstance(ObjectKey id)        throws TorqueException    {        return getManager().getInstanceImpl(id);    }    /**     * Static accessor for the @see #getInstanceImpl(ObjectKey, boolean).     *     * @param id an <code>ObjectKey</code> value     * @return a <code>${interfaceName}</code> value     * @exception TorqueException if an error occurs     */    public static ${interfaceName} getInstance(ObjectKey id, boolean fromCache)        throws TorqueException    {        return getManager().getInstanceImpl(id, fromCache);    }#set ($pks = $table.PrimaryKey)#if ($pks.size() == 1)  #set ($pk = $pks.get(0))    /**     * Static accessor for the @see #getInstanceImpl(ObjectKey).     *     * @param id an <code>ObjectKey</code> value     * @return a <code>${interfaceName}</code> value     * @exception TorqueException if an error occurs     */    public static ${interfaceName} getInstance($pk.JavaNative id)        throws TorqueException    {        return getManager().getInstanceImpl(SimpleKey.keyFor(id));    }    /**     * Static accessor for the @see #getInstanceImpl(ObjectKey).     *     * @param id an <code>ObjectKey</code> value     * @return a <code>${interfaceName}</code> value     * @exception TorqueException if an error occurs     */    public static ${interfaceName} getInstance($pk.JavaNative id, boolean fromCache)        throws TorqueException    {        return getManager().getInstanceImpl(SimpleKey.keyFor(id), fromCache);    }#end    /**     * Static accessor for the @see #getInstancesImpl(List).     *     * @param ids a <code>List</code> value     * @return a <code>List</code> value     * @exception TorqueException if an error occurs     */    public static List getInstances(List ids)        throws TorqueException    {        return getManager().getInstancesImpl(ids);    }    /**     * Static accessor for the @see #getInstancesImpl(List, boolean).     *     * @param ids a <code>List</code> value     * @return a <code>List</code> value     * @exception TorqueException if an error occurs     */    public static List getInstances(List ids, boolean fromCache)        throws TorqueException    {        return getManager().getInstancesImpl(ids, fromCache);    }    public static void putInstance(Persistent om)        throws TorqueException    {        getManager().putInstanceImpl(om);    }    public static void clear()        throws TorqueException    {        getManager().clearImpl();    }    public static boolean exists(${interfaceName} obj)        throws TorqueException    {        return getManager().existsImpl(obj);    }    public static MethodResultCache getMethodResult()    {        return getManager().getMethodResultCache();    }    public static void addCacheListener(CacheListener listener)    {        getManager().addCacheListenerImpl(listener);    }    /**     * Creates a new <code>$basePrefix${interfaceName}Manager</code> instance.     *     * @exception TorqueException if an error occurs     */    public $basePrefix${interfaceName}Manager()        throws TorqueException    {        setClassName("${package}.${interfaceName}");    }    /**     * Get a fresh instance of a ${interfaceName}Manager     */    protected ${interfaceName} getInstanceImpl()        throws TorqueException    {        ${interfaceName} obj = null;        try        {            obj = (${interfaceName}) getOMInstance();        }        catch (Exception e)        {            throw new TorqueException(e);        }        return obj;    }    /**     * Get a ${interfaceName} with the given id.     *     * @param id <code>ObjectKey</code> value     */    protected ${interfaceName} getInstanceImpl(ObjectKey id)        throws TorqueException    {        return (${interfaceName}) getOMInstance(id);    }    /**     * Get a ${interfaceName} with the given id.     *     * @param id <code>ObjectKey</code> value     * @param fromCache if true, look for cached ${interfaceName}s before loading     * from storage.     */    protected ${interfaceName} getInstanceImpl(ObjectKey id, boolean fromCache)        throws TorqueException    {        return (${interfaceName}) getOMInstance(id, fromCache);    }    /**     * Gets a list of ${interfaceName}s based on id's.     *     * @param ids a List of <code>ObjectKeys</code> value     * @return a <code>List</code> of ${interfaceName}s     * @exception TorqueException if an error occurs     */    protected List getInstancesImpl(List ids)        throws TorqueException    {        return getOMs(ids);    }    /**     * Gets a list of ${interfaceName}s based on id's.     *     * @param ids a List of <code>ObjectKeys</code> value     * @param fromCache if true, look for cached ${interfaceName}s before loading     * from storage.     * @return a <code>List</code> of ${interfaceName}s     * @exception TorqueException if an error occurs     */    protected List getInstancesImpl(List ids, boolean fromCache)        throws TorqueException    {        return getOMs(ids, fromCache);    }    /**     * check for a duplicate project name     */    protected boolean existsImpl(${interfaceName} om)        throws TorqueException    {        Criteria crit = ${table.JavaName}Peer            .buildCriteria((${table.JavaName})om);        return ${table.JavaName}Peer.doSelect(crit).size() > 0;    }#if ($table.isAlias())  #set ($retrieveMethod = "retrieve${table.JavaName}ByPK")#else  #set ($retrieveMethod = "retrieveByPK")#end    protected Persistent retrieveStoredOM(ObjectKey id)        throws TorqueException    {        return ${table.JavaName}Peer.${retrieveMethod}(id);    }    /**     * Gets a list of ModuleEntities based on id's.     *     * @param moduleIds a <code>NumberKey[]</code> value     * @return a <code>List</code> value     * @exception TorqueException if an error occurs     */    protected List retrieveStoredOMs(List ids)        throws TorqueException    {        return ${table.JavaName}Peer.${retrieveMethod}s(ids);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -