implements
- sample.dao.UserDAO {
-
- /**
- * Required constructor
- */
- public UserDAOImpl() {
- super(User.class);
- }
-
- public User findByUsername(String username) {
- return (User) getEntityManager().createNamedQuery("User.findByUsername")
- .setParameter("username", username).getSingleResult();
- }
-
-
-}
diff --git a/sandbox/heavyduty/src/main/java/sample/domain/User.java b/sandbox/heavyduty/src/main/java/sample/domain/User.java
deleted file mode 100755
index 2b7a93e6b7..0000000000
--- a/sandbox/heavyduty/src/main/java/sample/domain/User.java
+++ /dev/null
@@ -1,120 +0,0 @@
-/*
- * Copyright 2002-2016 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.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package sample.domain;
-
-import java.io.Serializable;
-import java.util.Date;
-
-import javax.persistence.Basic;
-import javax.persistence.Entity;
-import javax.persistence.GeneratedValue;
-import javax.persistence.GenerationType;
-import javax.persistence.Id;
-import javax.persistence.NamedQuery;
-
-/**
- * The Class Patient.
- */
-@Entity
-@NamedQuery(name = "User.findByUsername", query = "from User where username= :username")
-public class User implements Serializable {
-
- /** serialVersionUID */
- private static final long serialVersionUID = 7073017148588882593L;
-
- /** The id. */
- @Id
- @GeneratedValue(strategy=GenerationType.IDENTITY)
- private Long id;
-
- /** The username. */
- @Basic(optional = false)
- private String username;
-
- /** The username. */
- @Basic(optional = false)
- private String password;
-
- /**
- * Default constructor
- */
- public User() {
- super();
- }
-
- /**
- * @param username
- * @param password
- */
- public User(String username, String password) {
- super();
- this.username = username;
- this.password = password;
- }
-
- /**
- * @return the id
- */
- public Long getId() {
- return id;
- }
-
- /**
- * @param id the id to set
- */
- public void setId(Long id) {
- this.id = id;
- }
-
- /**
- * @return the username
- */
- public String getUsername() {
- return username;
- }
-
- /**
- * @param username the username to set
- */
- public void setUsername(String username) {
- this.username = username;
- }
-
- /**
- * Full constructor
- * @param username
- */
- public User(String username, String password, Date derniereConnexion,
- String key) {
- super();
- this.username = username;
- }
-
- /**
- * @return the password
- */
- public String getPassword() {
- return password;
- }
-
- /**
- * @param password the password to set
- */
- public void setPassword(String password) {
- this.password = password;
- }
-}
diff --git a/sandbox/heavyduty/src/main/java/sample/service/UserService.java b/sandbox/heavyduty/src/main/java/sample/service/UserService.java
deleted file mode 100755
index 4103e49120..0000000000
--- a/sandbox/heavyduty/src/main/java/sample/service/UserService.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright 2002-2016 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.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package sample.service;
-
-import org.springframework.security.core.userdetails.UserDetails;
-import org.springframework.security.core.userdetails.UserDetailsService;
-
-public interface UserService extends UserDetailsService {
-
- /**
- * Register a new User in database
- * @param username
- */
- public UserDetails register(String username, String password);
-
-
-
-}
diff --git a/sandbox/heavyduty/src/main/java/sample/service/impl/UserServiceImpl.java b/sandbox/heavyduty/src/main/java/sample/service/impl/UserServiceImpl.java
deleted file mode 100755
index 7c31690fe1..0000000000
--- a/sandbox/heavyduty/src/main/java/sample/service/impl/UserServiceImpl.java
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- * Copyright 2002-2016 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.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/**
- *
- */
-package sample.service.impl;
-
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-import org.springframework.beans.factory.annotation.Autowired;
-import org.springframework.security.core.AuthenticationException;
-import org.springframework.security.core.authority.AuthorityUtils;
-import org.springframework.security.core.userdetails.UserDetails;
-import org.springframework.security.core.userdetails.UsernameNotFoundException;
-import org.springframework.stereotype.Component;
-import org.springframework.transaction.annotation.Transactional;
-
-import sample.dao.UserDAO;
-import sample.domain.User;
-import sample.service.UserService;
-
-/**
- * @author A207119
- *
- */
-@Component
-@Transactional
-public class UserServiceImpl implements UserService {
-
- /** The logger */
- private static final Log LOG = LogFactory.getLog(UserServiceImpl.class);
-
- /** The User DAO */
- @Autowired
- private UserDAO userDAO = null;
-
- public UserDetails loadUserByUsername(String username)
- throws AuthenticationException {
- try {
- User user = userDAO.findByUsername(username);
-
- return new org.springframework.security.core.userdetails.User(user
- .getUsername(), user.getPassword(), true, true, true, true,
- AuthorityUtils.createAuthorityList("ROLE_USER"));
- } catch (Exception e) {
- LOG.error(e.getMessage(), e);
- throw new UsernameNotFoundException("No matching account", e);
- }
- }
-
- public UserDetails register(String username, String password) {
- User user = new User(username, password);
- userDAO.persist(user);
- return new org.springframework.security.core.userdetails.User(user
- .getUsername(), user.getPassword(), true, true, true, true,
- AuthorityUtils.createAuthorityList("ROLE_USER"));
-
- }
-
- /**
- * @param userDAO
- * the userDAO to set
- */
- public void setUserDAO(UserDAO userDAO) {
- this.userDAO = userDAO;
- }
-
-}
diff --git a/sandbox/heavyduty/src/main/resources/applicationContext-business.xml b/sandbox/heavyduty/src/main/resources/applicationContext-business.xml
deleted file mode 100755
index 65376beb8f..0000000000
--- a/sandbox/heavyduty/src/main/resources/applicationContext-business.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/META-INF/MANIFEST.MF b/sandbox/heavyduty/src/main/webapp/META-INF/MANIFEST.MF
deleted file mode 100755
index 58630c02ef..0000000000
--- a/sandbox/heavyduty/src/main/webapp/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,2 +0,0 @@
-Manifest-Version: 1.0
-
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-misc.xml b/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-misc.xml
deleted file mode 100755
index 506f314d55..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-misc.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- My Realm
-
-
-
-
-
-
-
-
- bigbank.BankService.post*=ROLE_SUPERVISOR
- bigbank.BankService.find*=ROLE_SUPERVISOR
-
-
-
-
-
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-persistence.xml b/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-persistence.xml
deleted file mode 100755
index 8b82eb9c20..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-persistence.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-security.xml b/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-security.xml
deleted file mode 100755
index e78dad3351..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/appContext-security.xml
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/applicationContext-acegi-security.xml b/sandbox/heavyduty/src/main/webapp/WEB-INF/applicationContext-acegi-security.xml
deleted file mode 100644
index 3d7ac540e3..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/applicationContext-acegi-security.xml
+++ /dev/null
@@ -1,160 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- My Realm
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/META-INF/persistence.xml b/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/META-INF/persistence.xml
deleted file mode 100644
index 3f9784b418..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/META-INF/persistence.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- org.hibernate.ejb.HibernatePersistence
- sample.domain.User
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/database/heavyduty b/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/database/heavyduty
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/jdbc.properties b/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/jdbc.properties
deleted file mode 100755
index 144ced8acf..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/jdbc.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-jpa.dialect=org.hibernate.dialect.HSQLDialect
-jpa.generateDdl=true
-jpa.showSql=true
-
-jdbc.driver=org.hsqldb.jdbcDriver
-jdbc.url=jdbc:hsqldb:mem:heavyduty
-jdbc.username=sa
-jdbc.password=
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/users.ldif b/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/users.ldif
deleted file mode 100755
index 0cf02e22ec..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/classes/users.ldif
+++ /dev/null
@@ -1,60 +0,0 @@
-dn: ou=groups,dc=springframework,dc=org
-objectclass: top
-objectclass: organizationalUnit
-ou: groups
-
-dn: ou=people,dc=springframework,dc=org
-objectclass: top
-objectclass: organizationalUnit
-ou: people
-
-dn: uid=rod,ou=people,dc=springframework,dc=org
-objectclass: top
-objectclass: person
-objectclass: organizationalPerson
-objectclass: inetOrgPerson
-cn: Rod Johnson
-sn: Johnson
-uid: rod
-userPassword: koala
-
-dn: uid=dianne,ou=people,dc=springframework,dc=org
-objectclass: top
-objectclass: person
-objectclass: organizationalPerson
-objectclass: inetOrgPerson
-cn: Dianne Emu
-sn: Emu
-uid: dianne
-userPassword: emu
-
-dn: uid=scott,ou=people,dc=springframework,dc=org
-objectclass: top
-objectclass: person
-objectclass: organizationalPerson
-objectclass: inetOrgPerson
-cn: Scott
-sn: Wombat
-uid: scott
-userPassword: wombat
-
-dn: cn=user,ou=groups,dc=springframework,dc=org
-objectclass: top
-objectclass: groupOfNames
-cn: user
-member: uid=rod,ou=people,dc=springframework,dc=org
-member: uid=dianne,ou=people,dc=springframework,dc=org
-member: uid=scott,ou=people,dc=springframework,dc=org
-
-dn: cn=teller,ou=groups,dc=springframework,dc=org
-objectclass: top
-objectclass: groupOfNames
-cn: teller
-member: uid=rod,ou=people,dc=springframework,dc=org
-member: dianne=rod,ou=people,dc=springframework,dc=org
-
-dn: cn=supervisor,ou=groups,dc=springframework,dc=org
-objectclass: top
-objectclass: groupOfNames
-cn: supervisor
-member: uid=rod,ou=people,dc=springframework,dc=org
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/freemarker/login.ftl b/sandbox/heavyduty/src/main/webapp/WEB-INF/freemarker/login.ftl
deleted file mode 100644
index af47c4b331..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/freemarker/login.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- Spring Security Login
-
-
-
- Spring Security Login (Freemarker)
-
-
-
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/freemarker/multi-action-test.ftl b/sandbox/heavyduty/src/main/webapp/WEB-INF/freemarker/multi-action-test.ftl
deleted file mode 100644
index 0c73d37961..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/freemarker/multi-action-test.ftl
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- MultiActionController Test
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/heavyduty-servlet.xml b/sandbox/heavyduty/src/main/webapp/WEB-INF/heavyduty-servlet.xml
deleted file mode 100755
index 2aaaa2aac2..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/heavyduty-servlet.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- **/testMulti.htm=testMultiController
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/jsp/listAccounts.jsp b/sandbox/heavyduty/src/main/webapp/WEB-INF/jsp/listAccounts.jsp
deleted file mode 100755
index 548f43f3ba..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/jsp/listAccounts.jsp
+++ /dev/null
@@ -1,27 +0,0 @@
-<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
-
-Accounts
-
-Home3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- &amount=-20.00">-$20
- &amount=-5.00">-$5
- &amount=5.00">+$5
- &amount=20.00">+$20
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/WEB-INF/web.xml b/sandbox/heavyduty/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644
index eebf0d9123..0000000000
--- a/sandbox/heavyduty/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
- Spring Security Tutorial Application
-
-
-
- contextConfigLocation
-
- classpath:applicationContext-business.xml
- /WEB-INF/appContext-persistence.xml
- /WEB-INF/appContext-security.xml
-
-
-
-
- log4jConfigLocation
- /WEB-INF/classes/log4j.properties
-
-
-
- webAppRootKey
- heavyduty.root
-
-
-
- springSecurityFilterChain
- org.springframework.web.filter.DelegatingFilterProxy
-
-
-
- springSecurityFilterChain
- /*
-
-
-
- org.springframework.web.util.Log4jConfigListener
-
-
-
-
- org.springframework.web.context.ContextLoaderListener
-
-
-
-
- org.springframework.security.web.session.HttpSessionEventPublisher
-
-
-
-
- heavyduty
- org.springframework.web.servlet.DispatcherServlet
- 1
-
-
-
- heavyduty
- *.htm
-
-
-
- index.jsp
-
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/context.jsp b/sandbox/heavyduty/src/main/webapp/context.jsp
deleted file mode 100644
index f758538a4b..0000000000
--- a/sandbox/heavyduty/src/main/webapp/context.jsp
+++ /dev/null
@@ -1,29 +0,0 @@
-<%@page import="org.springframework.web.context.support.WebApplicationContextUtils"%>
-<%@page import="org.springframework.security.ldap.authentication.LdapAuthenticationProvider"%>
-<%@page import="org.springframework.security.authentication.ProviderManager"%>
-
-
-
-Context Information Page
-
-LdapAuthenticationProvider instances:
-
-<%=
-WebApplicationContextUtils.getRequiredWebApplicationContext(
- session.getServletContext()).getBeansOfType(LdapAuthenticationProvider.class)
-%>
-
-
-
-Providers:
-
-<%=
-((ProviderManager)WebApplicationContextUtils.getRequiredWebApplicationContext(
- session.getServletContext()).getBean("org.springframework.security.authenticationManager")).getProviders() %>
-
-
-
-
-Home
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/index.jsp b/sandbox/heavyduty/src/main/webapp/index.jsp
deleted file mode 100755
index 50ce9eec80..0000000000
--- a/sandbox/heavyduty/src/main/webapp/index.jsp
+++ /dev/null
@@ -1,18 +0,0 @@
-<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
-
-
-HeavyDuty App Home Page
-
-Anyone can view this page.
-
-
-Test multi-action controller SEC-830 .
-
-
-Your principal object is....: <%= request.getUserPrincipal() %>
-
-Restricted Pages ...
-Secure page
-Extremely secure page
-
-
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/login.jsp b/sandbox/heavyduty/src/main/webapp/login.jsp
deleted file mode 100755
index ab4b18b060..0000000000
--- a/sandbox/heavyduty/src/main/webapp/login.jsp
+++ /dev/null
@@ -1,25 +0,0 @@
-<%@ taglib prefix='c' uri='http://java.sun.com/jstl/core_rt' %>
-<%@ page import="org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter" %>
-<%@ page import="org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter" %>
-<%@ page import="org.springframework.security.core.AuthenticationException" %>
-
-
-
- CUSTOM SPRING SECURITY LOGIN
-
-
-
- CUSTOM SPRING SECURITY LOGIN
-
-
-
-
diff --git a/sandbox/heavyduty/src/main/webapp/secure/extreme/index.jsp b/sandbox/heavyduty/src/main/webapp/secure/extreme/index.jsp
deleted file mode 100755
index 4aac84c981..0000000000
--- a/sandbox/heavyduty/src/main/webapp/secure/extreme/index.jsp
+++ /dev/null
@@ -1,15 +0,0 @@
-<%@ taglib prefix="authz" uri="http://www.springframework.org/security/tags" %>
-
-
-
-VERY Secure Page
-This is a protected page. You can only see me if you are a supervisor.
-
-
- You have "ROLE_SUPERVISOR" (this text is surrounded by <authz:authorize> tags).
-
-
-Home
-
Logout
-
-
\ No newline at end of file
diff --git a/sandbox/heavyduty/src/main/webapp/secure/index.jsp b/sandbox/heavyduty/src/main/webapp/secure/index.jsp
deleted file mode 100755
index 8edc812194..0000000000
--- a/sandbox/heavyduty/src/main/webapp/secure/index.jsp
+++ /dev/null
@@ -1,38 +0,0 @@
-<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
-
-
-
-Secure Page
-
-This is a protected page. You can get to me if you've been remembered,
-or if you've authenticated this session.
-
-
-
- You are a supervisor! You can therefore see the extremely secure page .
-
-
-Properties obtained using <sec:authentication /> tag
-
-Tag Value
-
-<sec:authentication property='name' />
-
-
-<sec:authentication property='principal.username' />
-
-
-<sec:authentication property='principal.enabled' />
-
-
-<sec:authentication property='principal.accountNonLocked' />
-
-
-
-Saved Request: <%= session.getAttribute("SPRING_SECURITY_SAVED_REQUEST_KEY") %>
-
-
-Home
-
Logout
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/resources/applicationContext-business.xml b/sandbox/webflow/src/main/resources/applicationContext-business.xml
deleted file mode 100644
index 65376beb8f..0000000000
--- a/sandbox/webflow/src/main/resources/applicationContext-business.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/META-INF/MANIFEST.MF b/sandbox/webflow/src/main/webapp/META-INF/MANIFEST.MF
deleted file mode 100644
index 58630c02ef..0000000000
--- a/sandbox/webflow/src/main/webapp/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,2 +0,0 @@
-Manifest-Version: 1.0
-
diff --git a/sandbox/webflow/src/main/webapp/WEB-INF/freemarker/form.ftl b/sandbox/webflow/src/main/webapp/WEB-INF/freemarker/form.ftl
deleted file mode 100644
index 92e3e344f1..0000000000
--- a/sandbox/webflow/src/main/webapp/WEB-INF/freemarker/form.ftl
+++ /dev/null
@@ -1,13 +0,0 @@
-
-
-
- Form
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/WEB-INF/freemarker/login.ftl b/sandbox/webflow/src/main/webapp/WEB-INF/freemarker/login.ftl
deleted file mode 100644
index 788e5051fc..0000000000
--- a/sandbox/webflow/src/main/webapp/WEB-INF/freemarker/login.ftl
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
- Spring Security Login
-
-
-
- Spring Security Login (Freemarker)
-
-
-
-
-
diff --git a/sandbox/webflow/src/main/webapp/WEB-INF/jsp/listAccounts.jsp b/sandbox/webflow/src/main/webapp/WEB-INF/jsp/listAccounts.jsp
deleted file mode 100644
index 548f43f3ba..0000000000
--- a/sandbox/webflow/src/main/webapp/WEB-INF/jsp/listAccounts.jsp
+++ /dev/null
@@ -1,27 +0,0 @@
-<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt"%>
-
-Accounts
-
-Home3
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- &amount=-20.00">-$20
- &amount=-5.00">-$5
- &amount=5.00">+$5
- &amount=20.00">+$20
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/WEB-INF/secure.xml b/sandbox/webflow/src/main/webapp/WEB-INF/secure.xml
deleted file mode 100644
index 43f1ef9eec..0000000000
--- a/sandbox/webflow/src/main/webapp/WEB-INF/secure.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/WEB-INF/security-config.xml b/sandbox/webflow/src/main/webapp/WEB-INF/security-config.xml
deleted file mode 100644
index 297c358d35..0000000000
--- a/sandbox/webflow/src/main/webapp/WEB-INF/security-config.xml
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/WEB-INF/web.xml b/sandbox/webflow/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644
index 2291e594e4..0000000000
--- a/sandbox/webflow/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
- Spring Security Tutorial Application
-
-
-
- contextConfigLocation
-
- /WEB-INF/security-config.xml
-
-
-
-
- log4jConfigLocation
- /WEB-INF/classes/log4j.properties
-
-
-
- springSecurityFilterChain
- org.springframework.web.filter.DelegatingFilterProxy
-
-
-
- springSecurityFilterChain
- /*
-
-
-
-
- org.springframework.web.context.ContextLoaderListener
-
-
-
-
- org.springframework.security.ui.session.HttpSessionEventPublisher
-
-
-
- org.springframework.web.util.Log4jConfigListener
-
-
-
-
- webflow
- org.springframework.web.servlet.DispatcherServlet
- 1
-
-
-
- webflow
- /app/*
-
-
-
diff --git a/sandbox/webflow/src/main/webapp/WEB-INF/webflow-servlet.xml b/sandbox/webflow/src/main/webapp/WEB-INF/webflow-servlet.xml
deleted file mode 100644
index 2205b387fd..0000000000
--- a/sandbox/webflow/src/main/webapp/WEB-INF/webflow-servlet.xml
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
- /secure=flowController
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/index.html b/sandbox/webflow/src/main/webapp/index.html
deleted file mode 100644
index c15ad36daa..0000000000
--- a/sandbox/webflow/src/main/webapp/index.html
+++ /dev/null
@@ -1 +0,0 @@
-Hi. I'm the index.
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/secure/extreme/index.jsp b/sandbox/webflow/src/main/webapp/secure/extreme/index.jsp
deleted file mode 100644
index 4aac84c981..0000000000
--- a/sandbox/webflow/src/main/webapp/secure/extreme/index.jsp
+++ /dev/null
@@ -1,15 +0,0 @@
-<%@ taglib prefix="authz" uri="http://www.springframework.org/security/tags" %>
-
-
-
-VERY Secure Page
-This is a protected page. You can only see me if you are a supervisor.
-
-
- You have "ROLE_SUPERVISOR" (this text is surrounded by <authz:authorize> tags).
-
-
-Home
-
Logout
-
-
\ No newline at end of file
diff --git a/sandbox/webflow/src/main/webapp/secure/index.jsp b/sandbox/webflow/src/main/webapp/secure/index.jsp
deleted file mode 100644
index 90678e7643..0000000000
--- a/sandbox/webflow/src/main/webapp/secure/index.jsp
+++ /dev/null
@@ -1,36 +0,0 @@
-<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags" %>
-
-
-
-Secure Page
-
-This is a protected page. You can get to me if you've been remembered,
-or if you've authenticated this session.
-
-
-
- You are a supervisor! You can therefore see the extremely secure page .
-
-
-Properties obtained using <sec:authentication /> tag
-
-Tag Value
-
-<sec:authentication property='name' />
-
-
-<sec:authentication property='principal.username' />
-
-
-<sec:authentication property='principal.enabled' />
-
-
-<sec:authentication property='principal.accountNonLocked' />
-
-
-
-
-Home
-
Logout
-
-
\ No newline at end of file