1 16 17 package org.apache.commons.daemon; 18 19 20 27 public interface DaemonController { 28 29 32 public void shutdown() 33 throws IllegalStateException ; 34 35 38 public void reload() 39 throws IllegalStateException ; 40 41 44 public void fail() 45 throws IllegalStateException ; 46 47 50 public void fail(String message) 51 throws IllegalStateException ; 52 53 56 public void fail(Exception exception) 57 throws IllegalStateException ; 58 59 62 public void fail(String message, Exception exception) 63 throws IllegalStateException ; 64 65 } 66 | Popular Tags |