org.codelibs.elasticsearch.idxproxy.action.CreateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-indexing-proxy Show documentation
Show all versions of elasticsearch-indexing-proxy Show documentation
This plugin provides a proxy for indexing.
package org.codelibs.elasticsearch.idxproxy.action;
import java.io.IOException;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.transport.TransportRequest;
public class CreateRequest extends TransportRequest {
public CreateRequest() {
}
@Override
public void readFrom(final StreamInput in) throws IOException {
super.readFrom(in);
}
@Override
public void writeTo(final StreamOutput out) throws IOException {
super.writeTo(out);
}
}