Skip to content

Commit 4dc0523

Browse files
committed
Update JAVA-Classes - BO4E v202401.7.0
1 parent 5ec9cd7 commit 4dc0523

File tree

114 files changed

+1883
-496
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

+1883
-496
lines changed

bo4e/ZusatzAttribut.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* .. HINT::
1515
* `ZusatzAttribut JSON Schema
16-
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.6.0/src/bo4e_schemas/ZusatzAttribut.json>`_
16+
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.7.0/src/bo4e_schemas/ZusatzAttribut.json>`_
1717
*/
1818
public class ZusatzAttribut {
1919
private String name;

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

88
import java.time.OffsetDateTime;
99
import java.util.List;
@@ -23,10 +23,10 @@
2323
*
2424
* .. HINT::
2525
* `Angebot JSON Schema
26-
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.6.0/src/bo4e_schemas/bo/Angebot.json>`_
26+
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.7.0/src/bo4e_schemas/bo/Angebot.json>`_
2727
*/
2828
public class Angebot extends Geschaeftsobjekt {
29-
private final Typ _typ = Typ.ANGEBOT;
29+
private final BoTyp _typ = BoTyp.ANGEBOT;
3030
private String anfragereferenz;
3131
private OffsetDateTime angebotsdatum;
3232
private Geschaeftspartner angebotsgeber;
@@ -55,7 +55,7 @@ private Angebot(AngebotBuilder builder) {
5555
this.varianten = builder.varianten;
5656
}
5757

58-
public Typ get_typ() {
58+
public BoTyp get_typ() {
5959
return _typ;
6060
}
6161

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

1111
import java.time.OffsetDateTime;
1212
import java.util.List;
@@ -22,10 +22,10 @@
2222
*
2323
* .. HINT::
2424
* `Ausschreibung JSON Schema
25-
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.6.0/src/bo4e_schemas/bo/Ausschreibung.json>`_
25+
* <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/BO4E/BO4E-Schemas/v202401.7.0/src/bo4e_schemas/bo/Ausschreibung.json>`_
2626
*/
2727
public class Ausschreibung extends Geschaeftsobjekt {
28-
private final Typ _typ = Typ.AUSSCHREIBUNG;
28+
private final BoTyp _typ = BoTyp.AUSSCHREIBUNG;
2929
private Zeitraum abgabefrist;
3030
private Geschaeftspartner ausschreibender;
3131
private Ausschreibungsportal ausschreibungportal;
@@ -56,7 +56,7 @@ private Ausschreibung(AusschreibungBuilder builder) {
5656
this.webseite = builder.webseite;
5757
}
5858

59-
public Typ get_typ() {
59+
public BoTyp get_typ() {
6060
return _typ;
6161
}
6262

0 commit comments

Comments
 (0)