generated from pagopa/template-java-spring-microservice
-
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.
- Loading branch information
1 parent
1ae155e
commit 1d5bd68
Showing
18 changed files
with
2,093 additions
and
403 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
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
95 changes: 95 additions & 0 deletions
95
...ain/java/it/gov/pagopa/mbd/service/model/xml/node/pafornode/CtEntityUniqueIdentifier.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,95 @@ | ||
// | ||
// 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. | ||
* | ||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe. | ||
* | ||
* <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> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "ctEntityUniqueIdentifier", propOrder = { | ||
"entityUniqueIdentifierType", | ||
"entityUniqueIdentifierValue" | ||
}) | ||
public class CtEntityUniqueIdentifier { | ||
|
||
@XmlElement(required = true) | ||
@XmlSchemaType(name = "string") | ||
protected StEntityUniqueIdentifierType entityUniqueIdentifierType; | ||
@XmlElement(required = true) | ||
protected String entityUniqueIdentifierValue; | ||
|
||
/** | ||
* Recupera il valore della proprietà entityUniqueIdentifierType. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link StEntityUniqueIdentifierType } | ||
* | ||
*/ | ||
public StEntityUniqueIdentifierType getEntityUniqueIdentifierType() { | ||
return entityUniqueIdentifierType; | ||
} | ||
|
||
/** | ||
* Imposta il valore della proprietà entityUniqueIdentifierType. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link StEntityUniqueIdentifierType } | ||
* | ||
*/ | ||
public void setEntityUniqueIdentifierType(StEntityUniqueIdentifierType value) { | ||
this.entityUniqueIdentifierType = value; | ||
} | ||
|
||
/** | ||
* Recupera il valore della proprietà entityUniqueIdentifierValue. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link String } | ||
* | ||
*/ | ||
public String getEntityUniqueIdentifierValue() { | ||
return entityUniqueIdentifierValue; | ||
} | ||
|
||
/** | ||
* Imposta il valore della proprietà entityUniqueIdentifierValue. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link String } | ||
* | ||
*/ | ||
public void setEntityUniqueIdentifierValue(String value) { | ||
this.entityUniqueIdentifierValue = value; | ||
} | ||
|
||
} |
Oops, something went wrong.