blob: 86d6247720993b08ab8a67e7030e79e1fda85f05 [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2010-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* one or more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
package com.gemstone.gemfire.internal.cache.tier.sockets;
import com.gemstone.gemfire.cache.*;
/**
* subclass of InterestListEndpointDUnitTest to exercise partitioned regions
*
* @author Bruce Schuchardt
*/
public class InterestListEndpointPRDUnitTest extends InterestListEndpointDUnitTest {
public InterestListEndpointPRDUnitTest(String name) {
super(name);
}
public static void createImpl() {
impl = new InterestListEndpointPRDUnitTest("temp");
}
protected RegionAttributes createServerCacheAttributes()
{
AttributesFactory factory = new AttributesFactory();
factory.setDataPolicy(DataPolicy.PARTITION);
factory.setPartitionAttributes((new PartitionAttributesFactory()).create());
return factory.create();
}
}