Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
uphrh-Registration-Core
Commits
2c436b9b
Commit
2c436b9b
authored
3 years ago
by
Sai Sathvik
Browse files
Options
Download
Patches
Plain Diff
propertyId + property = propertyURI
parent
faf503e8
main
attestation
consent-api
create_attach_entity_role_to_user
doc
immunization
internal-entity
json-template-type-conv
keycloak-updates
open-saber-rc-2
pr-external-context
pr-template-url
spring-bean-issues
sunbirdrc.dev
test-fix
uat-deploy
upsmfac-main
v0.0.12
v0.0.13
v0.0.12
v0.0.11
v0.0.10
v0.0.9
v0.0.8
v0.0.7
v0.0.6
v0.0.5
v0.0.4
v0.0.3
v0.0.2
v0.0.1
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/claim/src/main/java/io/opensaber/claim/entity/Claim.java
+1
-3
.../claim/src/main/java/io/opensaber/claim/entity/Claim.java
java/pojos/src/main/java/io/opensaber/pojos/dto/ClaimDTO.java
+5
-14
.../pojos/src/main/java/io/opensaber/pojos/dto/ClaimDTO.java
with
6 additions
and
17 deletions
+6
-17
java/claim/src/main/java/io/opensaber/claim/entity/Claim.java
+
1
−
3
View file @
2c436b9b
...
...
@@ -154,11 +154,9 @@ public class Claim {
public
static
Claim
fromDTO
(
ClaimDTO
claimDTO
)
{
Claim
claim
=
new
Claim
();
claim
.
setPropertyId
(
claimDTO
.
getPropertyId
());
claim
.
setProperty
(
claimDTO
.
getProperty
());
claim
.
setProperty
(
claimDTO
.
getPropertyURI
());
claim
.
setEntity
(
claimDTO
.
getEntity
());
claim
.
setEntityId
(
claimDTO
.
getEntityId
());
claim
.
setPropertyId
(
claimDTO
.
getPropertyId
());
claim
.
setConditions
(
claimDTO
.
getConditions
());
claim
.
setAttestorEntity
(
claimDTO
.
getAttestorEntity
());
claim
.
setStatus
(
ClaimStatus
.
OPEN
.
name
());
...
...
This diff is collapsed.
Click to expand it.
java/pojos/src/main/java/io/opensaber/pojos/dto/ClaimDTO.java
+
5
−
14
View file @
2c436b9b
...
...
@@ -4,8 +4,7 @@ package io.opensaber.pojos.dto;
public
class
ClaimDTO
{
private
String
entity
;
private
String
entityId
;
private
String
property
;
private
String
propertyId
;
private
String
propertyURI
;
private
String
notes
;
private
String
status
;
private
String
conditions
;
...
...
@@ -26,20 +25,12 @@ public class ClaimDTO {
this
.
entityId
=
entityId
;
}
public
String
getProperty
()
{
return
property
;
public
String
getProperty
URI
()
{
return
property
URI
;
}
public
void
setProperty
(
String
property
)
{
this
.
property
=
property
;
}
public
String
getPropertyId
()
{
return
propertyId
;
}
public
void
setPropertyId
(
String
propertyId
)
{
this
.
propertyId
=
propertyId
;
public
void
setPropertyURI
(
String
propertyURI
)
{
this
.
propertyURI
=
propertyURI
;
}
public
String
getNotes
()
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets