-
Notifications
You must be signed in to change notification settings - Fork 25k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HLRC: Add activate watch action (#33988)
* HLRC: Add activate watcher action Adds activate watch action to the high level rest client. Relates #29827
- Loading branch information
Showing
10 changed files
with
442 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
.../rest-high-level/src/main/java/org/elasticsearch/client/watcher/ActivateWatchRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.elasticsearch.client.watcher; | ||
|
||
import org.elasticsearch.client.Validatable; | ||
import org.elasticsearch.protocol.xpack.watcher.PutWatchRequest; | ||
|
||
import java.util.Objects; | ||
|
||
/** | ||
* A request to explicitly activate a watch. | ||
*/ | ||
public final class ActivateWatchRequest implements Validatable { | ||
|
||
private final String watchId; | ||
|
||
public ActivateWatchRequest(String watchId) { | ||
this.watchId = Objects.requireNonNull(watchId, "Watch identifier is required"); | ||
if (PutWatchRequest.isValidId(this.watchId) == false) { | ||
throw new IllegalArgumentException("Watch identifier contains whitespace"); | ||
} | ||
} | ||
|
||
/** | ||
* @return The ID of the watch to be activated. | ||
*/ | ||
public String getWatchId() { | ||
return watchId; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) return true; | ||
if (o == null || getClass() != o.getClass()) return false; | ||
ActivateWatchRequest that = (ActivateWatchRequest) o; | ||
return Objects.equals(watchId, that.watchId); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
int result = Objects.hash(watchId); | ||
return result; | ||
} | ||
} |
71 changes: 71 additions & 0 deletions
71
...rest-high-level/src/main/java/org/elasticsearch/client/watcher/ActivateWatchResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch licenses this file to you under | ||
* the Apache License, Version 2.0 (the "License"); you may | ||
* not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.elasticsearch.client.watcher; | ||
|
||
import org.elasticsearch.common.ParseField; | ||
import org.elasticsearch.common.xcontent.ConstructingObjectParser; | ||
import org.elasticsearch.common.xcontent.XContentParser; | ||
|
||
import java.io.IOException; | ||
import java.util.Objects; | ||
|
||
/** | ||
* Response from an 'activate watch' request. | ||
*/ | ||
public final class ActivateWatchResponse { | ||
|
||
private static final ParseField STATUS_FIELD = new ParseField("status"); | ||
private static ConstructingObjectParser<ActivateWatchResponse, Void> PARSER = | ||
new ConstructingObjectParser<>("activate_watch_response", true, | ||
a -> new ActivateWatchResponse((WatchStatus) a[0])); | ||
|
||
static { | ||
PARSER.declareObject(ConstructingObjectParser.constructorArg(), | ||
(parser, context) -> WatchStatus.parse(parser), | ||
STATUS_FIELD); | ||
} | ||
|
||
private final WatchStatus status; | ||
|
||
public ActivateWatchResponse(WatchStatus status) { | ||
this.status = status; | ||
} | ||
|
||
public WatchStatus getStatus() { | ||
return status; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) return true; | ||
if (o == null || getClass() != o.getClass()) return false; | ||
ActivateWatchResponse that = (ActivateWatchResponse) o; | ||
return Objects.equals(status, that.status); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(status); | ||
} | ||
|
||
public static ActivateWatchResponse fromXContent(XContentParser parser) throws IOException { | ||
return PARSER.parse(parser, null); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.