generated from pagopa/pagopa-functions-template
-
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 'refs/heads/main' into feature/SELC-5349
- Loading branch information
Showing
9 changed files
with
174 additions
and
79 deletions.
There are no files selected for viewing
51 changes: 51 additions & 0 deletions
51
...ing-functions/src/main/java/it/pagopa/selfcare/onboarding/dto/NotificationsResources.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,51 @@ | ||
package it.pagopa.selfcare.onboarding.dto; | ||
|
||
import it.pagopa.selfcare.onboarding.entity.Onboarding; | ||
import it.pagopa.selfcare.onboarding.entity.Token; | ||
import org.openapi.quarkus.core_json.model.InstitutionResponse; | ||
|
||
public class NotificationsResources { | ||
private Onboarding onboarding; | ||
private InstitutionResponse institution; | ||
private Token token; | ||
private QueueEvent queueEvent; | ||
|
||
public NotificationsResources(Onboarding onboarding, InstitutionResponse institution, Token token, QueueEvent queueEvent) { | ||
this.onboarding = onboarding; | ||
this.institution = institution; | ||
this.token = token; | ||
this.queueEvent = queueEvent; | ||
} | ||
|
||
public Onboarding getOnboarding() { | ||
return onboarding; | ||
} | ||
|
||
public void setOnboarding(Onboarding onboarding) { | ||
this.onboarding = onboarding; | ||
} | ||
|
||
public InstitutionResponse getInstitution() { | ||
return institution; | ||
} | ||
|
||
public void setInstitution(InstitutionResponse institution) { | ||
this.institution = institution; | ||
} | ||
|
||
public Token getToken() { | ||
return token; | ||
} | ||
|
||
public void setToken(Token token) { | ||
this.token = token; | ||
} | ||
|
||
public QueueEvent getQueueEvent() { | ||
return queueEvent; | ||
} | ||
|
||
public void setQueueEvent(QueueEvent queueEvent) { | ||
this.queueEvent = queueEvent; | ||
} | ||
} |
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
Oops, something went wrong.