Delete a category schema

To delete a category schema from the repository, use RAMCategorySchema.setAction(RAMAction) and pass in RAMAction.DELETE.

                //Delete a Category Schema
                newCategorySchema.setAction(RAMAction.DELETE);
                session.put(newCategorySchema, new NullProgressMonitor());

Feedback