1 29 30 package com.caucho.amber.cfg; 31 32 import javax.persistence.InheritanceType; 33 34 35 38 public class InheritanceConfig { 39 40 private InheritanceType _strategy; 42 43 public InheritanceType getStrategy() 44 { 45 return _strategy; 46 } 47 48 public void setStrategy(String strategy) 49 { 50 _strategy = InheritanceType.valueOf(strategy); 51 } 52 } 53 | Popular Tags |