Executables has been created by David Blevins (Sep 29, 2005).

Content:

This doc describes the design-in-progress for revamping the command-line execution of openejb.

Basic ideas:

  • Commands can be added/removed (start, stop, test, validate, deploy)
  • Adding/removing only requires adding/removing jars from the classpath

We need some sort of interface like:

Command.java
package org.openejb.cli;

public interface Command {
    public void main(String[] args);
    public String description();
}

Then we can stuff properties files into jars at:

META-INF/org.openejb.cli.Command/{name}

Reply via email to