This exception is used to help stub out implementations. @version $Revision: 1958 $ @author Jason Dillon
949596979899100
return null; } public Throwable getError() { throw new NotImplementedException("getError"); }
104105106107108109110
return ControllerState.ERROR; } public ControllerState getRequiredState() { throw new NotImplementedException("getRequiredState"); }
109110111112113114115
throw new NotImplementedException("getRequiredState"); } public void setRequiredState(ControllerState state) { throw new NotImplementedException("setRequiredState"); }
119120121122123124125
return ControllerMode.MANUAL; } public void setMode(ControllerMode mode) { throw new NotImplementedException("setMode"); }
124125126127128129130131
throw new NotImplementedException("setMode"); } public void install(ControllerState fromState, ControllerState toState) throws Throwable { throw new NotImplementedException("install"); }
130131132133134135136137
} public void setController(Controller controller) { throw new NotImplementedException("setController"); }
136137138139140141142143
} public void setError(Throwable error) { throw new NotImplementedException("NYI setError"); }
142143144145146147148149
} public void uninstall(ControllerState fromState, ControllerState toState) { throw new NotImplementedException("uninstall"); }
728729730731732733734
} @Deprecated public InvocationResponse dynamicInvoke(Object target, Invocation invocation) throws Throwable { throw new NotImplementedException("Should be using dynamicInvoke(Invocation invocation)"); }
151152153154155156157
archiveDeployer.get().undeploy(archive.getName()); } @Override public void deploy(Descriptor descriptor) throws DeploymentException { throw new NotImplementedException(); }