org.hibernate.annotations.ColumnDefault Java Examples

The following examples show how to use org.hibernate.annotations.ColumnDefault. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Ejb3Column.java    From lams with GNU General Public License v2.0 5 votes vote down vote up
private static void applyColumnDefault(Ejb3Column column, PropertyData inferredData) {
	final XProperty xProperty = inferredData.getProperty();
	if ( xProperty != null ) {
		ColumnDefault columnDefaultAnn = xProperty.getAnnotation( ColumnDefault.class );
		if ( columnDefaultAnn != null ) {
			column.setDefaultValue( columnDefaultAnn.value() );
		}
	}
	else {
		LOG.trace(
				"Could not perform @ColumnDefault lookup as 'PropertyData' did not give access to XProperty"
		);
	}
}