
com.hp.autonomy.searchcomponents.hod.parametricvalues.HodParametricRequest Maven / Gradle / Ivy
/*
* Copyright 2015 Hewlett-Packard Development Company, L.P.
* Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License.
*/
package com.hp.autonomy.searchcomponents.hod.parametricvalues;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder;
import com.hp.autonomy.hod.client.api.resource.ResourceIdentifier;
import com.hp.autonomy.searchcomponents.core.parametricvalues.ParametricRequest;
import com.hp.autonomy.searchcomponents.core.search.QueryRestrictions;
import lombok.AccessLevel;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.Accessors;
import java.util.Collections;
import java.util.Set;
@SuppressWarnings("FieldMayBeFinal")
@Data
@NoArgsConstructor
@AllArgsConstructor(access = AccessLevel.PRIVATE)
@JsonDeserialize(builder = HodParametricRequest.Builder.class)
public class HodParametricRequest implements ParametricRequest {
private static final long serialVersionUID = 2235023046934181036L;
public static final int MAX_VALUES_DEFAULT = 5;
private Set fieldNames = Collections.emptySet();
private Integer maxValues = MAX_VALUES_DEFAULT;
private QueryRestrictions queryRestrictions;
private boolean modified = true;
@JsonPOJOBuilder(withPrefix = "set")
@Setter
@Accessors(chain = true)
@NoArgsConstructor
public static class Builder {
private Set fieldNames = Collections.emptySet();
private Integer maxValues = MAX_VALUES_DEFAULT;
private QueryRestrictions queryRestrictions;
private boolean modified = true;
public Builder(final ParametricRequest hodParametricRequest) {
fieldNames = hodParametricRequest.getFieldNames();
maxValues = hodParametricRequest.getMaxValues();
queryRestrictions = hodParametricRequest.getQueryRestrictions();
modified = hodParametricRequest.isModified();
}
public HodParametricRequest build() {
return new HodParametricRequest(fieldNames, maxValues, queryRestrictions, modified);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy