In IBM Notes if I create a Java Agent, how do I then include my own created java files:
So I created a cxmlCustom package and this I want to include in to the profileResponse. Note that import cxmCustom in the Java agent does not work..
Next to this I use the java class: Statuscode so that I can create an object which has for example these values:
Statuscode = 406
Text = Not Acceptable
Meaning = more text
In the class StatusCodesList in which I create a bunch of statuscode objects and save these created statuscode objects in a array.
In my profileResponse I want to retrieve this objects. Later on in other Agents I reuse this statuscodelist class.. I want to know if this is a good way to do this?