Right now, I'm using the grails spring security plugin with the following configuration:
grails.plugins.springsecurity.useBasicAuth = true
grails.plugins.springsecurity.basic.realmName = "MyApp"
This works great for basic auth, but I also need to allow and manage authentication through a separate service that relies on cookies. How can I hook into the spring security plugin to also allow for custom service endpoint authentication or basic authentication?