001    package railo.runtime.services;
002    
003    import coldfusion.server.ServiceMetaData;
004    
005    public class EmptyServiceMetaData implements ServiceMetaData {
006    
007            public int getPropertyCount() {
008                    return 0;
009            }
010    
011            public String getPropertyLabel(int arg0) {
012                    return null;
013            }
014    
015            public String getPropertyType(int arg0) {
016                    return null;
017            }
018    
019            public boolean exists(String arg0) {
020                    return false;
021            }
022    
023    }