001 package org.tynamo.hibernate;
002
003
004 public class TynamoHibernateSymbols
005 {
006
007 /**
008 * Columns longer than this will have their large property set to true.
009 */
010 public static final String LARGE_COLUMN_LENGTH = "trails.hibernate.large-column-length";
011
012 /**
013 * When working with objects from multiple sources hibernate decorator complains about "metadata not found",
014 * this symbol configured to true tells HibernateDescriptorDecorator to ignore these errors.
015 */
016 public static final String IGNORE_NON_HIBERNATE_TYPES = "trails.hibernate.ignore-non-hibernate-types";
017
018 }