Author: sebawagner
Date: Sat Sep 29 15:41:13 2012
New Revision: 1391825
URL: http://svn.apache.org/viewvc?rev=1391825&view=rev
Log:
Improve javaDoc
Modified:
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/data/basic/dao/ConfigurationDaoImpl.java
Modified:
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/data/basic/dao/ConfigurationDaoImpl.java
URL:
http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/data/basic/dao/ConfigurationDaoImpl.java?rev=1391825&r1=1391824&r2=1391825&view=diff
==============================================================================
---
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/data/basic/dao/ConfigurationDaoImpl.java
(original)
+++
incubator/openmeetings/trunk/singlewebapp/src/org/apache/openmeetings/data/basic/dao/ConfigurationDaoImpl.java
Sat Sep 29 15:41:13 2012
@@ -42,9 +42,9 @@ import org.slf4j.Logger;
import org.springframework.transaction.annotation.Transactional;
/**
- * Insert/update/Delete on {@link Configuration}
- *
- * provides basic mechanism to get a Conf Key:<br/>
+ * Insert/update/Delete on {@link Configuration}<br/>
+ * <br/>
+ * It provides basic mechanism to get a Conf Key:<br/>
* {@link #getConfValue(String, Class, String)} <br/>
* <br/>
* <b> {@link #getConfKey(String)} is deprecated!</b>
@@ -66,8 +66,10 @@ public class ConfigurationDaoImpl implem
@Resource(name = "usersDao")
private UsersDaoImpl usersDao;
- // TODO: Dao's are not the place to store a session variables,
- // also updates to the key won't update this variable
+ /**
+ * @deprecated Dao's are not the place to store session variables, also
+ * updates to the key won't update this variable
+ */
@Deprecated
private String appName = null;