Skip to content

Commit

Permalink
Renamed the packages and parameter class
Browse files Browse the repository at this point in the history
  • Loading branch information
nabarunnag committed Dec 2, 2018
1 parent 5b23f49 commit 268d358
Show file tree
Hide file tree
Showing 19 changed files with 28 additions and 28 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.benchmark.configurations;
package org.apache.geode.benchmark.parameters;

public class BenchmarkParameters {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.benchmark.configurations;
package org.apache.geode.benchmark.parameters;

public class JVMProperties {
public class JVMParameters {

public static final String[] JVM_ARGS = new String[] {
"-XX:CMSInitiatingOccupancyFraction=60",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tasks;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.CLIENT_CACHE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.CLIENT_CACHE;

import org.apache.geode.cache.client.ClientCache;
import org.apache.geode.cache.client.ClientRegionShortcut;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
package org.apache.geode.benchmark.tasks;


import static org.apache.geode.benchmark.configurations.BenchmarkParameters.SERVER_CACHE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.SERVER_CACHE;

import org.apache.geode.cache.Cache;
import org.apache.geode.cache.RegionShortcut;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tasks;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.SERVER_CACHE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.SERVER_CACHE;

import org.apache.geode.cache.Cache;
import org.apache.geode.cache.RegionShortcut;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
*/
package org.apache.geode.benchmark.tasks;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.KEY_RANGE;
import static org.apache.geode.benchmark.configurations.BenchmarkParameters.SERVER_CACHE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.KEY_RANGE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.SERVER_CACHE;

import java.time.Duration;
import java.time.Instant;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package org.apache.geode.benchmark.tasks;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.CLIENT_CACHE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.CLIENT_CACHE;

import java.io.File;
import java.net.InetAddress;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package org.apache.geode.benchmark.tasks;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.SERVER_CACHE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.SERVER_CACHE;

import java.io.File;
import java.net.InetAddress;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.BENCHMARK_DURATION;
import static org.apache.geode.benchmark.configurations.BenchmarkParameters.KEY_RANGE;
import static org.apache.geode.benchmark.configurations.BenchmarkParameters.LOCATOR_PORT;
import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.CLIENT;
import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.LOCATOR;
import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.SERVER;
import static org.apache.geode.benchmark.configurations.BenchmarkParameters.WARM_UP_TIME;
import static org.apache.geode.benchmark.configurations.JVMProperties.JVM_ARGS;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.BENCHMARK_DURATION;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.KEY_RANGE;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.LOCATOR_PORT;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.CLIENT;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.LOCATOR;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.SERVER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.WARM_UP_TIME;
import static org.apache.geode.benchmark.parameters.JVMParameters.JVM_ARGS;

import org.junit.Test;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.CLIENT;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.CLIENT;

import org.apache.geode.benchmark.tasks.GetTask;
import org.apache.geode.perftest.TestConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.SERVER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.SERVER;

import org.apache.geode.benchmark.tasks.CreatePartitionedRegion;
import org.apache.geode.perftest.TestConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.SERVER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.SERVER;

import org.apache.geode.benchmark.tasks.CreatePartitionedRegion;
import org.apache.geode.perftest.TestConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.CLIENT;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.CLIENT;

import org.apache.geode.benchmark.tasks.PutTask;
import org.apache.geode.perftest.TestConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.SERVER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.SERVER;

import org.apache.geode.benchmark.tasks.CreateReplicatedRegion;
import org.apache.geode.perftest.TestConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.Roles.SERVER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.Roles.SERVER;

import org.apache.geode.benchmark.tasks.CreateReplicatedRegion;
import org.apache.geode.perftest.TestConfig;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;

import org.junit.Rule;
import org.junit.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;

import org.junit.Rule;
import org.junit.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;

import org.junit.Rule;
import org.junit.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
package org.apache.geode.benchmark.tests;

import static org.apache.geode.benchmark.configurations.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;
import static org.apache.geode.benchmark.parameters.BenchmarkParameters.KEY_RANGE_FOR_MINIMAL_RUNNER;

import org.junit.Rule;
import org.junit.Test;
Expand Down

0 comments on commit 268d358

Please sign in to comment.