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