|
Groovy Documentation | |||||||
| FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectorg.codehaus.groovy.grails.plugins.web.api.ControllersDomainBindingApi
@SuppressWarnings("rawtypes")
public class ControllersDomainBindingApi
extends java.lang.Object
Enhancements made to domain classes to for data binding.
| Field Summary | |
|---|---|
static java.lang.String |
AUTOWIRE_DOMAIN_METHOD
|
| Method Summary | |
|---|---|
java.util.Map
|
getProperties(java.lang.Object instance)
Returns a map of the objects properties that can be used to during binding to bind a subset of properties |
static void
|
initialize(java.lang.Object instance)
Autowires the instance |
static void
|
initialize(java.lang.Object instance, java.util.Map namedArgs)
A map based constructor that binds the named arguments to the target instance |
org.springframework.validation.BindingResult
|
setProperties(java.lang.Object instance, java.lang.Object bindingSource)
Binds the source object to the properties of the target instance converting any types as necessary |
| Methods inherited from class java.lang.Object | |
|---|---|
| java.lang.Object#wait(), java.lang.Object#wait(long), java.lang.Object#wait(long, int), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
| Field Detail |
|---|
public static final java.lang.String AUTOWIRE_DOMAIN_METHOD
| Method Detail |
|---|
public java.util.Map getProperties(java.lang.Object instance)
instance - The instance
public static void initialize(java.lang.Object instance)
instance - The target instance
public static void initialize(java.lang.Object instance, java.util.Map namedArgs)
instance - The target instancenamedArgs - The named arguments
public org.springframework.validation.BindingResult setProperties(java.lang.Object instance, java.lang.Object bindingSource)
instance - The instancebindingSource - The binding source
Groovy Documentation