Revision 9688
Added by ben leinfelder over 8 years ago
src/edu/ucsb/nceas/metacat/dataone/D1NodeService.java | ||
---|---|---|
1372 | 1372 |
if (groupList != null) { |
1373 | 1373 |
groupnames = new String[groupList.size()]; |
1374 | 1374 |
for (int i = 0; i < groupList.size(); i++ ) { |
1375 |
groupnames[i] = groupList.get(i).getGroupName();
|
|
1375 |
groupnames[i] = groupList.get(i).getSubject().getValue();
|
|
1376 | 1376 |
} |
1377 | 1377 |
} |
1378 | 1378 |
} |
... | ... | |
1423 | 1423 |
if (groupList != null) { |
1424 | 1424 |
groupnames = new String[groupList.size()]; |
1425 | 1425 |
for (int i = 0; i < groupList.size(); i++ ) { |
1426 |
groupnames[i] = groupList.get(i).getGroupName();
|
|
1426 |
groupnames[i] = groupList.get(i).getSubject().getValue();
|
|
1427 | 1427 |
} |
1428 | 1428 |
} |
1429 | 1429 |
} |
Also available in: Unified diff
merge from 2.6 branch: use group subject (not name) when translating Session.subjectInfo into group list for Metacat's DocumentImpl. https://github.nceas.ucsb.edu/KNB/arctic-data/issues/163