summaryrefslogtreecommitdiff
path: root/src/main/java/com
AgeCommit message (Collapse)Author
2014-04-03ResourceImportHandler interface to allow custom <Resource> types orAndrew Branson
override the structure of standard ones. Specify with ResourceImportHandler.<resType> c2kprop. DefaultResourceImportHandler is used if not defined, which handled the 5 standard types (CA,EA,OD,SC,SM). Fixes #178 Conflicts: src/main/java/com/c2kernel/process/Bootstrap.java src/main/java/com/c2kernel/process/module/Module.java
2014-03-19Improved loggingAndrew Branson
2014-03-19Set the class loader of the ScriptingEngine to the same as the ScriptAndrew Branson
class, instead of the thread context one. Should solve problems with Jetty etc.
2013-09-20Keep a History object in the Workflow to avoid recreating it on repeatedAndrew Branson
executions.
2013-09-20Synchronize on the hardCache, as it occasionally causes exceptions.Andrew Branson
2013-09-13Mail properties not relevantAndrew Branson
2013-09-03An exception should be thrown if no ClusterStorages are defined. ThisAndrew Branson
previously just logged a warning.
2013-08-02Module resources can specify version number, which overrides the defaultAndrew Branson
version viewpoint of '0'.
2013-07-29new lookup search method that uses a PropertyDescriptionList to findAndrew Branson
instances of an item description. Closes #114
2013-07-24SchemaVersion is actually a string property. Probably shouldn't beAndrew Branson
though.
2013-07-23Support for schemaName and schemaVersion in EventAndrew Branson
2013-07-23Add schema details to eventAndrew Branson
2013-07-15No need to store a POA in the locatorsAndrew Branson
2013-07-15Slacken the module script return type to Object, so it doesn't complainAndrew Branson
with default returns
2013-07-12Cleanup of unused code and annotationsAndrew Branson
2013-07-11Log ProxyLoader queryData exceptionsAndrew Branson
2013-07-10CastorXMLUtility switched to recommended XMLContext. Should be fasterAndrew Branson
and may help with IssueID #132
2013-07-09Better debugging:Andrew Branson
ProxyLoader logs error at log(7) CastorXMLUtility creates an Unmarshaller in the constructor to detect mapfile problems then rather than on first use. Mapping objects don't do it.
2013-07-08Copy tree sub keys before notifying. Fixes #131Andrew Branson
2013-06-27Fix for orb checkAndrew Branson
2013-06-27Cmdline parse fixAndrew Branson
2013-06-27Removed CERN schema 'BreakApart' propertyAndrew Branson
2013-06-25Error thrown if ORB had been destroyed was not informative enough. ThrowAndrew Branson
a better one.
2013-06-25Remove old http server initAndrew Branson
2013-06-25More intelligent import of module resources. If resources or outcomesAndrew Branson
have been modified by a different user, do no overwrite them. Reset the properties and workflow though (should be fairly stateless), but leave the collections.
2013-06-25Imply correct POA when calling getItem and getAgent, so other places canAndrew Branson
call it
2013-06-25Initial equals() method for comparison - intended for intelligent moduleAndrew Branson
verification
2013-06-24Set agent in module scripts to either current user or system.Andrew Branson
2013-06-22Rewrote cmdline parser to allow cristal processes to use their own. AlsoAndrew Branson
cmdline params may override config or connect params.
2013-06-22Give name to module init scripts to aid debuggingAndrew Branson
2013-06-20getWorkflow and getViewpoint utility methods in ItemProxyAndrew Branson
2013-06-19Gateway.connect should throw ObjectNotFoundException if the user doesn'tAndrew Branson
exist.
2013-06-18Report exception properly in CreateItemFromDescriptionAndrew Branson
Initialize new workflows in ReplaceDomainWorkflow
2013-06-18Set script name so exceptions are more descriptiveAndrew Branson
2013-06-18Errors were not stored when submitted to activities with no outcomeAndrew Branson
2013-06-18Suspend outcome validation fixedandrew
2013-06-17Authentication plugin for ConsoleAndrew Branson
2013-06-14Domain workflow CompositeActivity must be called 'domain'.Andrew Branson
ReplaceDomainWorkflow predef step now forces this.
2013-06-14Escape DNs with hex codes instead - more compatibleAndrew Branson
2013-06-14getCollection proxy API method.Andrew Branson
2013-06-13Escape DNs in Path, so special characters can be used in PathAndrew Branson
components. Fixes #125
2013-06-07Removed premature license comment Andrew Branson
2013-06-06Check SchemaType for outcome requirement instead of VersionAndrew Branson
2013-05-31Make sure validator exists if outcome is null before script execution.Andrew Branson
2013-05-21Collect stale job IDs when refreshing joblist. Remove them after toAndrew Branson
avoid concurrent mod, as we don't want to preload all the values. Fixes #112
2013-05-17CleanupAndrew Branson
2013-05-17Force order of imports to make sure roles and agents are in beforeAndrew Branson
items, so init push jobs will function.
2013-05-17Add Role management support to module, instead of just creating one ifAndrew Branson
it's not already there. Supports 'jobList' attribute to enable job pushing
2013-04-10added getSchema() method to Outcome to load schema xml.Andrew Branson
Removed unused 'getSchemaURI' method.
2013-04-05Debug resource location at log 5Andrew Branson