001 package railo.runtime.type.scope; 002 003 import railo.commons.io.res.Resource; 004 005 public interface FormItem { 006 007 /** 008 * @return the resource 009 */ 010 public Resource getResource(); 011 012 /** 013 * @return the contentType 014 */ 015 public String getContentType(); 016 017 /** 018 * @return the name 019 */ 020 public String getName(); 021 022 /** 023 * @return the fieldName 024 */ 025 public String getFieldName(); 026 }