-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add-verification-date-to-email-endpoint
- Loading branch information
Showing
13 changed files
with
294 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
orcid-utils/src/main/java/org/orcid/utils/panoply/PanoplyDeletedItem.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
package org.orcid.utils.panoply; | ||
|
||
public class PanoplyDeletedItem { | ||
private Long id; | ||
private String dwTable; | ||
private Long itemId; | ||
private String clientSourceId; | ||
private String orcid; | ||
|
||
public final String DW_ORG_AFFILIATION_RELATION = "dw_org_affiliation_relation"; | ||
public final String DW_WORK = "dw_work"; | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
|
||
public String getDwTable() { | ||
return dwTable; | ||
} | ||
|
||
public void setDwTable(String dwTable) { | ||
this.dwTable = dwTable; | ||
} | ||
|
||
public Long getItemId() { | ||
return itemId; | ||
} | ||
|
||
public void setItemId(Long itemId) { | ||
this.itemId = itemId; | ||
} | ||
|
||
public String getClientSourceId() { | ||
return clientSourceId; | ||
} | ||
|
||
public void setClientSourceId(String clientSourceId) { | ||
this.clientSourceId = clientSourceId; | ||
} | ||
|
||
public String getOrcid() { | ||
return orcid; | ||
} | ||
|
||
public void setOrcid(String orcid) { | ||
this.orcid = orcid; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "PanoplyDeletedItem{" + "id=" + id + ", dwTable='" + dwTable + '\'' + ", itemId='" + itemId + '\'' + ", clientSourceId='" + clientSourceId + '\'' | ||
+ ", orcid='" + orcid + '\'' + '}'; | ||
} | ||
|
||
} |
Oops, something went wrong.