/* (non-Javadoc)
  * @see org.codehaus.groovy.grails.domain.GrailsDomainClassProperty#isRequired()
  */
 public boolean isOptional() {
   ConstrainedProperty constrainedProperty =
       (ConstrainedProperty) domainClass.getConstrainedProperties().get(name);
   return (constrainedProperty != null) && constrainedProperty.isNullable();
 }