summaryrefslogtreecommitdiff
path: root/src/main/java/com/c2kernel/utils/ObjectProperties.java
AgeCommit message (Collapse)Author
2014-10-03More FindBugs cleanupAndrew Branson
2014-10-02push after rebasejet
2014-09-15Add trim calls to ObjectProperties.getString() to discard any extraAndrew Branson
whitespace around the values. Fixes #165 Remove old Gateway.getProperty methods - there should be no deprecated methods in the 3.0 release Move all getProperty() calls to getString or other so they will be trimmed. Introduce ObjectProperties.getInstances to create ArrayLists of objects from comma-separated class name lists.
2014-07-23Move openldap files to ldap packageAndrew Branson
Mark execute(ItemProxy, Job) non-public - should not be part of API, Jobs are fixed to a particular Item. Check null on module manager before calling shutdown scripts during close(). Remove auto-generated lines in ObjectProperties
2014-06-05ObjectProperties.getInstance() - if the property contains a String thenAndrew Branson
attempt to instantiate an object from that classname, otherwise return the object.
2014-04-09Improve property dumping, using Object.toString and giving the propertyAndrew Branson
class.
2014-02-26Properties extended as ObjectProperties, which can return any Object,Andrew Branson
and wrap int and boolean parsing. Gateway.getProperties() returns the new ObjectProperty instance. Old Gateway property methods still present but deprecated. Refs #149