Versions Compared

Key

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

A DTK plugin is created and committed by following these steps:

  1. For agent plugins, create a Configuration Contract, see Configuration Contract for further information about the contents of the configuration contract. For other types of plugins, skip this step.
     
  2. For agent plugins, generate a Java file from your configuration contract:

    Code Block
    > java -classpath $CLASSPATH com.digitalroute.devkit.tools.ContractGen \
    -d . -f MyAgentConfigContract.xml

    For other types of plugins, skip this step.
     

  3. Create the different Java files required for the type of plugin you want to create. See the chapters describing each plugin for further information.
     
  4. Compile all the Java files for your plugin into classes:

    Code Block
    > javac -classpath $CLASSPATH com/mycompany/myagent/*.java


    Note
    titleNote!

    It is strongly recommended that the Java code does not use the default package context. All classes in the system must have unique names.


  5. Create a user-defined *.jar file containing the classes, see the section below, Creating a User-Defined Jar File.
     
  6. Create a user-defined *.mzp package containing the *.jar file, see the section below, Creating a User-Defined Package.
     
  7. Commit your user-defined package, see the section below, Committing a User-Defined Package.

...

Committing a User Defined Package

For On-Premise, Non-Containerized environment:

New or updated code is inserted into the system using the mzsh Command Line Tool:

...