Project

General

Profile

« Previous | Next » 

Revision 39742

first implementation of mdstore-ui

View differences:

MDStoreInfo.java
1 1
package eu.dnetlib.functionality.modular.ui.mdstore.model;
2 2

  
3
import java.util.List;
3 4
import java.util.Map;
4 5

  
5 6
/**
......
41 42

  
42 43
    private Map<String, String> datasourcesInvolved;
43 44

  
45
    private List<String> indexFields;
46

  
44 47
    /**
45 48
     * The size.
46 49
     */
......
199 202
    public void setDatasourcesInvolved(Map<String, String> datasourcesInvolved) {
200 203
        this.datasourcesInvolved = datasourcesInvolved;
201 204
    }
205

  
206
    public List<String> getIndexFields() {
207
        return indexFields;
208
    }
209

  
210
    public void setIndexFields(List<String> indexFields) {
211
        this.indexFields = indexFields;
212
    }
202 213
}

Also available in: Unified diff