Make Aggregation/AggregationDetails class serializable
This commit is contained in:
parent
44a3e2b0ec
commit
2b8c5e5147
|
@ -1,8 +1,10 @@
|
|||
package eu.dnetlib.repo.manager.shared;
|
||||
|
||||
import com.google.gwt.user.client.rpc.IsSerializable;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
public class AggregationDetails {
|
||||
public class AggregationDetails implements IsSerializable{
|
||||
|
||||
|
||||
private String aggregationStage;
|
||||
|
|
|
@ -1,9 +1,11 @@
|
|||
package eu.dnetlib.repo.manager.shared;
|
||||
|
||||
import com.google.gwt.user.client.rpc.IsSerializable;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class Aggregations {
|
||||
public class Aggregations implements IsSerializable{
|
||||
|
||||
private List<AggregationDetails> aggregationHistory = new ArrayList<>();
|
||||
private AggregationDetails lastCollection;
|
||||
|
|
Loading…
Reference in New Issue