summaryrefslogtreecommitdiff
path: root/src/main/java
AgeCommit message (Collapse)Author
2014-10-10Module items were not being imported.Andrew Branson
2014-10-09Predefined step testing and tweakingAndrew Branson
2014-10-09CorbaServer startup failure should throw a CannotManage instead of anAndrew Branson
InvalidData
2014-10-09Censoring wrong field in SetAgentPasswordAndrew Branson
2014-10-09Incorrect DomainPath construction in AddDomainContext predef step.Andrew Branson
2014-10-09Log requestAction exception reasons before throwing back to the client.Andrew Branson
Don't log stack trace.
2014-10-09Add abstract runActivityLogic to PredefinedStep, to insist that theAndrew Branson
subclasses implement it.
2014-10-09Missed slot property param of AddMemberToCollection in javadocAndrew Branson
2014-10-07Repackage to org.cristaliseAndrew Branson
2014-10-06Predef step container cleanupAndrew Branson
2014-10-06Remove unneeded IDAndrew Branson
2014-10-06More documentationAndrew Branson
2014-10-06Last Collection predef step - to create a numbered snapshot of theAndrew Branson
current state of the collection. Any further modification should be done by Admin using AddC2KObject
2014-10-06Document new Collection path schemeAndrew Branson
2014-10-06Collection docAndrew Branson
2014-10-03More FindBugs cleanupAndrew Branson
2014-10-03Rolled back the renaming of existing exceptions.Andrew Branson
2014-10-03Huge exception overhaul: Merged ClusterStorageException withAndrew Branson
PersistencyException. Replaced MembershipException with InvalidCollectionModification CORBA Exception. Made all predef steps throw more accurate exceptions when they go wrong, and let more exceptions bubble through from underneath.
2014-10-02Collection javadoc and cleanupAndrew Branson
2014-10-02push after rebasejet
2014-10-02Check the schema type of the predefined step before bundling the paramsAndrew Branson
into a PredefinedStepOutcome. Added single parameter execution method for scripts that can't handle the ... method params.
2014-10-01Predefined steps normally only interact with the last version of a3.0-BetaAndrew Branson
Collection. New steps will be added to create fixed versions as needed.
2014-10-01Collection version support, stored as a new final component of theAndrew Branson
Collection path. Null version implies "last".
2014-10-01Replace qualified class names with imports now the Import classes haveAndrew Branson
been renamed and don't clash.
2014-10-01Generate new UUID during import if the id field is empty, as well asAndrew Branson
missing.
2014-10-01Store event on Item.initialize(), containing the initial properties ofAndrew Branson
the new Item.
2014-09-30Import cleanupAndrew Branson
2014-09-30Remove Collection.URLInfo. Add Collection.Version, and add it to theAndrew Branson
Collection ClusterStorage path.
2014-09-30Remove Serializable. CRISTAL never uses Java serialization, only Castor. Andrew Branson
2014-09-30Initial properties can be supplied as a marshalled PropertyArrayList asAndrew Branson
an optional additional parameter to CreateItem/AgentFromDescription. Each property supplied must be defined in the property description.
2014-09-29More package docsAndrew Branson
2014-09-29Merge vertex gui classes into main collection package to simplifyAndrew Branson
2014-09-26Package documentation for collection, entity, entity.agent andAndrew Branson
entity.transfer packages
2014-09-26More FindBugs recommendationsAndrew Branson
2014-09-26Remove unnecessary assignment of return array in XmlElementParserAndrew Branson
2014-09-26Store list of previously loaded URLs in CastorHashMap as Strings. URLsAndrew Branson
are inefficient.
2014-09-26Only override Module.reset value if it's actually given for a particularAndrew Branson
module
2014-09-26Avoid possible NPEs by never setting mC2KProps to null. Clear it onAndrew Branson
destroy and init.
2014-09-26Update javadoc for Item id switchAndrew Branson
2014-09-26Switch Collection and Job equals() to Object rather than local. Andrew Branson
2014-09-26Check if queue is empty before wait(). Possible deadlock when proxyAndrew Branson
event arrives just before thread switches to waiting.
2014-09-26Explicit transient fields in GraphModelAndrew Branson
2014-09-26Various problems found by FindBugsAndrew Branson
2014-09-26Parent2ChildCollection was just a default implementation of Collection,Andrew Branson
so merge the two for simplicity.
2014-09-23Removing HTTP and UDP serversZsolt Kovcs
2014-09-22Fixed Exception on the 'Server x initialized' message inAndrew Branson
Gateway.startServer() if Gateway.close has been called by the Bootstrap on error before it returns.
2014-09-22Castor unmarshalling was resulting in null itemPaths in ImportItem.Andrew Branson
ItemPath wasn't being set by the constructor either.
2014-09-22ItemPath.fromUUIDString unnecessary as ItemPath(String) supports bothAndrew Branson
plain UUIDs and an /entity prefix. Tightened that up and removed the fromUUIDString method for a simpler API. Also switched AgentPath(String) to a path argument for consistency. New AgentPaths should be created with AgentPath(new ItemPath(), String) instead.
2014-09-21Lost commits - NPE on ModuleResource.getVersion caused by badAndrew Branson
autoboxing, and Olivier's classloader tweaks.
2014-09-19Introduced static method ItemPath.fromUUIDString and made the UUIDAndrew Branson
constructor protected to better handle ItemPath and AgentPath construction with String UUIDs, throwing the right exceptions.