package uk.ac.vamsas.client.simpleclient; /** * Config for SimpleClient - a basic Vamsas Client Interface implementation. * @author JimP * */ public class SimpleClientConfig { public boolean _validatemergedroots=false; public boolean _validateupdatedroots=false; /** * New VAMSAS roots added (merged) into the document * will be validated before actually being added. * @return */ public boolean validateMergedRoots() { return _validatemergedroots; } /** * existing VAMSAS roots that may have been modified * will be validated before the updated document can * be written. * @return */ public boolean validateUpdatedRoots() { return _validateupdatedroots; } }