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 import railo.runtime.type.Struct; 007 008 public class StoreSetMetaData extends S3Function { 009 010 public static String call(PageContext pc , String url, Struct metadata) throws PageException { 011 try { 012 return _call(pc, url,metadata); 013 } catch (Exception e) { 014 throw Caster.toPageException(e); 015 } 016 } 017 018 public static String _call(PageContext pc , String url, Struct metadata) { 019 //S3Resource res=toS3Resource(pc,url,"StoreGetMetaData"); 020 021 return null; 022 } 023 024 025 026 027 }