blob: 5fa0abd628d2a4ebf0e1054ff0628d280c6457b7 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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.apache.pirk.response.wideskies;
import java.io.Serializable;
import java.math.BigInteger;
import java.util.TreeMap;
import com.google.gson.annotations.Expose;
import org.apache.pirk.query.wideskies.QueryInfo;
import org.apache.pirk.serialization.Storable;
/**
* Class to hold the encrypted response elements for the PIR query
* <p>
* Serialized and returned to the querier for decryption
*/
public class Response implements Serializable, Storable
{
private static final long serialVersionUID = 1L;
public static final long responseSerialVersionUID = 1L;
@Expose
public final long responseVersion = responseSerialVersionUID;
@Expose
private QueryInfo queryInfo = null; // holds all query info
@Expose
private TreeMap<Integer,BigInteger> responseElements = null; // encrypted response columns, colNum -> column
public Response(QueryInfo queryInfoInput)
{
queryInfo = queryInfoInput;
responseElements = new TreeMap<>();
}
public TreeMap<Integer,BigInteger> getResponseElements()
{
return responseElements;
}
public void setResponseElements(TreeMap<Integer,BigInteger> elements)
{
responseElements = elements;
}
public QueryInfo getQueryInfo()
{
return queryInfo;
}
public void addElement(int position, BigInteger element)
{
responseElements.put(position, element);
}
}