Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

3. Add a new Java Class named SampleTask to  at GREG_HOME/samples/handler/src/src/main/java/org/wso2/carbon/registry/samples/task/SampleTask.java with the following source code.:

Code Block
languagejava
package org.wso2.carbon.registry.samples.task;
 
import org.wso2.carbon.ntask.core.Task;
import java.util.Map;
 
public class SampleTask implements Task {
    public void setProperties(Map<String, String> stringStringMap) {
 
    }
 
    public void init() {
 
    }
 
    public void execute() {
        System.out.println("Hello World");
    }
}

...

A successful run of Apache Maven will generate a report similar to the following:

Image RemovedImage Added

5. Copy the GREG_HOME/samples/handler/src/target/org.wso2.carbon.registry.samples.handler-4.5.0.jar into GREG_HOME/repository/components/dropins.

...

7. Start the server and observe the command prompt. See Starting Governance Registry Management Console on Windows or Starting Governance Registry Management Console on Linux.

Image RemovedImage Added

You should find a line similar to the following printed on your command prompt, which indicates that you task has successfully deployed.

...