001    package railo.runtime.orm;
002    
003    import railo.runtime.PageContext;
004    import railo.runtime.db.DataSource;
005    import railo.runtime.exp.PageException;
006    
007    public class ORMEngineDummy implements ORMEngine {
008    
009            public String getLabel() {
010                    // TODO Auto-generated method stub
011                    return null;
012            }
013    
014            public int getMode() {
015                    // TODO Auto-generated method stub
016                    return 0;
017            }
018    
019            public ORMSession createSession(PageContext pc) throws PageException {
020                    return null;
021            }
022    
023            public Object getSessionFactory(PageContext pc) throws PageException {
024                    // TODO Auto-generated method stub
025                    return null;
026            }
027    
028            public void init(PageContext pc) throws PageException {
029                    // TODO Auto-generated method stub
030    
031            }
032    
033            public ORMConfiguration getConfiguration(PageContext pc) {
034                    // TODO Auto-generated method stub
035                    return null;
036            }
037    
038            public DataSource getDataSource() {
039                    // TODO Auto-generated method stub
040                    return null;
041            }
042    
043            public String[] getEntityNames() {
044                    // TODO Auto-generated method stub
045                    return null;
046            }
047    
048            public boolean reload(PageContext pc, boolean force) throws PageException {
049                    // TODO Auto-generated method stub
050                    return false;
051            }
052    
053    }