-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: get receipt model #15
Changes from all commits
1d5bd68
541c8f0
3b2c854
5eda1fa
6b7eee1
ad18f75
06f684f
09bb415
0163408
38d8477
b9dd988
758d0fb
f6abda2
8612de6
3ca4d5a
80a5804
1251eb9
2df2d5b
f981d7a
ed7755b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,93 @@ | ||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||
// Questo file è stato generato dall'Eclipse Implementation of JAXB, v3.0.0 | ||||||||||||||||||||||||||||||||||||||||
// Vedere https://eclipse-ee4j.github.io/jaxb-ri | ||||||||||||||||||||||||||||||||||||||||
// Qualsiasi modifica a questo file andrà persa durante la ricompilazione dello schema di origine. | ||||||||||||||||||||||||||||||||||||||||
// Generato il: 2024.12.18 alle 10:59:02 AM CET | ||||||||||||||||||||||||||||||||||||||||
// | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
package it.gov.pagopa.mbd.service.model.xml.node.pafornode; | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
import jakarta.xml.bind.annotation.*; | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||
* <p>Classe Java per ctEntityUniqueIdentifier complex type. | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+13
to
+14
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
* <pre> | ||||||||||||||||||||||||||||||||||||||||
* <complexType name="ctEntityUniqueIdentifier"> | ||||||||||||||||||||||||||||||||||||||||
* <complexContent> | ||||||||||||||||||||||||||||||||||||||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||||||||||||||||||||||||||||||||||||||||
* <sequence> | ||||||||||||||||||||||||||||||||||||||||
* <element name="entityUniqueIdentifierType" type="{http://pagopa-api.pagopa.gov.it/pa/paForNode.xsd}stEntityUniqueIdentifierType"/> | ||||||||||||||||||||||||||||||||||||||||
* <element name="entityUniqueIdentifierValue" type="{http://pagopa-api.pagopa.gov.it/pa/paForNode.xsd}stEntityUniqueIdentifierValue"/> | ||||||||||||||||||||||||||||||||||||||||
* </sequence> | ||||||||||||||||||||||||||||||||||||||||
* </restriction> | ||||||||||||||||||||||||||||||||||||||||
* </complexContent> | ||||||||||||||||||||||||||||||||||||||||
* </complexType> | ||||||||||||||||||||||||||||||||||||||||
* </pre> | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+29
to
+30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||
@XmlAccessorType(XmlAccessType.FIELD) | ||||||||||||||||||||||||||||||||||||||||
@XmlType(name = "ctEntityUniqueIdentifier", propOrder = { | ||||||||||||||||||||||||||||||||||||||||
"entityUniqueIdentifierType", | ||||||||||||||||||||||||||||||||||||||||
"entityUniqueIdentifierValue" | ||||||||||||||||||||||||||||||||||||||||
}) | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+33
to
+36
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
public class CtEntityUniqueIdentifier { | ||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
@XmlElement(required = true) | ||||||||||||||||||||||||||||||||||||||||
@XmlSchemaType(name = "string") | ||||||||||||||||||||||||||||||||||||||||
protected StEntityUniqueIdentifierType entityUniqueIdentifierType; | ||||||||||||||||||||||||||||||||||||||||
@XmlElement(required = true) | ||||||||||||||||||||||||||||||||||||||||
protected String entityUniqueIdentifierValue; | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+39
to
+43
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||
* Recupera il valore della proprietà entityUniqueIdentifierType. | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
* @return | ||||||||||||||||||||||||||||||||||||||||
* possible object is | ||||||||||||||||||||||||||||||||||||||||
* {@link StEntityUniqueIdentifierType } | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||
public StEntityUniqueIdentifierType getEntityUniqueIdentifierType() { | ||||||||||||||||||||||||||||||||||||||||
return entityUniqueIdentifierType; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+45
to
+55
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||
* Imposta il valore della proprietà entityUniqueIdentifierType. | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
* @param value | ||||||||||||||||||||||||||||||||||||||||
* allowed object is | ||||||||||||||||||||||||||||||||||||||||
* {@link StEntityUniqueIdentifierType } | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||
public void setEntityUniqueIdentifierType(StEntityUniqueIdentifierType value) { | ||||||||||||||||||||||||||||||||||||||||
this.entityUniqueIdentifierType = value; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+57
to
+67
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||
* Recupera il valore della proprietà entityUniqueIdentifierValue. | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
* @return | ||||||||||||||||||||||||||||||||||||||||
* possible object is | ||||||||||||||||||||||||||||||||||||||||
* {@link String } | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||
public String getEntityUniqueIdentifierValue() { | ||||||||||||||||||||||||||||||||||||||||
return entityUniqueIdentifierValue; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+69
to
+79
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||
* Imposta il valore della proprietà entityUniqueIdentifierValue. | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
* @param value | ||||||||||||||||||||||||||||||||||||||||
* allowed object is | ||||||||||||||||||||||||||||||||||||||||
* {@link String } | ||||||||||||||||||||||||||||||||||||||||
* | ||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||
public void setEntityUniqueIdentifierValue(String value) { | ||||||||||||||||||||||||||||||||||||||||
this.entityUniqueIdentifierValue = value; | ||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
Comment on lines
+81
to
+91
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [google-java-format] reported by reviewdog 🐶
Suggested change
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[google-java-format] reported by reviewdog 🐶