SearchDocumentResponse.java
/*
* Copyright 2010-2019 James Pether Sörling
*
* Licensed 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.
*
* $Id$
* $HeadURL$
*/
package com.hack23.cia.service.api.action.user;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import com.hack23.cia.model.external.riksdagen.documentcontent.impl.DocumentContentData;
import com.hack23.cia.model.external.riksdagen.dokumentlista.impl.DocumentElement;
import com.hack23.cia.model.external.riksdagen.dokumentstatus.impl.DocumentStatusContainer;
import com.hack23.cia.service.api.action.common.AbstractResponse;
/**
* The Class SearchDocumentResponse.
*/
public final class SearchDocumentResponse extends AbstractResponse {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/** The result element. */
private List<DocumentElement> resultElement = new ArrayList<>();
/** The status map. */
private Map<String, DocumentStatusContainer> statusMap;
/** The data map. */
private Map<String, DocumentContentData> dataMap;
/**
* Instantiates a new search document response.
*
* @param result
* the result
*/
public SearchDocumentResponse(final ServiceResult result) {
super(result);
}
/**
* Gets the result element.
*
* @return the result element
*/
public List<DocumentElement> getResultElement() {
return resultElement.stream().collect(Collectors.toList());
}
/**
* Sets the result element.
*
* @param resultElement
* the new result element
*/
public void setResultElement(final List<DocumentElement> resultElement) {
if (resultElement != null) {
this.resultElement = resultElement.stream().collect(Collectors.toList());
}
}
/**
* Gets the status map.
*
* @return the status map
*/
public Map<String, DocumentStatusContainer> getStatusMap() {
return statusMap;
}
/**
* Sets the status map.
*
* @param statusMap
* the new status map
*/
public void setStatusMap(final Map<String, DocumentStatusContainer> statusMap) {
this.statusMap = statusMap;
}
/**
* Gets the data map.
*
* @return the data map
*/
public Map<String, DocumentContentData> getDataMap() {
return dataMap;
}
/**
* Sets the data map.
*
* @param dataMap
* the new data map
*/
public void setDataMap(final Map<String, DocumentContentData> dataMap) {
this.dataMap = dataMap;
}
}