package foundation.capacity; import foundation.dao.preload.Bucket; public class ActorTargetBucket extends Bucket { private static ActorTargetBucket instance; public static ActorTargetBucket getInstance() { return instance; } public static ActorTargetBucket newInstance() { return new ActorTargetBucket(); } @Override public void activate() { instance = this; } }