All Downloads are FREE. Search and download functionalities are using the official Maven repository.

hbm.property.hbm.ftl Maven / Gradle / Ivy

There is a newer version: 5.6.15.Final
Show newest version
    
	    type="${property.value.typeName}"
        
<#if !property.updateable>
        update="false"

<#if !property.insertable>
        insert="false"

<#if !property.basicPropertyAccessor>
        access="${property.propertyAccessorName}"

<#if property.lazy>
        lazy="true"

<#if !property.optimisticLocked>
        optimistic-lock="false"

<#if property.value.hasFormula()>
<#assign formula = c2h.getFormulaForProperty(property)>
<#if formula?has_content>
        formula="${formula.text}"


    >
  <#assign metaattributable=property>
  <#include "meta.hbm.ftl">
  <#foreach column in property.columnIterator>
     <#if !column.isFormula()>
        <#include "column.hbm.ftl">
     
  	
  <#if property.value.typeParameters?exists>
  
  		<#foreach entry in property.value.typeParameters.entrySet()>
              		${entry.value}
          	  
  
  
  





© 2015 - 2024 Weber Informatics LLC | Privacy Policy