Removing $Id$ markers and stripping trailing whitespace from the codebase.

This commit is contained in:
Luke Taylor
2010-01-08 16:06:05 +00:00
parent 9a323f15bc
commit 052537c8b0
877 changed files with 12140 additions and 12851 deletions

View File

@@ -8,7 +8,6 @@ import org.springframework.util.Assert;
/**
* @author Ben Alex
* @version $Id$
*
*/
public abstract class AbstractElement {

View File

@@ -19,7 +19,6 @@ import org.springframework.util.Assert;
* Populates the DMS in-memory database with document and ACL information.
*
* @author Ben Alex
* @version $Id$
*/
public class DataSourcePopulator implements InitializingBean {
protected static final int LEVEL_NEGATE_READ = 0;

View File

@@ -3,7 +3,6 @@ package sample.dms;
/**
*
* @author Ben Alex
* @version $Id$
*
*/
public class Directory extends AbstractElement {
@@ -20,5 +19,5 @@ public class Directory extends AbstractElement {
public String toString() {
return "Directory[fullName='" + getFullName() + "'; name='" + getName() + "'; id='" + getId() + "'; parent='" + getParent() + "']";
}
}

View File

@@ -4,7 +4,6 @@ package sample.dms;
/**
*
* @author Ben Alex
* @version $Id$
*
*/
public interface DocumentDao {

View File

@@ -14,7 +14,6 @@ import org.springframework.util.Assert;
* Basic JDBC implementation of {@link DocumentDao}.
*
* @author Ben Alex
* @version $Id$
*/
public class DocumentDaoImpl extends JdbcDaoSupport implements DocumentDao {

View File

@@ -6,7 +6,6 @@ import org.springframework.util.Assert;
/**
*
* @author Ben Alex
* @version $Id$
*/
public class File extends AbstractElement {
/** Content of the file, which can be null */

View File

@@ -4,9 +4,8 @@ import sample.dms.DocumentDao;
/**
* Extends the {@link DocumentDao} and introduces ACL-related methods.
*
*
* @author Ben Alex
* @version $Id$
*
*/
public interface SecureDocumentDao extends DocumentDao {

View File

@@ -20,7 +20,6 @@ import sample.dms.DocumentDaoImpl;
* Adds extra {@link SecureDocumentDao} methods.
*
* @author Ben Alex
* @version $Id$
*
*/
public class SecureDocumentDaoImpl extends DocumentDaoImpl implements SecureDocumentDao {

View File

@@ -4,7 +4,6 @@
<!--
- Application context representing the application without any security services.
-
- $Id$
-->
<beans>

View File

@@ -3,7 +3,6 @@
<!--
- Application context representing the application WITH security services.
-
- $Id$
-->
<beans xmlns="http://www.springframework.org/schema/beans"

View File

@@ -4,7 +4,6 @@
<!--
- Application context representing the transaction, auto proxy and data source beans.
-
- $Id$
-->
<beans>

View File

@@ -17,7 +17,6 @@ import sample.dms.DocumentDao;
* Basic integration test for DMS sample.
*
* @author Ben Alex
* @version $Id$
*
*/
@ContextConfiguration(locations={"classpath:applicationContext-dms-shared.xml", "classpath:applicationContext-dms-insecure.xml"})

View File

@@ -9,7 +9,6 @@ import org.springframework.test.context.ContextConfiguration;
* Basic integration test for DMS sample when security has been added.
*
* @author Ben Alex
* @version $Id$
*
*/
@ContextConfiguration(locations={"classpath:applicationContext-dms-shared.xml", "classpath:applicationContext-dms-secure.xml"})