Versions Compared

Key

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

...

MyComponent.java - Extends the DefaultComponent, a convience class that makes creating JBI components much easier and provides lifecycle management of components deployed to the JBI container. This class should be fleshed out by overriding methods in the DefaultComponent to configure and initialize the component. This is where we will place the logic to print out the Hello World message.

MyEndpoint.java - Extends Endpoint and implements ExchangeProcessor. Endpoint provides a referenceable resource for the component and the ExchangeProcessor provides the ability to process the message exchange.

Creating the Maven Subprojects For the Service Unit and Service Assembly

...