try to fix platform version field

This commit is contained in:
Roberto Cirillo 2023-02-16 12:54:45 +01:00
parent d53a917c45
commit aba203b651
2 changed files with 1 additions and 4 deletions

View File

@ -18,9 +18,6 @@ public class ServiceEndpointProfile {
private String platform="d4science";
@Getter
@Setter
private String platformVersion="1.0.0";
@Getter
@Setter
private String accessPointName;
@Getter
@Setter (AccessLevel.PROTECTED)

View File

@ -92,7 +92,7 @@ public class ServiceEndpointResource {
if (Objects.nonNull(resourceProfile) && isRoleEnabled()){
ServiceEndpoint newResource= new ServiceEndpoint();
ServiceEndpoint.Profile profile=newResource.newProfile().category(resourceProfile.getCategory()).name(resourceProfile.getName());
ServiceEndpoint. platform=profile.newPlatform().name(resourceProfile.getPlatform()).version(resourceProfile.getPlatformVersion());
ServiceEndpoint. platform=profile.newPlatform().name(resourceProfile.getPlatform()).version(1).minorVersion(0).platformVersion(0).revisionVersion(0).buildVersion(0);
ServiceEndpoint.AccessPoint ap=new ServiceEndpoint.AccessPoint();
ap.name(resourceProfile.getAccessPointName());
ap.address(resourceProfile.getAccessPointAddress());