blob: 06bd4783fbe9728eacaebb0acd64ca9497318aa5 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jclouds.dimensiondata.cloudcontrol.options;
import org.jclouds.http.options.BaseHttpRequestOptions;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
public class PaginationOptions extends BaseHttpRequestOptions {
public PaginationOptions pageNumber(int pageNumber) {
this.queryParameters.put("pageNumber", Integer.toString(pageNumber));
return this;
}
public PaginationOptions orderBy(String orderBy) {
this.queryParameters.put("orderBy", checkNotNull(orderBy, "orderBy"));
return this;
}
public PaginationOptions pageSize(int pageSize) {
checkState(pageSize >= 0, "pageSize must be >= 0");
checkState(pageSize <= 10000, "limit must be <= 10000");
queryParameters.put("pageSize", Integer.toString(pageSize));
return this;
}
public static class Builder {
/**
* @see PaginationOptions#pageNumber(int)
*/
public static PaginationOptions pageNumber(Integer pageNumber) {
PaginationOptions options = new PaginationOptions();
return options.pageNumber(pageNumber);
}
/**
* @see PaginationOptions#pageSize(int)
*/
public static PaginationOptions pageSize(int pageSize) {
PaginationOptions options = new PaginationOptions();
return options.pageSize(pageSize);
}
/**
* @see PaginationOptions#orderBy(String)
*/
public static PaginationOptions orderBy(String orderBy) {
PaginationOptions options = new PaginationOptions();
return options.orderBy(orderBy);
}
}
}