blob: 9014f87b279263f7f1dd110377b82b539f949f1e [file] [log] [blame]
/********************************************************************************
* Copyright (c) 2015-2018 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*
********************************************************************************/
package org.eclipse.mdm.query.entity;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
/**
*
* @author Matthias Koller, Peak Solution GmbH
*
*/
@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class SuggestionResponse {
/** transferable data content */
private List<String> data;
/**
* Constructor
*
* @param searchDefinitions list of {@link Suggestion}s to transfer
*/
public SuggestionResponse(List<String> suggestions) {
this.data = new ArrayList<>(suggestions);
}
public SuggestionResponse() {
this.data = new ArrayList<>();
}
public List<String> getData() {
return Collections.unmodifiableList(this.data);
}
}