Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public class AffiliationSummary {
public String startDate;
public String endDate;
public String role;
public String title;
public String type;
public boolean validatedOrSelfAsserted;

Expand Down Expand Up @@ -56,14 +55,6 @@ public void setRole(String role) {
this.role = role;
}

public String getTitle() {
return title;
}

public void setTitle(String title) {
this.title = title;
}

public String getType() {
return type;
}
Expand Down Expand Up @@ -114,14 +105,6 @@ public static AffiliationSummary valueOf(org.orcid.jaxb.model.v3.release.record.
form.setRole(as.getRoleTitle());
}

if (!PojoUtil.isEmpty(as.getDepartmentName())) {
form.setOrganizationName(as.getDepartmentName());
}

if (!PojoUtil.isEmpty(as.getRoleTitle())) {
form.setRole(as.getRoleTitle());
}

form.setType(type);

if (as.getSource() != null) {
Expand Down