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