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

com.aliyun.openservices.log.request.CreateSavedSearchRequest Maven / Gradle / Ivy

package com.aliyun.openservices.log.request;

import com.aliyun.openservices.log.common.SavedSearch;
import com.aliyun.openservices.log.exception.LogException;

public class CreateSavedSearchRequest extends Request {

	private static final long serialVersionUID = -2075352399745773362L;
	protected SavedSearch savedSearch = new SavedSearch();

	public CreateSavedSearchRequest(String project, SavedSearch savedSearch) {
		super(project);
		this.savedSearch = savedSearch;
	}
	
	public SavedSearch getSavedSearch() {
		return this.savedSearch;
	}

	public void setSavedSearch(SavedSearch savedSearch) throws LogException {
		this.savedSearch = new SavedSearch(savedSearch);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy