X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=system%2Fgeneral%2Fsrc%2Fmain%2Fjava%2Forg%2Fwamblee%2Fsystem%2Fcomponents%2FORMappingConfig.java;h=5575619bda14c8c13664aa5893fc398daf95e5a0;hb=49ce7cb8387601982d5e6ef186ce206d38f6e3d7;hp=880e869e916c9f329214cb964717afe89cc5dbd4;hpb=6676eadc7b64f465f5a35b7802864c61fe0cef93;p=utils diff --git a/system/general/src/main/java/org/wamblee/system/components/ORMappingConfig.java b/system/general/src/main/java/org/wamblee/system/components/ORMappingConfig.java index 880e869e..5575619b 100644 --- a/system/general/src/main/java/org/wamblee/system/components/ORMappingConfig.java +++ b/system/general/src/main/java/org/wamblee/system/components/ORMappingConfig.java @@ -1,5 +1,5 @@ /* - * Copyright 2008 the original author or authors. + * Copyright 2005-2010 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -42,20 +42,20 @@ public class ORMappingConfig { } }; - private boolean _schemaUpdate; - private DatabaseType _type; + private boolean schemaUpdate; + private DatabaseType type; public ORMappingConfig(boolean aSchemaUpdate, DatabaseType aType) { - _schemaUpdate = aSchemaUpdate; - _type = aType; + schemaUpdate = aSchemaUpdate; + type = aType; } public boolean isSchemaUpdate() { - return _schemaUpdate; + return schemaUpdate; } public DatabaseType getType() { - return _type; + return type; } }