001    package railo.runtime.functions.s3;
002    
003    import railo.runtime.PageContext;
004    import railo.runtime.exp.PageException;
005    import railo.runtime.op.Caster;
006    
007    public class StoreGetMetaData extends S3Function {
008            
009            public static String call(PageContext pc , String url) throws PageException {
010                    try {
011                            return _call(pc, url);
012                    } catch (Exception e) {
013                            throw Caster.toPageException(e);
014                    }
015            }
016    
017            public static String _call(PageContext pc , String url) {
018                    //S3Resource res=toS3Resource(pc,url,"StoreGetMetaData");
019                    
020                    return null;
021            }
022            
023    
024            
025            
026    }