Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
titleJava Imports
//Suggested: import alma.<Module>.<Interface>Impl; //But anything, really
package <ChosenPackage>;

//Base component implementation, including container services and component lifecycle infrastructure
import alma.acs.component.ComponentImplBase;

//Skeleton interface for server implementation
import alma.<Module>.<Interface>Operations;

//Error definitions for catching exceptions
import alma.ServiceErrSYSTEMErr.<ExceptionName>Ex;
import alma.<Interface>Err.<ExceptionName>Ex;

//Error definitions for raising exceptions
import alma.ServiceErrSYSTEMErr.wrappers.AcsJ<ExceptionName>Ex;
import alma.<Interface>Err.wrappers.AcsJ<ExceptionName>Ex;

...