1 48 49 package org.jpublish.action; 50 51 import com.anthonyeden.lib.config.Configuration; 52 import com.anthonyeden.lib.config.ConfigurationException; 53 import org.apache.commons.vfs.FileObject; 54 55 61 public abstract class AbstractScriptHandler implements ScriptHandler { 62 63 protected FileObject file; 64 65 70 public FileObject getFile() { 71 return file; 72 } 73 74 79 public void setFile(FileObject file) { 80 this.file = file; 81 } 82 83 89 public void loadConfiguration(Configuration configuration) 90 throws ConfigurationException { 91 } 93 94 97 public void init() { 98 } 100 101 } 102 | Popular Tags |