0
votes
3answers
193 views

Seeing only your own data in Grails

This seems like a fundamental question, but I haven't found a clear answer. I'm using the spring-security-core plugin with Grails, and I have S2Users who have many Portfolios, and Portfolios have ...
1
vote
1answer
110 views

Add association to SpringSecurity User class

I'm trying to add a reference from the default Spring Security user domain class to another class which should hold additional user info. class User { transient springSecurityService String ...
0
votes
2answers
114 views

Grails access value from belongsTo in domain?

I am working on a Grails project and I have a User domain model with the following: class SecUser { transient springSecurityService String username String email String password ...
0
votes
1answer
200 views

Exception in custom validator in Grails

I'm trying to implement password validation in Grais on a User domain entity created via spring security core plugin. I have added the following code in my entity: class User { // Added by the ...
1
vote
1answer
168 views

Restrict access to domain classes gorm methods in grails with Spring Security

Is there a way to define access to GORM methods (e.g.: save, delete, update) with Spring Security? I've seen ACL's plugin documentation but, although I think that the plug-in allow me to define the ...
3
votes
1answer
341 views

String-based queries like [executeQuery] are currently not supported in this implementation of GORM

I'm trying to persist spring-security-acl domain objects in mongodb using grails mongo plugin. While executing following line of code aclUtilService.addPermission Phone.class, phoneInstance.id, new ...
0
votes
1answer
396 views

Initializing a Date property in beforeInsert fails without exception

I have a standard user class, which has been created by the spring-security-core plugin in Grails 2.0.1. I use mongodb for persistence using the mongodb plugin. If I add a Date property to the user ...
0
votes
2answers
350 views

Persisting Groovy models within Spring Security Event Listener

I've added an onAuthenticationSuccessEvent to my config.groovy in order to try add a Login model to a list within the users User model. The problem i'm having, is that the event listener is a closure, ...
0
votes
1answer
292 views

Grails: spring security plugin - ERROR springsecurity.GormPersistentTokenRepository

Use Grails 2.0, spring security core plugin 1.2.6. When login, following error is printed on the console: | Error 2012-02-09 12:05:35,627 ["http-bio-8090"-exec-2] ERROR ...
0
votes
1answer
313 views

Grails criteria for finding not in another set of results (or finding non-admin users in Spring)

Domain outlay: class User { String username static hasMany = [userRoles: UserRole] } class Role { String authority } class UserRole { User user Role role static belongsTo = ...
0
votes
2answers
274 views

How to make a join in a GORM criteria with a domain class without association ?

I use a GORM criteria to retrieve a list of Spring Security users with filtering and sorting on the properties of the user, and I would like to sort on the spring security role affected to each user. ...
0
votes
1answer
349 views

No signature of method: static org.springframework.security.oauth.User.withTransaction()

i have a problem is shown below; groovy.lang.MissingMethodException: No signature of method: static org.springframework.security.oauth.User.withTransaction() is applicable for argument types: ...
1
vote
2answers
234 views

Spring Security on Grails and Tomcat Security with Realms

I am on the current Grails version 1.3.7, programming against a legacy DB schema on a pretty recent version of mySQL. There are tables for the user and the roles and a third table to link the two in ...
5
votes
1answer
191 views

How to share Spring Security classes between a Grails app and a Java app?

I need to use the Spring Security User, Role/Authority and the UserRole-join classes both in a Grails application and a Java app. Where and how should I implement/generate these classes? If I use ...
0
votes
1answer
722 views

Grails testing user role custom validation constraints using Spring Security Core Plugin

I'm sure this is a fairly common situation. I'm using the Spring Security Core plugin and want to create a domain model that has a Person limited to certain roles: class Workgroup { Person manager ...