-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-dev' into fix-github-action
- Loading branch information
Showing
112 changed files
with
8,296 additions
and
5,975 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
53 changes: 0 additions & 53 deletions
53
connector-api/src/main/java/it/pagopa/selfcare/dashboard/connector/api/PartyConnector.java
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
connector-api/src/main/java/it/pagopa/selfcare/dashboard/connector/api/UserApiConnector.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,17 @@ | ||
package it.pagopa.selfcare.dashboard.connector.api; | ||
|
||
import it.pagopa.selfcare.dashboard.connector.model.institution.InstitutionInfo; | ||
|
||
import java.util.List; | ||
|
||
|
||
public interface UserApiConnector { | ||
|
||
List<InstitutionInfo> getUserProducts(String userId); | ||
|
||
void suspendUserProduct(String userId, String institutionId, String productId); | ||
|
||
void activateUserProduct(String userId, String institutionId, String productId); | ||
|
||
void deleteUserProduct(String userId, String institutionId, String productId); | ||
} |
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
18 changes: 18 additions & 0 deletions
18
...java/it/pagopa/selfcare/dashboard/connector/model/institution/AdditionalInformations.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,18 @@ | ||
package it.pagopa.selfcare.dashboard.connector.model.institution; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class AdditionalInformations { | ||
|
||
private boolean belongRegulatedMarket; | ||
private String regulatedMarketNote; | ||
private boolean ipa; | ||
private String ipaCode; | ||
private boolean establishedByRegulatoryProvision; | ||
private String establishedByRegulatoryProvisionNote; | ||
private boolean agentOfPublicService; | ||
private String agentOfPublicServiceNote; | ||
private String otherNote; | ||
|
||
} |
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
6 changes: 4 additions & 2 deletions
6
...tor-api/src/main/java/it/pagopa/selfcare/dashboard/connector/model/support/UserField.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 |
---|---|---|
@@ -1,10 +1,12 @@ | ||
package it.pagopa.selfcare.dashboard.connector.model.support; | ||
|
||
import lombok.Data; | ||
import lombok.ToString; | ||
import lombok.*; | ||
|
||
@Data | ||
@ToString | ||
@NoArgsConstructor | ||
@AllArgsConstructor | ||
@Builder | ||
public class UserField { | ||
private String aux_data; | ||
} |
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
Oops, something went wrong.