1 18 package org.objectweb.speedo.mapper.api; 19 20 import org.objectweb.fractal.api.control.AttributeController; 21 22 import java.util.Properties ; 23 24 31 public interface JormFactoryAttributes extends AttributeController { 32 33 37 byte DO_NOTHING = 0; 38 39 42 byte CREATE_IF_REQUIRED = 1; 43 44 47 byte FORCE_CREATE = 2; 48 49 53 byte DELETE_DATA = 3; 54 55 59 byte getMappingStructureRule(); 60 61 66 void setMappingStructureRule(byte rule); 67 68 74 boolean getMappingOnClassRegistration(); 75 76 83 void setMappingOnClassRegistration(boolean val); 84 85 89 void setSpeedoProperties(Properties p); 90 91 95 Properties getSpeedoProperties(); 96 } 97 | Popular Tags |