/** * Construct an instance of this class * * @param strictOData indicates whether to generate a strict odata model */ public JPAResponderGen(Properties props) { initialise(props); }
/** * Construct an instance of this class * * @param strictOData indicates whether to generate a strict odata model */ public JPAResponderGen(boolean strictOData) { Properties props = new Properties(); if (strictOData) props.put(PROPERTY_KEY_ROOT + "." + STRICT_ODATA_KEY, "true"); initialise(props); }