org.elasticsearch.client.ml.PostCalendarEventResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch-rest-high-level-client Show documentation
Show all versions of elasticsearch-rest-high-level-client Show documentation
Elasticsearch subproject :client:rest-high-level
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.client.ml;
import org.elasticsearch.client.ml.calendars.ScheduledEvent;
import org.elasticsearch.xcontent.ConstructingObjectParser;
import org.elasticsearch.xcontent.ParseField;
import org.elasticsearch.xcontent.ToXContentObject;
import org.elasticsearch.xcontent.XContentBuilder;
import org.elasticsearch.xcontent.XContentParser;
import java.io.IOException;
import java.util.List;
import java.util.Objects;
/**
* Response to adding ScheduledEvent(s) to a Machine Learning calendar
*/
public class PostCalendarEventResponse implements ToXContentObject {
private final List scheduledEvents;
public static final ParseField EVENTS = new ParseField("events");
@SuppressWarnings("unchecked")
public static final ConstructingObjectParser PARSER = new ConstructingObjectParser<>(
"post_calendar_event_response",
true,
a -> new PostCalendarEventResponse((List) a[0])
);
static {
PARSER.declareObjectArray(ConstructingObjectParser.constructorArg(), (p, c) -> ScheduledEvent.PARSER.apply(p, null), EVENTS);
}
public static PostCalendarEventResponse fromXContent(XContentParser parser) throws IOException {
return PARSER.parse(parser, null);
}
/**
* Create a new PostCalendarEventResponse containing the scheduled Events
*
* @param scheduledEvents The list of {@link ScheduledEvent} objects
*/
public PostCalendarEventResponse(List scheduledEvents) {
this.scheduledEvents = scheduledEvents;
}
public List getScheduledEvents() {
return scheduledEvents;
}
@Override
public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
builder.startObject();
builder.field(EVENTS.getPreferredName(), scheduledEvents);
builder.endObject();
return builder;
}
@Override
public int hashCode() {
return Objects.hash(scheduledEvents);
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
PostCalendarEventResponse other = (PostCalendarEventResponse) obj;
return Objects.equals(scheduledEvents, other.scheduledEvents);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy