File tree 1 file changed +0
-17
lines changed
x-pack/protocol/src/main/java/org/elasticsearch/protocol/xpack/license
1 file changed +0
-17
lines changed Original file line number Diff line number Diff line change 20
20
21
21
import org .elasticsearch .action .ActionRequestValidationException ;
22
22
import org .elasticsearch .action .support .master .AcknowledgedRequest ;
23
- import org .elasticsearch .common .io .stream .StreamInput ;
24
- import org .elasticsearch .common .io .stream .StreamOutput ;
25
-
26
- import java .io .IOException ;
27
23
28
24
29
25
public class DeleteLicenseRequest extends AcknowledgedRequest <DeleteLicenseRequest > {
30
26
31
- public DeleteLicenseRequest () {
32
- }
33
-
34
27
@ Override
35
28
public ActionRequestValidationException validate () {
36
29
return null ;
37
30
}
38
-
39
- @ Override
40
- public void readFrom (StreamInput in ) throws IOException {
41
- super .readFrom (in );
42
- }
43
-
44
- @ Override
45
- public void writeTo (StreamOutput out ) throws IOException {
46
- super .writeTo (out );
47
- }
48
31
}
You can’t perform that action at this time.
0 commit comments