All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huawei.openstack4j.openstack.database.options.ErrorLogListOptions Maven / Gradle / Ivy

 /*******************************************************************************
 * 	Copyright 2018 Huawei Technologies Co.,Ltd.                                         
 * 	                                                                                 
 * 	Licensed 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 com.huawei.openstack4j.openstack.database.options;

import java.util.Date;
import java.util.Map;

import com.google.common.base.Preconditions;
import com.google.common.collect.Maps;

import com.huawei.openstack4j.openstack.common.DateTimeUtils;

/**
 *
 * @author QianBiao.NG
 * @date   2017-07-13 10:21:04
 */
public class ErrorLogListOptions {

	/**
	 * database instance id
	 */
	String instanceId;
	private Map queryParams = Maps.newHashMap();

	// startDate
	// endDate
	// curPage
	// perPage

	/**
	 * set database instance id filter option
	 * 
	 * @param instanceId database instance id
	 * @return
	 */
	public ErrorLogListOptions instanceId(String instanceId) {
		this.instanceId = instanceId;
		return this;
	}

	/**
	 * set log start date filter option
	 * 
	 * @param startDate log start date
	 * @return {@link ErrorLogListOptions} instance
	 */
	public ErrorLogListOptions startDate(Date startDate) {
		Preconditions.checkArgument(startDate != null, "parameter `startDate` should not be null");
		String format = DateTimeUtils.format(startDate, DateTimeUtils.FORMAT_YMD_HM);
		return add("startDate", format);
	}

	/**
	 * set log end date filter option
	 * 
	 * @param endDate log end date
	 * @return {@link ErrorLogListOptions} instance
	 */
	public ErrorLogListOptions endDate(Date endDate) {
		Preconditions.checkArgument(endDate != null, "parameter `endDate` should not be null");
		String format = DateTimeUtils.format(endDate, DateTimeUtils.FORMAT_YMD_HM);
		return add("endDate", format);
	}

	/**
	 * the pagination page number, 1 by default
	 * 
	 * @param page the pagination page number
	 * @return {@link ErrorLogListOptions} instance
	 */
	public ErrorLogListOptions curPage(Integer page) {
		return add("curPage", page);
	}

	/**
	 * the pagination page size, the value range is 1~100, 10 by default
	 * 
	 * @param page the pagination page size
	 * @return {@link ErrorLogListOptions} instance
	 */
	public ErrorLogListOptions perPage(Integer pageSize) {
		return add("perPage", pageSize);
	}

	private ErrorLogListOptions add(String param, Object value) {
		if (value != null)
			this.queryParams.put(param, value);
		return this;
	}

	public Map getOptions() {
		return queryParams;
	}
	
	public String getInstanceId() {
		return instanceId;
	}

	public static ErrorLogListOptions create() {
		return new ErrorLogListOptions();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy