You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
746 B
26 lines
746 B
/* |
|
* 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.AcceptanceLimitStrategy; |
|
|
|
/** |
|
* |
|
* @author bhs |
|
*/ |
|
@PersistenceCapable(identityType = IdentityType.APPLICATION) |
|
@Inheritance(strategy = InheritanceStrategy.NEW_TABLE) |
|
public abstract class ReceiverAcceptanceLimitStrategy extends ECrossAcceptanceLimitStrategy implements IReceiver { |
|
|
|
public ReceiverAcceptanceLimitStrategy(AcceptanceLimitStrategy strategy) { |
|
super(strategy); |
|
} |
|
|
|
}
|
|
|