/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package kr.co.kihyun.beans.entity.ecross; import javax.jdo.annotations.IdentityType; import javax.jdo.annotations.Inheritance; import javax.jdo.annotations.InheritanceStrategy; import javax.jdo.annotations.PersistenceCapable; import kr.co.kihyun.beans.entity.LimitByWriteDateStrategy; /** * * @author bhs */ @PersistenceCapable(identityType = IdentityType.APPLICATION) @Inheritance(strategy = InheritanceStrategy.SUPERCLASS_TABLE) public class SenderLimitByWriteDateStrategy extends SenderAcceptanceLimitStrategy { public SenderLimitByWriteDateStrategy(LimitByWriteDateStrategy strategy) { super(strategy); } }