Skip to content

Commit 94e84de

Browse files
committed
Update JAVA-Classes - BO4E v202401.7.0-wd
1 parent 4469a31 commit 94e84de

File tree

114 files changed

+1893
-499
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+1893
-499
lines changed

bo4e/ZusatzAttribut.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*
1616
* .. HINT::
1717
* `ZusatzAttribut JSON Schema
18-
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.6.0/src/bo4e_schemas/ZusatzAttribut.json>`_
18+
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.7.0/src/bo4e_schemas/ZusatzAttribut.json>`_
1919
*/
2020
@JsonInclude(JsonInclude.Include.NON_NULL)
2121
public class ZusatzAttribut {

bo4e/bo/Angebot.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
import bo4e.ZusatzAttribut;
44
import bo4e.com.Angebotsvariante;
5+
import bo4e.enums.BoTyp;
56
import bo4e.enums.Sparte;
6-
import bo4e.enums.Typ;
77
import com.fasterxml.jackson.annotation.JsonInclude;
88

99
import java.time.OffsetDateTime;
@@ -24,11 +24,11 @@
2424
*
2525
* .. HINT::
2626
* `Angebot JSON Schema
27-
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.6.0/src/bo4e_schemas/bo/Angebot.json>`_
27+
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.7.0/src/bo4e_schemas/bo/Angebot.json>`_
2828
*/
2929
@JsonInclude(JsonInclude.Include.NON_NULL)
3030
public class Angebot extends Geschaeftsobjekt {
31-
private final Typ _typ = Typ.ANGEBOT;
31+
private final BoTyp _typ = BoTyp.ANGEBOT;
3232
private String anfragereferenz;
3333
private OffsetDateTime angebotsdatum;
3434
private Geschaeftspartner angebotsgeber;
@@ -57,7 +57,7 @@ private Angebot(AngebotBuilder builder) {
5757
this.varianten = builder.varianten;
5858
}
5959

60-
public Typ get_typ() {
60+
public BoTyp get_typ() {
6161
return _typ;
6262
}
6363

bo4e/bo/Ausschreibung.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import bo4e.enums.Ausschreibungsportal;
77
import bo4e.enums.Ausschreibungsstatus;
88
import bo4e.enums.Ausschreibungstyp;
9-
import bo4e.enums.Typ;
9+
import bo4e.enums.BoTyp;
1010
import com.fasterxml.jackson.annotation.JsonInclude;
1111

1212
import java.time.OffsetDateTime;
@@ -23,11 +23,11 @@
2323
*
2424
* .. HINT::
2525
* `Ausschreibung JSON Schema
26-
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.6.0/src/bo4e_schemas/bo/Ausschreibung.json>`_
26+
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.7.0/src/bo4e_schemas/bo/Ausschreibung.json>`_
2727
*/
2828
@JsonInclude(JsonInclude.Include.NON_NULL)
2929
public class Ausschreibung extends Geschaeftsobjekt {
30-
private final Typ _typ = Typ.AUSSCHREIBUNG;
30+
private final BoTyp _typ = BoTyp.AUSSCHREIBUNG;
3131
private Zeitraum abgabefrist;
3232
private Geschaeftspartner ausschreibender;
3333
private Ausschreibungsportal ausschreibungportal;
@@ -58,7 +58,7 @@ private Ausschreibung(AusschreibungBuilder builder) {
5858
this.webseite = builder.webseite;
5959
}
6060

61-
public Typ get_typ() {
61+
public BoTyp get_typ() {
6262
return _typ;
6363
}
6464

0 commit comments

Comments
 (0)