* @throws WPISuiteException
*/
@SuppressWarnings("rawtypes") //Ignore the warning about the use of type Class
public List<Model> notRetrieve(final Class anObjectQueried, String aFieldName, final Object theGivenValue) throws WPISuiteException{
// Please see Wiki for more information on the ServerConfiguration.
ClientConfiguration config = Db4oClientServer.newClientConfiguration();
config.common().reflectWith(new JdkReflector(Thread.currentThread().getContextClassLoader()));
Method[] allMethods = anObjectQueried.getMethods();
Method methodToBeSaved = null;
for(Method m: allMethods){//Cycles through all of the methods in the class anObjectQueried
if(m.getName().equalsIgnoreCase("get"+aFieldName)){