View Javadoc

1   package org.whatsitcalled.webflange.model;
2   
3   import java.util.List;
4   
5   public interface ScriptDAO {
6   	public List getScripts();
7   	public Script getScript(Long id);
8   	public List getScripts(int first, int count, String orderby);
9   	public void saveScript(Script script);
10  	public void removeScript(Long id);
11  	public Script findByName(String name);
12  
13  }