Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java"/>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
<classpathentry kind="src" output="target/test-classes" path="src/test/java"/>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
Expand Down
1 change: 1 addition & 0 deletions log.roo
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,4 @@ backup
// Spring Roo 1.1.5.RELEASE [rev d3a68c3] log closed at 2011-12-06 12:51:48
// Spring Roo 1.1.5.RELEASE [rev d3a68c3] log opened at 2011-12-06 18:40:38
// Spring Roo 1.1.5.RELEASE [rev d3a68c3] log closed at 2011-12-06 18:46:48
// Spring Roo 1.1.5.RELEASE [rev d3a68c3] log opened at 2011-12-16 16:07:49
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@
<intercept-url pattern="/vaeosas/**" access="hasRole('ROLE_ADMIN')" />
<intercept-url pattern="/vahtkonds/**" access="hasRole('ROLE_ADMIN')" />
<intercept-url pattern="/voimalik_alluvuses/**" access="hasRole('ROLE_ADMIN')" />


<!--
<intercept-url pattern="/choices/**" access="hasRole('ROLE_ADMIN')"/>
<intercept-url pattern="/member/**" access="isAuthenticated()" />
-->
<intercept-url pattern="/resources/**" access="permitAll" />
<intercept-url pattern="/**" access="permitAll" />
<intercept-url pattern="/login" access="permitAll" />
<intercept-url pattern="/login" access="permitAll" />
<intercept-url pattern="/**" access="isAuthenticated()" />

</http>

Expand Down
Loading