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

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

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.request;

import com.aliyun.openservices.log.common.Index;

public class CreateIndexRequest extends Request {

	/**
	 * 
	 */
	private static final long serialVersionUID = 6178612655080198635L;
	private String logStore;
	private Index index;
	
	public CreateIndexRequest(String project, String logStore, Index index) {
		super(project);
		this.logStore = logStore;
		SetIndex(index);
	}

	/**
	 * @return the logStore
	 */
	public String GetLogStore() {
		return logStore;
	}

	/**
	 * @return the index
	 */
	public Index GetIndex() {
		return index;
	}

	/**
	 * @param logStore the logStore to set
	 */
	public void SetLogStore(String logStore) {
		this.logStore = logStore;
	}

	/**
	 * @param index the index to set
	 */
	public void SetIndex(Index index) {
		this.index = new Index(index);
	}

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy