Check for the library jars in the bsh sample and fail with information.
[jsvc.git] / src / dolda / jsvc / ResettableRequest.java
1 package dolda.jsvc;
2
3 public interface ResettableRequest extends Request {
4     public boolean canreset();
5     public void reset();
6 }