| Interfaces | |
|---|---|
| GrailsScaffolder | An interface that facilitates the required methods for using Scaffolding within GrailsControllers |
| GrailsTemplateGenerator | An interface that defines methods for generating Grails artifacts from a domain class |
| ScaffoldCallback | No description provided. |
| ScaffoldDomain | The main interface used by scaffolded controllers to access instances of persistent classes |
| ScaffoldRequestHandler | An interface defining methods to handle CRUD operations involved in scaffolding |
| ScaffoldResponseHandler | An interface defining methods to handle responses. |
| ScaffoldResponseHandlerFactory | An interface that defines factory methds for creating ScaffoldResponse instances |
| ScaffoldViewResolver | An interface that defines the strategy for resolving view names from a scaffolded URI |
| TemplateFactory | An interface that defines methods for retrieving templates for specific scaffolded types |
| Classes | |
|---|---|
| DefaultGrailsResponseHandlerFactory | The default implementation of a ScaffoldResponseHandlerFactory that uses the uri extension to look-up an appropriate response handler. |
| DefaultGrailsScaffolder | The default implementation of scaffolding for Grails domain class and controller |
| DefaultGrailsScaffoldViewResolver | A view resolver that uses a GrailsApplication instance to resolve view names from uris |
| DefaultScaffoldCallback | No description provided. |
| DefaultScaffoldDomain | The default implementation of a Scaffolding application that uses Hibernate as the persistence mechanism |
| DefaultScaffoldRequestHandler | Default implementation of the ScaffoldRequestHandler interface |
| DomainClassPropertyComparator | Comparator that uses the domain class property constraints to establish order in sort methods and always places the id first |
| GrailsScaffoldDomain | Extends the default domain to delegate to Grails specific dynamic methods |
| ServletContextTemplateFactory | A template factory that looks up templates from the servlet context |
| ViewDelegatingScaffoldResponseHandler | A response handler that simple delegates control to a view resolved by the set ViewResolver |