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

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

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

import com.aliyun.openservices.log.common.Consts;
import com.aliyun.openservices.log.common.RebuildIndex;
import com.aliyun.openservices.log.http.client.HttpMethod;

public class CreateRebuildIndexRequest extends JobRequest {

    private static final long serialVersionUID = -289518691743568346L;

    private final RebuildIndex rebuildIndex;

    public CreateRebuildIndexRequest(String project, RebuildIndex rebuildIndex) {
        super(project);
        this.rebuildIndex = rebuildIndex;
    }

    @Override
    public HttpMethod getMethod() {
        return HttpMethod.POST;
    }

    @Override
    public String getUri() {
        return Consts.JOB_URI;
    }

    @Override
    public Object getBody() {
        return rebuildIndex;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy