file_id
stringlengths
4
10
content
stringlengths
91
42.8k
repo
stringlengths
7
108
path
stringlengths
7
251
token_length
int64
34
8.19k
original_comment
stringlengths
11
11.5k
comment_type
stringclasses
2 values
detected_lang
stringclasses
1 value
prompt
stringlengths
34
42.8k
202161_6
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) <SUF>*/ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202161_7
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden<SUF>*/ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202161_8
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde<SUF>*/ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202161_9
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden<SUF>*/ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202161_10
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde<SUF>*/ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202161_11
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden<SUF>*/ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202161_12
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde<SUF>*/ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202161_13
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PartijRolHistorie.java
1,288
/** * Zet de waarden voor partij rol van PartijRolHistorie. * * @param partijRol de nieuwe waarde voor partij rol van PartijRolHistorie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.sql.Timestamp; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the his_partijrol database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "his_partijrol", schema = "kern", uniqueConstraints = {@UniqueConstraint(columnNames = {"partijrol", "tsreg"})}) public class PartijRolHistorie extends AbstractFormeleHistorieZonderVerantwoording implements Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "his_partijrol_id_generator", sequenceName = "kern.seq_his_partijrol", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "his_partijrol_id_generator") @Column(nullable = false) /** * Het veld zou Integer moeten zijn maar is Long i.v.m. de link naar GegevenInOnderzoek. */ private Long id; @Column(name = "datingang", nullable = false) private int datumIngang; @Column(name = "dateinde") private Integer datumEinde; // bi-directional many-to-one association to Partij @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partijrol", nullable = false) private PartijRol partijRol; /** * JPA default constructor. */ protected PartijRolHistorie() {} /** * Maak een nieuwe partij historie. * * @param partijRol partij rol * @param datumTijdRegistratie datumTijdRegistratie * @param datumIngang datum ingang */ public PartijRolHistorie(final PartijRol partijRol, final Timestamp datumTijdRegistratie, final int datumIngang) { setPartijRol(partijRol); setDatumTijdRegistratie(datumTijdRegistratie); setDatumIngang(datumIngang); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Integer getId() { return convertLongNaarInteger(id); } /** * Zet de waarden voor id van PartijRolHistorie. * * @param id de nieuwe waarde voor id van PartijRolHistorie */ public void setId(final Integer id) { this.id = convertIntegerNaarLong(id); } /** * Geef de waarde van datum ingang van PartijRolHistorie. * * @return de waarde van datum ingang van PartijRolHistorie */ public int getDatumIngang() { return datumIngang; } /** * Zet de waarden voor datum ingang van PartijRolHistorie. * * @param datumIngang de nieuwe waarde voor datum ingang van PartijRolHistorie */ public void setDatumIngang(final int datumIngang) { this.datumIngang = datumIngang; } /** * Geef de waarde van datum einde van PartijRolHistorie. * * @return de waarde van datum einde van PartijRolHistorie */ public Integer getDatumEinde() { return datumEinde; } /** * Zet de waarden voor datum einde van PartijRolHistorie. * * @param datumEinde de nieuwe waarde voor datum einde van PartijRolHistorie */ public void setDatumEinde(final Integer datumEinde) { this.datumEinde = datumEinde; } /** * Geef de waarde van partij rol van PartijRolHistorie. * * @return de waarde van partij rol van PartijRolHistorie */ public PartijRol getPartijRol() { return partijRol; } /** * Zet de waarden<SUF>*/ public void setPartijRol(final PartijRol partijRol) { ValidationUtils.controleerOpNullWaarden("partijrol mag niet null zijn", partijRol); this.partijRol = partijRol; } }
202165_1
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.util.autconv.lo3naarbrp; import com.google.common.collect.Maps; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; import javax.annotation.PostConstruct; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.util.common.DatumUtil; import nl.bzk.algemeenbrp.util.common.logging.Logger; import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Component; /** * Converteert een GBA partij naar een BRP partij. */ @Component final class PartijConversie { private static final Logger LOGGER = LoggerFactory.getLogger(); @PersistenceContext(unitName = "nl.bzk.brp.master") private EntityManager entityManager; private final AtomicInteger partijCodeRange = new AtomicInteger(); private final Map<Short, Short> partijConversieMap = Maps.newHashMap(); private PartijConversie() { } @PostConstruct void postConstruct() { final String maxPartijCode = (String) entityManager. createNativeQuery("select max(code) || '' from kern.partij where code <= '900000'").getSingleResult(); LOGGER.info("max partijCode = {}", maxPartijCode); partijCodeRange.set(Integer.parseInt(maxPartijCode)); } void converteerPartij(final Partij partijOud) { if (partijConversieMap.containsKey(partijOud.getId())) { LOGGER.info("Partij reeds geconverteerd, id: {}", partijOud.getId()); return; } LOGGER.info("Start omzetten Partij met id: {}", partijOud.getId()); final String naam = BrpPostfix.appendTo(partijOud.getNaam(), partijOud.getId()); final String code = StringUtils.leftPad(String.valueOf(partijCodeRange.incrementAndGet()), 6, "0"); final Partij partijNieuw = new Partij(naam, code); partijNieuw.setDatumIngang(partijOud.getDatumIngang()); partijNieuw.setDatumEinde(partijOud.getDatumEinde()); partijNieuw.setOin(partijOud.getOin()); partijNieuw.setSoortPartij(partijOud.getSoortPartij()); partijNieuw.setIndicatieVerstrekkingsbeperkingMogelijk(partijOud.isIndicatieVerstrekkingsbeperkingMogelijk()); partijNieuw.setIndicatieAutomatischFiatteren(partijOud.getIndicatieAutomatischFiatteren()); partijNieuw.setDatumOvergangNaarBrp(DatumUtil.vandaag()); partijNieuw.setActueelEnGeldig(partijOud.isActueelEnGeldig()); final Partij mergePartij = entityManager.merge(partijNieuw); partijConversieMap.put(partijOud.getId(), mergePartij.getId()); } Map<Short, Short> getPartijConversieMap() { return partijConversieMap; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/utils/lo3brp-autorisatie-conversie/src/main/java/nl/bzk/brp/util/autconv/lo3naarbrp/PartijConversie.java
907
/** * Converteert een GBA partij naar een BRP partij. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.util.autconv.lo3naarbrp; import com.google.common.collect.Maps; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; import javax.annotation.PostConstruct; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.util.common.DatumUtil; import nl.bzk.algemeenbrp.util.common.logging.Logger; import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory; import org.apache.commons.lang3.StringUtils; import org.springframework.stereotype.Component; /** * Converteert een GBA<SUF>*/ @Component final class PartijConversie { private static final Logger LOGGER = LoggerFactory.getLogger(); @PersistenceContext(unitName = "nl.bzk.brp.master") private EntityManager entityManager; private final AtomicInteger partijCodeRange = new AtomicInteger(); private final Map<Short, Short> partijConversieMap = Maps.newHashMap(); private PartijConversie() { } @PostConstruct void postConstruct() { final String maxPartijCode = (String) entityManager. createNativeQuery("select max(code) || '' from kern.partij where code <= '900000'").getSingleResult(); LOGGER.info("max partijCode = {}", maxPartijCode); partijCodeRange.set(Integer.parseInt(maxPartijCode)); } void converteerPartij(final Partij partijOud) { if (partijConversieMap.containsKey(partijOud.getId())) { LOGGER.info("Partij reeds geconverteerd, id: {}", partijOud.getId()); return; } LOGGER.info("Start omzetten Partij met id: {}", partijOud.getId()); final String naam = BrpPostfix.appendTo(partijOud.getNaam(), partijOud.getId()); final String code = StringUtils.leftPad(String.valueOf(partijCodeRange.incrementAndGet()), 6, "0"); final Partij partijNieuw = new Partij(naam, code); partijNieuw.setDatumIngang(partijOud.getDatumIngang()); partijNieuw.setDatumEinde(partijOud.getDatumEinde()); partijNieuw.setOin(partijOud.getOin()); partijNieuw.setSoortPartij(partijOud.getSoortPartij()); partijNieuw.setIndicatieVerstrekkingsbeperkingMogelijk(partijOud.isIndicatieVerstrekkingsbeperkingMogelijk()); partijNieuw.setIndicatieAutomatischFiatteren(partijOud.getIndicatieAutomatischFiatteren()); partijNieuw.setDatumOvergangNaarBrp(DatumUtil.vandaag()); partijNieuw.setActueelEnGeldig(partijOud.isActueelEnGeldig()); final Partij mergePartij = entityManager.merge(partijNieuw); partijConversieMap.put(partijOud.getId(), mergePartij.getId()); } Map<Short, Short> getPartijConversieMap() { return partijConversieMap; } }
202168_1
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/brp-leveren/brp-leveren-service/brp-service-cache/src/main/java/nl/bzk/brp/service/cache/PartijCache.java
407
/** * PartijCache. Cache voor partij tabel. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor<SUF>*/ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
202168_2
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/brp-leveren/brp-leveren-service/brp-service-cache/src/main/java/nl/bzk/brp/service/cache/PartijCache.java
407
/** * Herlaadt de partijen. * @return de cache entry */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen.<SUF>*/ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
202168_3
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/brp-leveren/brp-leveren-service/brp-service-cache/src/main/java/nl/bzk/brp/service/cache/PartijCache.java
407
/** * Geeft de partij met code. * @param code de partij code * @return de partij */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij<SUF>*/ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
202168_4
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/brp-leveren/brp-leveren-service/brp-service-cache/src/main/java/nl/bzk/brp/service/cache/PartijCache.java
407
/** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij<SUF>*/ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
202168_5
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/brp-leveren/brp-leveren-service/brp-service-cache/src/main/java/nl/bzk/brp/service/cache/PartijCache.java
407
/** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij<SUF>*/ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
202168_6
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */ PartijRol geefPartijRol(int partijRolId); }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/brp-leveren/brp-leveren-service/brp-service-cache/src/main/java/nl/bzk/brp/service/cache/PartijCache.java
407
/** * Geeft de partij obv een partijRolId. * @param partijRolId het id van de partij rol * @return de partij */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.service.cache; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; /** * PartijCache. Cache voor partij tabel. */ public interface PartijCache { /** * Herlaadt de partijen. * @return de cache entry */ CacheEntry herlaad(); /** * Geeft de partij met code. * @param code de partij code * @return de partij */ Partij geefPartij(String code); /** * Geeft de partij obv een oin. * @param oin het OIN * @return de partij */ Partij geefPartijMetOin(String oin); /** * Geeft de partij obv een id. * @param id id van de partij * @return de partij */ Partij geefPartijMetId(short id); /** * Geeft de partij<SUF>*/ PartijRol geefPartijRol(int partijRolId); }
202170_1
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.util.autconv.lo3naarbrp; import com.google.common.collect.Maps; import java.util.Map; import javax.inject.Inject; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; import nl.bzk.algemeenbrp.util.common.logging.Logger; import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory; import org.springframework.stereotype.Component; /** * Converteert een GBA PartijRol naar een BRP PartijRol. */ @Component final class PartijRolConversie { private static final Logger LOGGER = LoggerFactory.getLogger(); private final Map<Integer, Integer> partijrolConversieMap = Maps.newHashMap(); @PersistenceContext(unitName = "nl.bzk.brp.master") private EntityManager entityManager; @Inject private PartijConversie partijConversie; private PartijRolConversie() { } void converteerPartijRol(final PartijRol partijRolOud) { partijConversie.converteerPartij(partijRolOud.getPartij()); if (partijrolConversieMap.containsKey(partijRolOud.getId())) { LOGGER.info("PartijRol reeds geconverteerd, id: {}", partijRolOud.getId()); return; } LOGGER.info("Start omzetten PartijRol met id: {}", partijRolOud.getId()); final Partij partijRef = entityManager.getReference(Partij.class, partijConversie.getPartijConversieMap().get(partijRolOud.getPartij().getId())); final PartijRol partijrolNieuw = new PartijRol(partijRef, partijRolOud.getRol()); partijrolNieuw.setDatumIngang(partijRolOud.getDatumIngang()); partijrolNieuw.setDatumEinde(partijRolOud.getDatumEinde()); partijrolNieuw.setActueelEnGeldig(partijRolOud.isActueelEnGeldig()); final PartijRol mergePartijRol = entityManager.merge(partijrolNieuw); partijrolConversieMap.put(partijRolOud.getId(), mergePartijRol.getId()); } Map<Integer, Integer> getPartijrolConversieMap() { return partijrolConversieMap; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/utils/lo3brp-autorisatie-conversie/src/main/java/nl/bzk/brp/util/autconv/lo3naarbrp/PartijRolConversie.java
720
/** * Converteert een GBA PartijRol naar een BRP PartijRol. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.util.autconv.lo3naarbrp; import com.google.common.collect.Maps; import java.util.Map; import javax.inject.Inject; import javax.persistence.EntityManager; import javax.persistence.PersistenceContext; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Partij; import nl.bzk.algemeenbrp.dal.domein.brp.entity.PartijRol; import nl.bzk.algemeenbrp.util.common.logging.Logger; import nl.bzk.algemeenbrp.util.common.logging.LoggerFactory; import org.springframework.stereotype.Component; /** * Converteert een GBA<SUF>*/ @Component final class PartijRolConversie { private static final Logger LOGGER = LoggerFactory.getLogger(); private final Map<Integer, Integer> partijrolConversieMap = Maps.newHashMap(); @PersistenceContext(unitName = "nl.bzk.brp.master") private EntityManager entityManager; @Inject private PartijConversie partijConversie; private PartijRolConversie() { } void converteerPartijRol(final PartijRol partijRolOud) { partijConversie.converteerPartij(partijRolOud.getPartij()); if (partijrolConversieMap.containsKey(partijRolOud.getId())) { LOGGER.info("PartijRol reeds geconverteerd, id: {}", partijRolOud.getId()); return; } LOGGER.info("Start omzetten PartijRol met id: {}", partijRolOud.getId()); final Partij partijRef = entityManager.getReference(Partij.class, partijConversie.getPartijConversieMap().get(partijRolOud.getPartij().getId())); final PartijRol partijrolNieuw = new PartijRol(partijRef, partijRolOud.getRol()); partijrolNieuw.setDatumIngang(partijRolOud.getDatumIngang()); partijrolNieuw.setDatumEinde(partijRolOud.getDatumEinde()); partijrolNieuw.setActueelEnGeldig(partijRolOud.isActueelEnGeldig()); final PartijRol mergePartijRol = entityManager.merge(partijrolNieuw); partijrolConversieMap.put(partijRolOud.getId(), mergePartijRol.getId()); } Map<Integer, Integer> getPartijrolConversieMap() { return partijrolConversieMap; } }
202176_1
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding. */ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. */ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid attribuut element. */ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/gba/gba-conversie/src/main/java/nl/bzk/brp/levering/lo3/mapper/PersoonBijhoudingMapper.java
1,017
/** * Mapt de bijhouding. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding.<SUF>*/ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. */ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid attribuut element. */ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
202176_2
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding. */ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. */ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid attribuut element. */ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/gba/gba-conversie/src/main/java/nl/bzk/brp/levering/lo3/mapper/PersoonBijhoudingMapper.java
1,017
/** * Groep element. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding. */ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. <SUF>*/ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid attribuut element. */ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
202176_3
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding. */ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. */ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid attribuut element. */ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/gba/gba-conversie/src/main/java/nl/bzk/brp/levering/lo3/mapper/PersoonBijhoudingMapper.java
1,017
/** * Datum aanvang geldigheid attribuut element. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding. */ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. */ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid<SUF>*/ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
202176_5
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding. */ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. */ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid attribuut element. */ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/brp/gba/gba-conversie/src/main/java/nl/bzk/brp/levering/lo3/mapper/PersoonBijhoudingMapper.java
1,017
/** * Map inhoud. * @param identiteitRecord identiteits record * @param record meta record * @param onderzoekMapper onderzoek mapper * @return de brpBijhoudingsaardInhoud. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.brp.levering.lo3.mapper; import nl.bzk.algemeenbrp.dal.domein.brp.enums.Element; import nl.bzk.brp.domain.element.AttribuutElement; import nl.bzk.brp.domain.element.ElementHelper; import nl.bzk.brp.domain.element.GroepElement; import nl.bzk.brp.domain.leveringmodel.MetaRecord; import nl.bzk.migratiebrp.conversie.model.brp.groep.BrpBijhoudingInhoud; import org.springframework.stereotype.Component; /** * Mapt de bijhouding. */ @Component public final class PersoonBijhoudingMapper extends AbstractMapper<BrpBijhoudingInhoud> { /** * Groep element. */ public static final GroepElement GROEP_ELEMENT = ElementHelper.getGroepElement(Element.PERSOON_BIJHOUDING.getId()); /** * Datum aanvang geldigheid attribuut element. */ public static final AttribuutElement DATUM_AANVANG_GELDIGHEID_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMAANVANGGELDIGHEID.getId()); private static final AttribuutElement PARTIJ_ELEMENT = ElementHelper .getAttribuutElement(Element.PERSOON_BIJHOUDING_PARTIJCODE.getId()); private static final AttribuutElement BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_BIJHOUDINGSAARDCODE.getId()); private static final AttribuutElement NADERE_BIJHOUDINGSAARD_ELEMENT = ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_NADEREBIJHOUDINGSAARDCODE.getId()); /** * Constructor. */ public PersoonBijhoudingMapper() { super(ElementHelper.getGroepElement(Element.PERSOON_IDENTITEIT.getId()), GROEP_ELEMENT, DATUM_AANVANG_GELDIGHEID_ELEMENT, ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_DATUMEINDEGELDIGHEID.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPREGISTRATIE.getId()), ElementHelper.getAttribuutElement(Element.PERSOON_BIJHOUDING_TIJDSTIPVERVAL.getId())); } /** * Map inhoud. <SUF>*/ @Override public BrpBijhoudingInhoud mapInhoud(final MetaRecord identiteitRecord, final MetaRecord record, final OnderzoekMapper onderzoekMapper) { return new BrpBijhoudingInhoud( BrpMetaAttribuutMapper.mapBrpPartijCode( record.getAttribuut(PARTIJ_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), PARTIJ_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpBijhoudingsaardCode( record.getAttribuut(BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), BIJHOUDINGSAARD_ELEMENT, true)), BrpMetaAttribuutMapper.mapBrpNadereBijhoudingsaardCode( record.getAttribuut(NADERE_BIJHOUDINGSAARD_ELEMENT), onderzoekMapper.bepaalOnderzoek(record.getVoorkomensleutel(), NADERE_BIJHOUDINGSAARD_ELEMENT, true))); } }
202180_2
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst<SUF>*/ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_4
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document<SUF>*/ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_5
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) <SUF>*/ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_6
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden<SUF>*/ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_7
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde<SUF>*/ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_8
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden<SUF>*/ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_9
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde<SUF>*/ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_10
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden<SUF>*/ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_11
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde<SUF>*/ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_12
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden<SUF>*/ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_13
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde<SUF>*/ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_14
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden<SUF>*/ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_15
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde<SUF>*/ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_17
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door<SUF>*/ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202180_18
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/Document.java
2,130
/** * Bepaal of een ander document inhoudelijk gelijk is. * * @param anderDocument ander document * @return true, als het andere document inhoudelijk gelijk is, anders false */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Comparator; import java.util.LinkedHashSet; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.apache.commons.lang3.builder.EqualsBuilder; /** * The persistent class for the doc database table. * */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "doc", schema = "kern") public class Document extends AbstractEntiteit implements AdministratiefGegeven, Serializable { /** * Sorteert de lijst van documenten o.b.v. de hashcode van aktenummer, identificatie, * omschrijving en soort document. */ static final Comparator<Document> COMPARATOR = new Comparator<Document>() { @Override public int compare(final Document document1, final Document document2) { return berekenHash(document1) - berekenHash(document2); } private int berekenHash(final Document document) { final int prime = 31; int result = 1; result = prime * result + (document.aktenummer == null ? 0 : document.aktenummer.hashCode()); result = prime * result + (document.omschrijving == null ? 0 : document.omschrijving.hashCode()); result = prime * result + (document.soortDocument == null || document.soortDocument.getOmschrijving() == null ? 0 : document.soortDocument.getOmschrijving().hashCode()); return result; } }; private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "doc_id_generator", sequenceName = "kern.seq_doc", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "doc_id_generator") @Column(nullable = false) private Long id; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "srt", nullable = false) private SoortDocument soortDocument; @Column(name = "aktenr", length = 7) private String aktenummer; @Column(name = "oms", length = 80) private String omschrijving; @ManyToOne(fetch = FetchType.LAZY) @JoinColumn(name = "partij", nullable = false) private Partij partij; @OneToMany(fetch = FetchType.LAZY, mappedBy = "document", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<ActieBron> actieBronSet = new LinkedHashSet<>(0); /** * JPA default constructor. */ protected Document() {} /** * Maakt een Document object. * * @param soortDocument soort document * @param partij de partij */ public Document(final SoortDocument soortDocument, final Partij partij) { setSoortDocument(soortDocument); setPartij(partij); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van Document. * * @param id de nieuwe waarde voor id van Document */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van soort document van Document. * * @return de waarde van soort document van Document */ public SoortDocument getSoortDocument() { return soortDocument; } /** * Zet de waarden voor soort document van Document. * * @param soortDocument de nieuwe waarde voor soort document van Document */ public void setSoortDocument(final SoortDocument soortDocument) { ValidationUtils.controleerOpNullWaarden("soortDocument mag niet null zijn", soortDocument); this.soortDocument = soortDocument; } /** * Geef de waarde van aktenummer van Document. * * @return de waarde van aktenummer van Document */ public String getAktenummer() { return aktenummer; } /** * Zet de waarden voor aktenummer van Document. * * @param aktenummer de nieuwe waarde voor aktenummer van Document */ public void setAktenummer(final String aktenummer) { ValidationUtils.controleerOpLegeWaarden("aktenummer mag geen lege string zijn", aktenummer); this.aktenummer = aktenummer; } /** * Geef de waarde van omschrijving van Document. * * @return de waarde van omschrijving van Document */ public String getOmschrijving() { return omschrijving; } /** * Zet de waarden voor omschrijving van Document. * * @param omschrijving de nieuwe waarde voor omschrijving van Document */ public void setOmschrijving(final String omschrijving) { ValidationUtils.controleerOpLegeWaarden("omschrijving mag geen lege string zijn", omschrijving); this.omschrijving = omschrijving; } /** * Geef de waarde van partij van Document. * * @return de waarde van partij van Document */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van Document. * * @param partij de nieuwe waarde voor partij van Document */ public void setPartij(final Partij partij) { this.partij = partij; } /** * Geef de waarde van BRP actie set van Document. * * @return de waarde van BRP actie set van Document */ public Set<BRPActie> getBRPActieSet() { final Set<BRPActie> result = new LinkedHashSet<>(); for (final ActieBron actieBron : actieBronSet) { result.add(actieBron.getActie()); } return result; } /** * Bevat brp actie. * * @param actie actie * @return true, if successful */ boolean bevatBRPActie(final BRPActie actie) { return getBRPActieSet().contains(actie); } /** * Wordt aangeroepen door BRPActie.addDocument om relatie wederkerig te registreren zonder * dubbele ActieBronnen te maken. * * @param actieBron actie bron */ public final void addActieBron(final ActieBron actieBron) { if (actieBron.getDocument() == this && !bevatBRPActie(actieBron.getActie())) { actieBronSet.add(actieBron); } } /** * Bepaal of een<SUF>*/ public boolean isInhoudelijkGelijkAan(final Document anderDocument) { if (anderDocument == null) { return false; } final boolean isInhoudelijkGelijk = new EqualsBuilder().append(aktenummer, anderDocument.aktenummer).append(omschrijving, anderDocument.omschrijving) .append(partij, anderDocument.partij).isEquals(); final boolean soortDocumentGelijk = soortDocument == null && anderDocument.soortDocument == null || soortDocument != null && soortDocument.isInhoudelijkGelijkAan(anderDocument.soortDocument); return isInhoudelijkGelijk && soortDocumentGelijk; } }
202184_3
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/RNIDeelnemer.java
1,234
/** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe<SUF>*/ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
202184_4
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/RNIDeelnemer.java
1,234
/** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde<SUF>*/ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
202184_5
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/RNIDeelnemer.java
1,234
/** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden<SUF>*/ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
202184_6
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/RNIDeelnemer.java
1,234
/** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde<SUF>*/ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
202184_7
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/RNIDeelnemer.java
1,234
/** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden<SUF>*/ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
202184_8
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/RNIDeelnemer.java
1,234
/** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde<SUF>*/ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
202184_9
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/RNIDeelnemer.java
1,234
/** * Zet de waarden voor partij van RNIDeelnemer. * * @param partij de nieuwe waarde voor partij van RNIDeelnemer */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import javax.persistence.Cacheable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; import org.hibernate.annotations.Cache; import org.hibernate.annotations.CacheConcurrencyStrategy; import org.hibernate.annotations.NamedQuery; /** * The persistent class for the convrnideelnemer database table. */ @Entity @Table(name = "convrnideelnemer", schema = "conv") @Cacheable @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) @NamedQuery(name = "RNIDeelnemer" + Constanten.ZOEK_ALLES_VOOR_CACHE, query = "from RNIDeelnemer d join fetch d.partij p left join fetch p.hisPartijen " + "left join fetch p.partijBijhoudingHistorieSet left join fetch p.partijRolSet") public class RNIDeelnemer implements Serializable { private static final long serialVersionUID = 1L; private static final int CODE_LENGTE = 4; @Id @SequenceGenerator(name = "convrnideelnemer_id_generator", sequenceName = "conv.seq_convrnideelnemer", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "convrnideelnemer_id_generator") @Column(nullable = false) private Integer id; @Column(name = "rubr8811codernideelnemer", nullable = false, unique = true, length = 4) private String lo3CodeRNIDeelnemer; @ManyToOne @JoinColumn(name = "partij", nullable = false, unique = true) private Partij partij; /** * JPA default constructor. */ protected RNIDeelnemer() {} /** * Maak een nieuwe RNI deelnemer. * * @param lo3CodeRNIDeelnemer lo3 code rni deelnemer * @param partij partij */ public RNIDeelnemer(final String lo3CodeRNIDeelnemer, final Partij partij) { setLo3CodeRNIDeelnemer(lo3CodeRNIDeelnemer); setPartij(partij); } /** * Geef de waarde van id van RNIDeelnemer. * * @return de waarde van id van RNIDeelnemer */ public Integer getId() { return id; } /** * Zet de waarden voor id van RNIDeelnemer. * * @param id de nieuwe waarde voor id van RNIDeelnemer */ public void setId(final Integer id) { this.id = id; } /** * Geef de waarde van lo3 code rni deelnemer van RNIDeelnemer. * * @return de waarde van lo3 code rni deelnemer van RNIDeelnemer */ public String getLo3CodeRNIDeelnemer() { return lo3CodeRNIDeelnemer; } /** * Zet de waarden voor lo3 code rni deelnemer van RNIDeelnemer. * * @param lo3CodeRNIDeelnemer de nieuwe waarde voor lo3 code rni deelnemer van RNIDeelnemer */ public void setLo3CodeRNIDeelnemer(final String lo3CodeRNIDeelnemer) { ValidationUtils.controleerOpNullWaarden("lo3CodeRNIDeelnemer mag niet null zijn", lo3CodeRNIDeelnemer); ValidationUtils.controleerOpLengte("lo3CodeRNIDeelnemer moet lengte 4 hebben", lo3CodeRNIDeelnemer, CODE_LENGTE); this.lo3CodeRNIDeelnemer = lo3CodeRNIDeelnemer; } /** * Geef de waarde van partij van RNIDeelnemer. * * @return de waarde van partij van RNIDeelnemer */ public Partij getPartij() { return partij; } /** * Zet de waarden<SUF>*/ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } }
202189_0
import java.awt.Color; import java.util.Calendar; import java.util.GregorianCalendar; import tegels.KruisTegel; import verkiezingen.Partij; /* * Deze klasse toont het effect van een aanroep van toString() op * verschillende soorten objecten. */ public class ToStringTest { public static void main(String[] args) { Integer iobj = 29; System.out.println(iobj.toString()); Double dobj = 30.5; System.out.println(dobj.toString()); Boolean bobj = true; System.out.println(bobj.toString()); GregorianCalendar gc = new GregorianCalendar(2008, Calendar.JANUARY, 1); System.out.println(gc.toString()); KruisTegel tegel = new KruisTegel(Color.BLUE); System.out.println(tegel.toString()); Partij sgp = new Partij("SGP"); System.out.println(sgp); System.out.println((double)1.1f); } }
DreamEmulator/ou_java
object_oriented_programming/ou_project_files/ProjectenOP/Le12StringTests/ToStringTest.java
273
/* * Deze klasse toont het effect van een aanroep van toString() op * verschillende soorten objecten. */
block_comment
nl
import java.awt.Color; import java.util.Calendar; import java.util.GregorianCalendar; import tegels.KruisTegel; import verkiezingen.Partij; /* * Deze klasse toont<SUF>*/ public class ToStringTest { public static void main(String[] args) { Integer iobj = 29; System.out.println(iobj.toString()); Double dobj = 30.5; System.out.println(dobj.toString()); Boolean bobj = true; System.out.println(bobj.toString()); GregorianCalendar gc = new GregorianCalendar(2008, Calendar.JANUARY, 1); System.out.println(gc.toString()); KruisTegel tegel = new KruisTegel(Color.BLUE); System.out.println(tegel.toString()); Partij sgp = new Partij("SGP"); System.out.println(sgp); System.out.println((double)1.1f); } }
202193_5
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe<SUF>*/ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_6
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) <SUF>*/ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_7
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden<SUF>*/ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_8
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde<SUF>*/ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_9
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden<SUF>*/ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_10
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde<SUF>*/ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_11
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een<SUF>*/ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_12
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) <SUF>*/ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_13
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden<SUF>*/ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_14
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde<SUF>*/ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_15
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden<SUF>*/ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_16
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde<SUF>*/ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_17
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden<SUF>*/ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_18
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde<SUF>*/ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202193_19
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
DDDNL/OperatieBRP
Broncode/operatiebrp-code-145.3/algemeen/alg-dal-entiteiten/src/main/java/nl/bzk/algemeenbrp/dal/domein/brp/entity/PersoonVerificatie.java
2,082
/** * Zet de waarde van isActueelEnGeldig. * * @param actueelEnGeldig isActueelEnGeldig */
block_comment
nl
/** * This file is copyright 2017 State of the Netherlands (Ministry of Interior Affairs and Kingdom Relations). * It is made available under the terms of the GNU Affero General Public License, version 3 as published by the Free Software Foundation. * The project of which this file is part, may be found at www.github.com/MinBZK/operatieBRP. */ package nl.bzk.algemeenbrp.dal.domein.brp.entity; import java.io.Serializable; import java.util.Collection; import java.util.Collections; import java.util.HashMap; import java.util.LinkedHashSet; import java.util.Map; import java.util.Set; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.EntityListeners; import javax.persistence.FetchType; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.JoinColumn; import javax.persistence.ManyToOne; import javax.persistence.OneToMany; import javax.persistence.SequenceGenerator; import javax.persistence.Table; import javax.persistence.UniqueConstraint; import nl.bzk.algemeenbrp.dal.domein.brp.annotation.IndicatieActueelEnGeldig; import nl.bzk.algemeenbrp.dal.domein.brp.util.ValidationUtils; /** * The persistent class for the persverificatie database table. */ @Entity @EntityListeners(GegevenInOnderzoekListener.class) @Table(name = "persverificatie", schema = "kern", uniqueConstraints = @UniqueConstraint(columnNames = {"id"})) public class PersoonVerificatie extends AbstractEntiteit implements SubRootEntiteit, Serializable { private static final long serialVersionUID = 1L; @Id @SequenceGenerator(name = "persverificatie_id_generator", sequenceName = "kern.seq_persverificatie", allocationSize = 1) @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "persverificatie_id_generator") @Column(nullable = false) private Long id; @Column(name = "dat") private Integer datum; // bi-directional many-to-one association to PersoonVerificatieHistorie @IndicatieActueelEnGeldig(naam = "isActueelEnGeldig") @OneToMany(fetch = FetchType.LAZY, mappedBy = "persoonVerificatie", cascade = {CascadeType.PERSIST, CascadeType.MERGE, CascadeType.REMOVE}, orphanRemoval = true) private final Set<PersoonVerificatieHistorie> persoonVerificatieHistorieSet = new LinkedHashSet<>(0); // bi-directional many-to-one association to Persoon @ManyToOne(fetch = FetchType.LAZY, cascade = {CascadeType.PERSIST, CascadeType.MERGE}) @JoinColumn(name = "pers", nullable = false) private Persoon persoon; @ManyToOne(fetch = FetchType.EAGER) @JoinColumn(name = "partij", nullable = false) private Partij partij; @Column(name = "srt", nullable = false) private String soortVerificatie; @Column(name = "indag", nullable = false) private boolean isActueelEnGeldig; /** * JPA default constructor. */ protected PersoonVerificatie() {} /** * Maak een nieuwe persoon verificatie. * * @param persoon persoon * @param partij partij * @param soortVerificatie de soort verificatie */ public PersoonVerificatie(final Persoon persoon, final Partij partij, final String soortVerificatie) { setPersoon(persoon); setPartij(partij); setSoortVerificatie(soortVerificatie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaEntiteit#getId() */ @Override public Long getId() { return id; } /** * Zet de waarden voor id van PersoonVerificatie. * * @param id de nieuwe waarde voor id van PersoonVerificatie */ public void setId(final Long id) { this.id = id; } /** * Geef de waarde van datum van PersoonVerificatie. * * @return de waarde van datum van PersoonVerificatie */ public Integer getDatum() { return datum; } /** * Zet de waarden voor datum van PersoonVerificatie. * * @param datum de nieuwe waarde voor datum van PersoonVerificatie */ public void setDatum(final Integer datum) { this.datum = datum; } /** * Geef de waarde van persoon verificatie historie set van PersoonVerificatie. * * @return de waarde van persoon verificatie historie set van PersoonVerificatie */ public Set<PersoonVerificatieHistorie> getPersoonVerificatieHistorieSet() { return persoonVerificatieHistorieSet; } /** * Toevoegen van een persoon verificatie historie. * * @param persoonVerificatieHistorie persoon verificatie historie */ public void addPersoonVerificatieHistorie(final PersoonVerificatieHistorie persoonVerificatieHistorie) { persoonVerificatieHistorie.setPersoonVerificatie(this); persoonVerificatieHistorieSet.add(persoonVerificatieHistorie); } /* * (non-Javadoc) * * @see nl.bzk.algemeen.dal.domein.brp.kern.entity.DeltaSubRootEntiteit#getPersoon() */ @Override public Persoon getPersoon() { return persoon; } /** * Zet de waarden voor persoon van PersoonVerificatie. * * @param persoon de nieuwe waarde voor persoon van PersoonVerificatie */ public void setPersoon(final Persoon persoon) { ValidationUtils.controleerOpNullWaarden("persoon mag niet null zijn", persoon); this.persoon = persoon; } /** * Geef de waarde van partij van PersoonVerificatie. * * @return de waarde van partij van PersoonVerificatie */ public Partij getPartij() { return partij; } /** * Zet de waarden voor partij van PersoonVerificatie. * * @param partij de nieuwe waarde voor partij van PersoonVerificatie */ public void setPartij(final Partij partij) { ValidationUtils.controleerOpNullWaarden("partij mag niet null zijn", partij); this.partij = partij; } /** * Geef de waarde van soort verificatie van PersoonVerificatie. * * @return de waarde van soort verificatie van PersoonVerificatie */ public String getSoortVerificatie() { return soortVerificatie; } /** * Zet de waarden voor soort verificatie van PersoonVerificatie. * * @param soortVerificatie de nieuwe waarde voor soort verificatie van PersoonVerificatie */ public void setSoortVerificatie(final String soortVerificatie) { ValidationUtils.controleerOpNullWaarden("Soort verificatie mag niet null zijn", soortVerificatie); ValidationUtils.controleerOpLegeWaarden("Soort verificatie mag niet leeg zijn", soortVerificatie); this.soortVerificatie = soortVerificatie; } /** * Geef de waarde van isActueelEnGeldig. * * @return isActueelEnGeldig */ public boolean isActueelEnGeldig() { return isActueelEnGeldig; } /** * Zet de waarde<SUF>*/ public void setActueelEnGeldig(final boolean actueelEnGeldig) { isActueelEnGeldig = actueelEnGeldig; } @Override public Map<String, Collection<FormeleHistorie>> verzamelHistorie() { final Map<String, Collection<FormeleHistorie>> result = new HashMap<>(); result.put("persoonVerificatieHistorieSet", Collections.unmodifiableSet(persoonVerificatieHistorieSet)); return result; } }
202196_0
package week6.voteMachine.gui; import java.awt.Container; import java.awt.FlowLayout; import java.util.Map; import java.util.Observable; import java.util.Observer; import java.util.Set; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import week6.voteMachine.VoteList; /** * P2 prac wk3. * UitslagJFrame: GUI voor een Uitslag. * @author Arend Rensink en Theo Ruys * @version 2005.02.15 */ public class ResultJFrame extends JFrame { // Grafische componenten private JTextArea resultField; private JLabel messageLabel; /** Construeert een UitslagJFrame die een gegeven uitslag observeert. */ public ResultJFrame(VoteGUIView view) { // Initialisatie grafische componenten super("Result"); Container cc = getContentPane(); cc.setLayout(new FlowLayout()); messageLabel = new JLabel("Votes:"); cc.add(messageLabel); resultField = new JTextArea("", 10, 20); resultField.setEditable(false); cc.add(resultField); setSize(250, 255); } /** Zet de uitslag op het tekstveld, met 1 regel per partij. */ public void update(Map<String,Integer> votes) { resultField.setText(""); for(Map.Entry<String,Integer> entry: votes.entrySet()){ resultField.append(entry.getKey() + ": " + entry.getValue() + "\n"); } } }
MartijnSlot/Eclipse-workspace-Nedap-University
ss/week6/voteMachine/gui/ResultJFrame.java
403
/** * P2 prac wk3. * UitslagJFrame: GUI voor een Uitslag. * @author Arend Rensink en Theo Ruys * @version 2005.02.15 */
block_comment
nl
package week6.voteMachine.gui; import java.awt.Container; import java.awt.FlowLayout; import java.util.Map; import java.util.Observable; import java.util.Observer; import java.util.Set; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import week6.voteMachine.VoteList; /** * P2 prac wk3.<SUF>*/ public class ResultJFrame extends JFrame { // Grafische componenten private JTextArea resultField; private JLabel messageLabel; /** Construeert een UitslagJFrame die een gegeven uitslag observeert. */ public ResultJFrame(VoteGUIView view) { // Initialisatie grafische componenten super("Result"); Container cc = getContentPane(); cc.setLayout(new FlowLayout()); messageLabel = new JLabel("Votes:"); cc.add(messageLabel); resultField = new JTextArea("", 10, 20); resultField.setEditable(false); cc.add(resultField); setSize(250, 255); } /** Zet de uitslag op het tekstveld, met 1 regel per partij. */ public void update(Map<String,Integer> votes) { resultField.setText(""); for(Map.Entry<String,Integer> entry: votes.entrySet()){ resultField.append(entry.getKey() + ": " + entry.getValue() + "\n"); } } }
202196_1
package week6.voteMachine.gui; import java.awt.Container; import java.awt.FlowLayout; import java.util.Map; import java.util.Observable; import java.util.Observer; import java.util.Set; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import week6.voteMachine.VoteList; /** * P2 prac wk3. * UitslagJFrame: GUI voor een Uitslag. * @author Arend Rensink en Theo Ruys * @version 2005.02.15 */ public class ResultJFrame extends JFrame { // Grafische componenten private JTextArea resultField; private JLabel messageLabel; /** Construeert een UitslagJFrame die een gegeven uitslag observeert. */ public ResultJFrame(VoteGUIView view) { // Initialisatie grafische componenten super("Result"); Container cc = getContentPane(); cc.setLayout(new FlowLayout()); messageLabel = new JLabel("Votes:"); cc.add(messageLabel); resultField = new JTextArea("", 10, 20); resultField.setEditable(false); cc.add(resultField); setSize(250, 255); } /** Zet de uitslag op het tekstveld, met 1 regel per partij. */ public void update(Map<String,Integer> votes) { resultField.setText(""); for(Map.Entry<String,Integer> entry: votes.entrySet()){ resultField.append(entry.getKey() + ": " + entry.getValue() + "\n"); } } }
MartijnSlot/Eclipse-workspace-Nedap-University
ss/week6/voteMachine/gui/ResultJFrame.java
403
/** Construeert een UitslagJFrame die een gegeven uitslag observeert. */
block_comment
nl
package week6.voteMachine.gui; import java.awt.Container; import java.awt.FlowLayout; import java.util.Map; import java.util.Observable; import java.util.Observer; import java.util.Set; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import week6.voteMachine.VoteList; /** * P2 prac wk3. * UitslagJFrame: GUI voor een Uitslag. * @author Arend Rensink en Theo Ruys * @version 2005.02.15 */ public class ResultJFrame extends JFrame { // Grafische componenten private JTextArea resultField; private JLabel messageLabel; /** Construeert een UitslagJFrame<SUF>*/ public ResultJFrame(VoteGUIView view) { // Initialisatie grafische componenten super("Result"); Container cc = getContentPane(); cc.setLayout(new FlowLayout()); messageLabel = new JLabel("Votes:"); cc.add(messageLabel); resultField = new JTextArea("", 10, 20); resultField.setEditable(false); cc.add(resultField); setSize(250, 255); } /** Zet de uitslag op het tekstveld, met 1 regel per partij. */ public void update(Map<String,Integer> votes) { resultField.setText(""); for(Map.Entry<String,Integer> entry: votes.entrySet()){ resultField.append(entry.getKey() + ": " + entry.getValue() + "\n"); } } }
202196_3
package week6.voteMachine.gui; import java.awt.Container; import java.awt.FlowLayout; import java.util.Map; import java.util.Observable; import java.util.Observer; import java.util.Set; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import week6.voteMachine.VoteList; /** * P2 prac wk3. * UitslagJFrame: GUI voor een Uitslag. * @author Arend Rensink en Theo Ruys * @version 2005.02.15 */ public class ResultJFrame extends JFrame { // Grafische componenten private JTextArea resultField; private JLabel messageLabel; /** Construeert een UitslagJFrame die een gegeven uitslag observeert. */ public ResultJFrame(VoteGUIView view) { // Initialisatie grafische componenten super("Result"); Container cc = getContentPane(); cc.setLayout(new FlowLayout()); messageLabel = new JLabel("Votes:"); cc.add(messageLabel); resultField = new JTextArea("", 10, 20); resultField.setEditable(false); cc.add(resultField); setSize(250, 255); } /** Zet de uitslag op het tekstveld, met 1 regel per partij. */ public void update(Map<String,Integer> votes) { resultField.setText(""); for(Map.Entry<String,Integer> entry: votes.entrySet()){ resultField.append(entry.getKey() + ": " + entry.getValue() + "\n"); } } }
MartijnSlot/Eclipse-workspace-Nedap-University
ss/week6/voteMachine/gui/ResultJFrame.java
403
/** Zet de uitslag op het tekstveld, met 1 regel per partij. */
block_comment
nl
package week6.voteMachine.gui; import java.awt.Container; import java.awt.FlowLayout; import java.util.Map; import java.util.Observable; import java.util.Observer; import java.util.Set; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JTextArea; import week6.voteMachine.VoteList; /** * P2 prac wk3. * UitslagJFrame: GUI voor een Uitslag. * @author Arend Rensink en Theo Ruys * @version 2005.02.15 */ public class ResultJFrame extends JFrame { // Grafische componenten private JTextArea resultField; private JLabel messageLabel; /** Construeert een UitslagJFrame die een gegeven uitslag observeert. */ public ResultJFrame(VoteGUIView view) { // Initialisatie grafische componenten super("Result"); Container cc = getContentPane(); cc.setLayout(new FlowLayout()); messageLabel = new JLabel("Votes:"); cc.add(messageLabel); resultField = new JTextArea("", 10, 20); resultField.setEditable(false); cc.add(resultField); setSize(250, 255); } /** Zet de uitslag<SUF>*/ public void update(Map<String,Integer> votes) { resultField.setText(""); for(Map.Entry<String,Integer> entry: votes.entrySet()){ resultField.append(entry.getKey() + ": " + entry.getValue() + "\n"); } } }
202237_6
/* * Copyright (c) 2015 by k3b. */ package org.osmdroid.views.overlay; import android.graphics.Rect; import android.graphics.drawable.Drawable; import android.view.MotionEvent; import org.osmdroid.api.IGeoPoint; import org.osmdroid.views.MapView; import org.osmdroid.views.Projection; import java.util.List; /** * {@link org.osmdroid.views.overlay.ClickableIconOverlay} is a clickable icon item on the * {@link org.osmdroid.views.MapView} containing {@link org.osmdroid.api.IGeoPoint}, * {@link ClickableIconOverlay#getID() unique id} and * {@link ClickableIconOverlay#getData() data}. * <p> * Inspired by {@link Marker} but without the dependency to certain content and a popup-window * <p> * Created by k3b on 17.07.2015. */ public abstract class ClickableIconOverlay<DataType> extends IconOverlay { protected int mId = 0; private DataType mData = null; /** * save to be called in non-gui-thread */ protected ClickableIconOverlay(DataType data) { mData = data; } /** * @return true if click was handeled. */ abstract protected boolean onMarkerClicked(MapView mapView, int markerId, IGeoPoint makerPosition, DataType markerData); /** * used to recycle this */ public ClickableIconOverlay set(int id, IGeoPoint position, Drawable icon, DataType data) { set(position, icon); mId = id; mData = data; return this; } /** * From {@link Marker#hitTest(MotionEvent, MapView)} * * @return true, if this marker was taped. */ protected boolean hitTest(final MotionEvent event, final MapView mapView) { final Projection pj = mapView.getProjection(); // sometime at higher zoomlevels pj is null if ((mPosition == null) || (mPositionPixels == null) || (pj == null)) return false; pj.toPixels(mPosition, mPositionPixels); final Rect screenRect = pj.getIntrinsicScreenRect(); int x = -mPositionPixels.x + screenRect.left + (int) event.getX(); int y = -mPositionPixels.y + screenRect.top + (int) event.getY(); boolean hit = mIcon.getBounds().contains(x, y); return hit; } /** * @return true: tap handeled. No following overlay/map should handle the event. * false: tap not handeled. A following overlay/map should handle the event. */ @Override public boolean onSingleTapConfirmed(final MotionEvent event, final MapView mapView) { boolean touched = hitTest(event, mapView); if (touched) { return onMarkerClicked(mapView, mId, mPosition, mData); } else { return super.onSingleTapConfirmed(event, mapView); } } /** * By default does nothing ({@code return false}). If you handled the Event, return {@code true} * , otherwise return {@code false}. If you returned {@code true} none of the following Overlays * or the underlying {@link MapView} has the chance to handle this event. */ public boolean onLongPress(final MotionEvent event, final MapView mapView) { boolean touched = hitTest(event, mapView); if (touched) { return onMarkerLongPress(mapView, mId, mPosition, mData); } else { return super.onLongPress(event, mapView); } } protected boolean onMarkerLongPress(MapView mapView, int markerId, IGeoPoint geoPosition, Object data) { return false; } public static ClickableIconOverlay find(List<ClickableIconOverlay> list, int id) { for (ClickableIconOverlay item : list) { if ((item != null) && (item.mId == id)) return item; } return null; } public int getID() { return mId; } public DataType getData() { return mData; } }
osmdroid/osmdroid
osmdroid-android/src/main/java/org/osmdroid/views/overlay/ClickableIconOverlay.java
1,053
// sometime at higher zoomlevels pj is null
line_comment
nl
/* * Copyright (c) 2015 by k3b. */ package org.osmdroid.views.overlay; import android.graphics.Rect; import android.graphics.drawable.Drawable; import android.view.MotionEvent; import org.osmdroid.api.IGeoPoint; import org.osmdroid.views.MapView; import org.osmdroid.views.Projection; import java.util.List; /** * {@link org.osmdroid.views.overlay.ClickableIconOverlay} is a clickable icon item on the * {@link org.osmdroid.views.MapView} containing {@link org.osmdroid.api.IGeoPoint}, * {@link ClickableIconOverlay#getID() unique id} and * {@link ClickableIconOverlay#getData() data}. * <p> * Inspired by {@link Marker} but without the dependency to certain content and a popup-window * <p> * Created by k3b on 17.07.2015. */ public abstract class ClickableIconOverlay<DataType> extends IconOverlay { protected int mId = 0; private DataType mData = null; /** * save to be called in non-gui-thread */ protected ClickableIconOverlay(DataType data) { mData = data; } /** * @return true if click was handeled. */ abstract protected boolean onMarkerClicked(MapView mapView, int markerId, IGeoPoint makerPosition, DataType markerData); /** * used to recycle this */ public ClickableIconOverlay set(int id, IGeoPoint position, Drawable icon, DataType data) { set(position, icon); mId = id; mData = data; return this; } /** * From {@link Marker#hitTest(MotionEvent, MapView)} * * @return true, if this marker was taped. */ protected boolean hitTest(final MotionEvent event, final MapView mapView) { final Projection pj = mapView.getProjection(); // sometime at<SUF> if ((mPosition == null) || (mPositionPixels == null) || (pj == null)) return false; pj.toPixels(mPosition, mPositionPixels); final Rect screenRect = pj.getIntrinsicScreenRect(); int x = -mPositionPixels.x + screenRect.left + (int) event.getX(); int y = -mPositionPixels.y + screenRect.top + (int) event.getY(); boolean hit = mIcon.getBounds().contains(x, y); return hit; } /** * @return true: tap handeled. No following overlay/map should handle the event. * false: tap not handeled. A following overlay/map should handle the event. */ @Override public boolean onSingleTapConfirmed(final MotionEvent event, final MapView mapView) { boolean touched = hitTest(event, mapView); if (touched) { return onMarkerClicked(mapView, mId, mPosition, mData); } else { return super.onSingleTapConfirmed(event, mapView); } } /** * By default does nothing ({@code return false}). If you handled the Event, return {@code true} * , otherwise return {@code false}. If you returned {@code true} none of the following Overlays * or the underlying {@link MapView} has the chance to handle this event. */ public boolean onLongPress(final MotionEvent event, final MapView mapView) { boolean touched = hitTest(event, mapView); if (touched) { return onMarkerLongPress(mapView, mId, mPosition, mData); } else { return super.onLongPress(event, mapView); } } protected boolean onMarkerLongPress(MapView mapView, int markerId, IGeoPoint geoPosition, Object data) { return false; } public static ClickableIconOverlay find(List<ClickableIconOverlay> list, int id) { for (ClickableIconOverlay item : list) { if ((item != null) && (item.mId == id)) return item; } return null; } public int getID() { return mId; } public DataType getData() { return mData; } }
202272_7
/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via [email protected] or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.apps.form; import java.awt.Container; import java.awt.Cursor; import java.awt.Dialog.ModalityType; import java.awt.Dimension; import java.awt.Event; import java.awt.Frame; import java.awt.GraphicsConfiguration; import java.awt.Image; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.WindowAdapter; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.Properties; import java.util.logging.Level; import java.awt.Window; import javax.swing.JFrame; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.KeyStroke; import org.compiere.apps.AEnv; import org.compiere.apps.AGlassPane; import org.compiere.apps.AMenu; import org.compiere.apps.Help; import org.compiere.apps.WindowMenu; import org.compiere.model.MRole; import org.compiere.model.MUser; import org.compiere.process.ProcessInfo; import org.compiere.swing.CDialog; import org.compiere.swing.CFrame; import org.compiere.util.CLogger; import org.compiere.util.DB; import org.compiere.util.Env; import org.compiere.util.Trace; /** * Form Framework * * @author Jorg Janke * @version $Id: FormFrame.java,v 1.2 2006/07/30 00:51:28 jjanke Exp $ * * Colin Rooney 2007/03/20 RFE#1670185 & BUG#1684142 * Extend security to Info Queries * @author Yamel Senih, [email protected], ERPCyA http://www.erpcya.com * <li> FR [ 114 ] Change "Create From" UI for Form like Dialog in window without "hardcode" * @see https://github.com/adempiere/adempiere/issues/114 */ public class FormFrame implements ActionListener { /** * Create Form. * Need to call openForm * @param gc */ public FormFrame (int p_ParentWindowNo) { Frame owner = Env.getWindow(p_ParentWindowNo); if(p_ParentWindowNo == 0) { CFrame frame = new CFrame(owner.getGraphicsConfiguration()); frame.setGlassPane(m_glassPane); frame.addWindowListener(new java.awt.event.WindowAdapter() { public void windowOpened(java.awt.event.WindowEvent evt) { formWindowOpened(evt); } }); m_MainContent = frame; m_WindowNo = Env.createWindowNo (m_MainContent); } else { CDialog dialog = new CDialog(owner, true); dialog.setModalityType(ModalityType.DOCUMENT_MODAL); m_MainContent = dialog; m_WindowNo = p_ParentWindowNo; } try { jbInit(); createMenu(); } catch(Exception e) { log.log(Level.SEVERE, "", e); } } // FormFrame /** * Constuctor for create from previous frame * @param frame */ public FormFrame(CFrame frame) { m_MainContent = frame; p_AD_Form_ID = frame.getAD_Form_ID(); } private ProcessInfo m_pi; /** WindowNo */ private int m_WindowNo; /** The GlassPane */ private AGlassPane m_glassPane = new AGlassPane(); /** Description */ private String m_Description = null; /** Help */ private String m_Help = null; /** Menu Bar */ private JMenuBar menuBar = new JMenuBar(); /** The Panel to be displayed */ private FormPanel m_panel = null; /** Maximize Window */ public boolean m_maximize = false; /** Logger */ private static CLogger log = CLogger.getCLogger(FormFrame.class); /** Form ID */ private int p_AD_Form_ID = 0; // Yamel Senih FR [ 114 ] /** Container */ private Container m_MainContent = null; /** * Static Init * @throws Exception */ private void jbInit() throws Exception { setIconImage(org.adempiere.Adempiere.getImage16()); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setJMenuBar(menuBar); } // jbInit /** * Create Menu */ private void createMenu() { // File JMenu mFile = AEnv.getMenu("File"); menuBar.add(mFile); AEnv.addMenuItem("PrintScreen", null, KeyStroke.getKeyStroke(KeyEvent.VK_PRINTSCREEN, 0), mFile, this); AEnv.addMenuItem("ScreenShot", null, KeyStroke.getKeyStroke(KeyEvent.VK_PRINTSCREEN, Event.SHIFT_MASK), mFile, this); AEnv.addMenuItem("Report", null, KeyStroke.getKeyStroke(KeyEvent.VK_P, Event.ALT_MASK), mFile, this); mFile.addSeparator(); AEnv.addMenuItem("End", null, KeyStroke.getKeyStroke(KeyEvent.VK_X, Event.ALT_MASK), mFile, this); AEnv.addMenuItem("Exit", null, KeyStroke.getKeyStroke(KeyEvent.VK_X, Event.SHIFT_MASK+Event.ALT_MASK), mFile, this); // View JMenu mView = AEnv.getMenu("View"); menuBar.add(mView); if (MRole.getDefault().isAllow_Info_Product()) { AEnv.addMenuItem("InfoProduct", null, KeyStroke.getKeyStroke(KeyEvent.VK_I, Event.ALT_MASK), mView, this); } if (MRole.getDefault().isAllow_Info_BPartner()) { AEnv.addMenuItem("InfoBPartner", null, KeyStroke.getKeyStroke(KeyEvent.VK_I, Event.ALT_MASK+Event.CTRL_MASK), mView, this); } if (MRole.getDefault().isShowAcct() && MRole.getDefault().isAllow_Info_Account()) { AEnv.addMenuItem("InfoAccount", null, KeyStroke.getKeyStroke(KeyEvent.VK_I, Event.ALT_MASK+Event.CTRL_MASK), mView, this); } if (MRole.getDefault().isAllow_Info_Schedule()) { AEnv.addMenuItem("InfoSchedule", null, null, mView, this); } mView.addSeparator(); if (MRole.getDefault().isAllow_Info_Order()) { AEnv.addMenuItem("InfoOrder", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Invoice()) { AEnv.addMenuItem("InfoInvoice", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_InOut()) { AEnv.addMenuItem("InfoInOut", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Payment()) { AEnv.addMenuItem("InfoPayment", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_CashJournal()) { AEnv.addMenuItem("InfoCashLine", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Resource()) { AEnv.addMenuItem("InfoAssignment", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Asset()) { AEnv.addMenuItem("InfoAsset", "Info", null, mView, this); } // Tools JMenu mTools = AEnv.getMenu("Tools"); menuBar.add(mTools); AEnv.addMenuItem("Calculator", null, null, mTools, this); AEnv.addMenuItem("Calendar", null, null, mTools, this); AEnv.addMenuItem("Editor", null, null, mTools, this); MUser user = MUser.get(Env.getCtx()); if (user.isAdministrator()) AEnv.addMenuItem("Script", null, null, mTools, this); if (MRole.getDefault().isShowPreference()) { mTools.addSeparator(); AEnv.addMenuItem("Preference", null, null, mTools, this); } // Window AMenu aMenu = (AMenu)Env.getWindow(0); JMenu mWindow = new WindowMenu(aMenu.getWindowManager(), null); menuBar.add(mWindow); // Help JMenu mHelp = AEnv.getMenu("Help"); menuBar.add(mHelp); AEnv.addMenuItem("Help", "Help", KeyStroke.getKeyStroke(KeyEvent.VK_F1, 0), mHelp, this); AEnv.addMenuItem("Online", null, null, mHelp, this); AEnv.addMenuItem("EMailSupport", null, null, mHelp, this); AEnv.addMenuItem("About", null, null, mHelp, this); } // createMenu /** * Dispose */ public void dispose() { log.config(""); // recursive calls if (Trace.isCalledFrom("JFrame") && m_panel != null) // [x] close window pressed m_panel.dispose(); m_panel = null; Env.clearWinContext(m_WindowNo); getWindow().dispose(); } // dispose /** * Open Form * @param AD_Form_ID form * @return true if form opened */ public boolean openForm (int AD_Form_ID) { Properties ctx = Env.getCtx(); // String name = null; String className = null; String sql = "SELECT Name, Description, ClassName, Help FROM AD_Form WHERE AD_Form_ID=?"; boolean trl = !Env.isBaseLanguage(ctx, "AD_Form"); if (trl) sql = "SELECT t.Name, t.Description, f.ClassName, t.Help " + "FROM AD_Form f INNER JOIN AD_Form_Trl t" + " ON (f.AD_Form_ID=t.AD_Form_ID AND AD_Language=?)" + "WHERE f.AD_Form_ID=?"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, null); if (trl) { pstmt.setString(1, Env.getAD_Language(ctx)); pstmt.setInt(2, AD_Form_ID); } else pstmt.setInt(1, AD_Form_ID); rs = pstmt.executeQuery(); if (rs.next()) { name = rs.getString(1); m_Description = rs.getString(2); className = rs.getString(3); m_Help = rs.getString(4); } } catch (SQLException e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } if (className == null) return false; // return openForm(AD_Form_ID, className, name); } // openForm /** * Open Form * @param AD_Form_ID Form * @param className class name * @param name title * @return true if started */ protected boolean openForm (int AD_Form_ID, String className, String name) { log.info("AD_Form_ID=" + AD_Form_ID + " - Class=" + className); Properties ctx = Env.getCtx(); Env.setContext(ctx, m_WindowNo, "WindowName", name); setTitle(Env.getHeader(ctx, m_WindowNo)); try { // Create instance w/o parameters m_panel = (FormPanel)Class.forName(className).newInstance(); } catch (Exception e) { log.log(Level.SEVERE, "Class=" + className + ", AD_Form_ID=" + AD_Form_ID, e); return false; } // m_panel.init(m_WindowNo, this); p_AD_Form_ID = AD_Form_ID; return true; } // openForm /** * Get Form Panel * @return form panel */ public FormPanel getFormPanel() { return m_panel; } // getFormPanel /** * Action Listener * @param e event */ public void actionPerformed(ActionEvent e) { String cmd = e.getActionCommand(); if (cmd.equals("End")) dispose(); else if (cmd.equals("Help")) actionHelp(); else if (!AEnv.actionPerformed(cmd, m_WindowNo, m_MainContent)) log.log(Level.SEVERE, "Not handeled=" + cmd); } // actionPerformed /** * Show Help */ private void actionHelp() { StringBuffer sb = new StringBuffer(); if (m_Description != null && m_Description.length() > 0) sb.append("<h2>").append(m_Description).append("</h2>"); if (m_Help != null && m_Help.length() > 0) sb.append("<p>").append(m_Help); Help hlp = new Help (Env.getFrame(m_MainContent), getTitle(), sb.toString()); hlp.setVisible(true); } // actionHelp /************************************************************************* * Set Window Busy * @param busy busy */ public void setBusy (boolean busy) { if (busy == m_glassPane.isVisible()) return; log.info("Busy=" + busy); if (busy) setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); else setCursor(Cursor.getDefaultCursor()); m_glassPane.setMessage(null); m_glassPane.setVisible(busy); m_glassPane.requestFocus(); } // setBusy /** * Set Busy Message * @param AD_Message message */ public void setBusyMessage (String AD_Message) { m_glassPane.setMessage(AD_Message); } // setBusyMessage /** * Set and start Busy Counter * @param time in seconds */ public void setBusyTimer (int time) { m_glassPane.setBusyTimer (time); } // setBusyTimer /** * Set Maximize Window * @param max maximize */ public void setMaximize (boolean max) { m_maximize = max; } // setMaximize /** * Form Window Opened. * Maximize window if required * @param evt event */ private void formWindowOpened(java.awt.event.WindowEvent evt) { if (m_maximize == true) { ((CFrame) m_MainContent).setVisible(true); ((CFrame) m_MainContent).setExtendedState(JFrame.MAXIMIZED_BOTH); } } // formWindowOpened // Add window and tab no called from public void setProcessInfo(ProcessInfo pi) { m_pi = pi; } public ProcessInfo getProcessInfo() { return m_pi; } // End /** * Start Batch * @param process * @return running thread */ public Thread startBatch (final Runnable process) { Thread worker = new Thread() { public void run() { setBusy(true); process.run(); setBusy(false); } }; worker.start(); return worker; } // startBatch /** * @return Returns the AD_Form_ID. */ public int getAD_Form_ID () { return p_AD_Form_ID; } // getAD_Window_ID /** * @return Returns the manuBar */ public JMenuBar getMenu() { return menuBar; } /** * Set Title to Frame * @param p_Title */ public void setTitle(String p_Title) { if(m_MainContent instanceof CFrame) { ((CFrame) m_MainContent).setTitle(p_Title); } else { ((CDialog) m_MainContent).setTitle(p_Title); } } /** * Get Title * @return */ public String getTitle() { if(m_MainContent instanceof CFrame) { return ((CFrame) m_MainContent).getTitle(); } else { return ((CDialog) m_MainContent).getTitle(); } } /** * Verify if is frame * @return */ public boolean isDialog() { return !(m_MainContent instanceof CFrame); } /** * Send to Front */ public void toFront() { getWindow().toFront(); } /** * Get Container * @return */ public Container getContainer() { return m_MainContent; } /** * Get parse to Window * @return */ public Window getWindow() { return ((Window) m_MainContent); } /** * Get Frame * @return */ public CFrame getCFrame() { if(!isDialog()) { CFrame frame = ((CFrame) m_MainContent); // Set Form ID frame.setAD_Form_ID(p_AD_Form_ID); return frame; } // Default return null; } /** * Get Dialog * @return */ public CDialog getCDialog() { if(isDialog()) { return ((CDialog) m_MainContent); } // Default return null; } /** * Support to pack */ public void pack() { getWindow().pack(); } /** * Return getContentPanel * @return */ public Container getContentPane() { return getContainer(); } /** * Support to setIconImage * @param p_Image */ public void setIconImage(Image p_Image) { if(!isDialog()) { ((CFrame) m_MainContent).setIconImage(p_Image); } else { ((CDialog) m_MainContent).setIconImage(p_Image); } } /** * Support to setDefaultCloseOperation * @param p_CloseOperetion */ public void setDefaultCloseOperation(int p_CloseOperetion) { if(!isDialog()) { ((CFrame) m_MainContent).setDefaultCloseOperation(p_CloseOperetion); } else { ((CDialog) m_MainContent).setDefaultCloseOperation(p_CloseOperetion); } } /** * Support to setJMenuBar * @param p_MenuBar */ public void setJMenuBar(JMenuBar p_MenuBar) { if(!isDialog()) { ((CFrame) m_MainContent).setJMenuBar(p_MenuBar); } else { ((CDialog) m_MainContent).setJMenuBar(p_MenuBar); } } /** * Add support to setCursor * @param cursor */ public void setCursor(Cursor cursor) { getWindow().setCursor(cursor); } /** * Add support to setSize * @param size */ public void setSize(Dimension size) { getWindow().setSize(size); } /** * Add support to getPreferredSize * @return */ public Dimension getPreferredSize() { return getWindow().getPreferredSize(); } /** * Add Support to getGraphicsConfiguration * @return */ public GraphicsConfiguration getGraphicsConfiguration() { return getWindow().getGraphicsConfiguration(); } /** * Add support to setSize * @param width * @param height */ public void setSize(int width, int height) { getWindow().setSize(width, height); } /** * Add support to addWindowListener * @param adapter */ public void addWindowListener(WindowAdapter adapter) { getWindow().addWindowListener(adapter); } /** * Add support to setVisible Nethod * @param visible */ public void setVisible(boolean visible) { getWindow().setVisible(visible); } } // FormFrame
adempiere/adempiere
client/src/org/compiere/apps/form/FormFrame.java
6,015
/** Help */
block_comment
nl
/****************************************************************************** * Product: Adempiere ERP & CRM Smart Business Solution * * Copyright (C) 1999-2006 ComPiere, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * * For the text or an alternative of this public license, you may reach us * * ComPiere, Inc., 2620 Augustine Dr. #245, Santa Clara, CA 95054, USA * * or via [email protected] or http://www.compiere.org/license.html * *****************************************************************************/ package org.compiere.apps.form; import java.awt.Container; import java.awt.Cursor; import java.awt.Dialog.ModalityType; import java.awt.Dimension; import java.awt.Event; import java.awt.Frame; import java.awt.GraphicsConfiguration; import java.awt.Image; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.KeyEvent; import java.awt.event.WindowAdapter; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.Properties; import java.util.logging.Level; import java.awt.Window; import javax.swing.JFrame; import javax.swing.JMenu; import javax.swing.JMenuBar; import javax.swing.KeyStroke; import org.compiere.apps.AEnv; import org.compiere.apps.AGlassPane; import org.compiere.apps.AMenu; import org.compiere.apps.Help; import org.compiere.apps.WindowMenu; import org.compiere.model.MRole; import org.compiere.model.MUser; import org.compiere.process.ProcessInfo; import org.compiere.swing.CDialog; import org.compiere.swing.CFrame; import org.compiere.util.CLogger; import org.compiere.util.DB; import org.compiere.util.Env; import org.compiere.util.Trace; /** * Form Framework * * @author Jorg Janke * @version $Id: FormFrame.java,v 1.2 2006/07/30 00:51:28 jjanke Exp $ * * Colin Rooney 2007/03/20 RFE#1670185 & BUG#1684142 * Extend security to Info Queries * @author Yamel Senih, [email protected], ERPCyA http://www.erpcya.com * <li> FR [ 114 ] Change "Create From" UI for Form like Dialog in window without "hardcode" * @see https://github.com/adempiere/adempiere/issues/114 */ public class FormFrame implements ActionListener { /** * Create Form. * Need to call openForm * @param gc */ public FormFrame (int p_ParentWindowNo) { Frame owner = Env.getWindow(p_ParentWindowNo); if(p_ParentWindowNo == 0) { CFrame frame = new CFrame(owner.getGraphicsConfiguration()); frame.setGlassPane(m_glassPane); frame.addWindowListener(new java.awt.event.WindowAdapter() { public void windowOpened(java.awt.event.WindowEvent evt) { formWindowOpened(evt); } }); m_MainContent = frame; m_WindowNo = Env.createWindowNo (m_MainContent); } else { CDialog dialog = new CDialog(owner, true); dialog.setModalityType(ModalityType.DOCUMENT_MODAL); m_MainContent = dialog; m_WindowNo = p_ParentWindowNo; } try { jbInit(); createMenu(); } catch(Exception e) { log.log(Level.SEVERE, "", e); } } // FormFrame /** * Constuctor for create from previous frame * @param frame */ public FormFrame(CFrame frame) { m_MainContent = frame; p_AD_Form_ID = frame.getAD_Form_ID(); } private ProcessInfo m_pi; /** WindowNo */ private int m_WindowNo; /** The GlassPane */ private AGlassPane m_glassPane = new AGlassPane(); /** Description */ private String m_Description = null; /** Help <SUF>*/ private String m_Help = null; /** Menu Bar */ private JMenuBar menuBar = new JMenuBar(); /** The Panel to be displayed */ private FormPanel m_panel = null; /** Maximize Window */ public boolean m_maximize = false; /** Logger */ private static CLogger log = CLogger.getCLogger(FormFrame.class); /** Form ID */ private int p_AD_Form_ID = 0; // Yamel Senih FR [ 114 ] /** Container */ private Container m_MainContent = null; /** * Static Init * @throws Exception */ private void jbInit() throws Exception { setIconImage(org.adempiere.Adempiere.getImage16()); setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setJMenuBar(menuBar); } // jbInit /** * Create Menu */ private void createMenu() { // File JMenu mFile = AEnv.getMenu("File"); menuBar.add(mFile); AEnv.addMenuItem("PrintScreen", null, KeyStroke.getKeyStroke(KeyEvent.VK_PRINTSCREEN, 0), mFile, this); AEnv.addMenuItem("ScreenShot", null, KeyStroke.getKeyStroke(KeyEvent.VK_PRINTSCREEN, Event.SHIFT_MASK), mFile, this); AEnv.addMenuItem("Report", null, KeyStroke.getKeyStroke(KeyEvent.VK_P, Event.ALT_MASK), mFile, this); mFile.addSeparator(); AEnv.addMenuItem("End", null, KeyStroke.getKeyStroke(KeyEvent.VK_X, Event.ALT_MASK), mFile, this); AEnv.addMenuItem("Exit", null, KeyStroke.getKeyStroke(KeyEvent.VK_X, Event.SHIFT_MASK+Event.ALT_MASK), mFile, this); // View JMenu mView = AEnv.getMenu("View"); menuBar.add(mView); if (MRole.getDefault().isAllow_Info_Product()) { AEnv.addMenuItem("InfoProduct", null, KeyStroke.getKeyStroke(KeyEvent.VK_I, Event.ALT_MASK), mView, this); } if (MRole.getDefault().isAllow_Info_BPartner()) { AEnv.addMenuItem("InfoBPartner", null, KeyStroke.getKeyStroke(KeyEvent.VK_I, Event.ALT_MASK+Event.CTRL_MASK), mView, this); } if (MRole.getDefault().isShowAcct() && MRole.getDefault().isAllow_Info_Account()) { AEnv.addMenuItem("InfoAccount", null, KeyStroke.getKeyStroke(KeyEvent.VK_I, Event.ALT_MASK+Event.CTRL_MASK), mView, this); } if (MRole.getDefault().isAllow_Info_Schedule()) { AEnv.addMenuItem("InfoSchedule", null, null, mView, this); } mView.addSeparator(); if (MRole.getDefault().isAllow_Info_Order()) { AEnv.addMenuItem("InfoOrder", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Invoice()) { AEnv.addMenuItem("InfoInvoice", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_InOut()) { AEnv.addMenuItem("InfoInOut", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Payment()) { AEnv.addMenuItem("InfoPayment", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_CashJournal()) { AEnv.addMenuItem("InfoCashLine", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Resource()) { AEnv.addMenuItem("InfoAssignment", "Info", null, mView, this); } if (MRole.getDefault().isAllow_Info_Asset()) { AEnv.addMenuItem("InfoAsset", "Info", null, mView, this); } // Tools JMenu mTools = AEnv.getMenu("Tools"); menuBar.add(mTools); AEnv.addMenuItem("Calculator", null, null, mTools, this); AEnv.addMenuItem("Calendar", null, null, mTools, this); AEnv.addMenuItem("Editor", null, null, mTools, this); MUser user = MUser.get(Env.getCtx()); if (user.isAdministrator()) AEnv.addMenuItem("Script", null, null, mTools, this); if (MRole.getDefault().isShowPreference()) { mTools.addSeparator(); AEnv.addMenuItem("Preference", null, null, mTools, this); } // Window AMenu aMenu = (AMenu)Env.getWindow(0); JMenu mWindow = new WindowMenu(aMenu.getWindowManager(), null); menuBar.add(mWindow); // Help JMenu mHelp = AEnv.getMenu("Help"); menuBar.add(mHelp); AEnv.addMenuItem("Help", "Help", KeyStroke.getKeyStroke(KeyEvent.VK_F1, 0), mHelp, this); AEnv.addMenuItem("Online", null, null, mHelp, this); AEnv.addMenuItem("EMailSupport", null, null, mHelp, this); AEnv.addMenuItem("About", null, null, mHelp, this); } // createMenu /** * Dispose */ public void dispose() { log.config(""); // recursive calls if (Trace.isCalledFrom("JFrame") && m_panel != null) // [x] close window pressed m_panel.dispose(); m_panel = null; Env.clearWinContext(m_WindowNo); getWindow().dispose(); } // dispose /** * Open Form * @param AD_Form_ID form * @return true if form opened */ public boolean openForm (int AD_Form_ID) { Properties ctx = Env.getCtx(); // String name = null; String className = null; String sql = "SELECT Name, Description, ClassName, Help FROM AD_Form WHERE AD_Form_ID=?"; boolean trl = !Env.isBaseLanguage(ctx, "AD_Form"); if (trl) sql = "SELECT t.Name, t.Description, f.ClassName, t.Help " + "FROM AD_Form f INNER JOIN AD_Form_Trl t" + " ON (f.AD_Form_ID=t.AD_Form_ID AND AD_Language=?)" + "WHERE f.AD_Form_ID=?"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement (sql, null); if (trl) { pstmt.setString(1, Env.getAD_Language(ctx)); pstmt.setInt(2, AD_Form_ID); } else pstmt.setInt(1, AD_Form_ID); rs = pstmt.executeQuery(); if (rs.next()) { name = rs.getString(1); m_Description = rs.getString(2); className = rs.getString(3); m_Help = rs.getString(4); } } catch (SQLException e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } if (className == null) return false; // return openForm(AD_Form_ID, className, name); } // openForm /** * Open Form * @param AD_Form_ID Form * @param className class name * @param name title * @return true if started */ protected boolean openForm (int AD_Form_ID, String className, String name) { log.info("AD_Form_ID=" + AD_Form_ID + " - Class=" + className); Properties ctx = Env.getCtx(); Env.setContext(ctx, m_WindowNo, "WindowName", name); setTitle(Env.getHeader(ctx, m_WindowNo)); try { // Create instance w/o parameters m_panel = (FormPanel)Class.forName(className).newInstance(); } catch (Exception e) { log.log(Level.SEVERE, "Class=" + className + ", AD_Form_ID=" + AD_Form_ID, e); return false; } // m_panel.init(m_WindowNo, this); p_AD_Form_ID = AD_Form_ID; return true; } // openForm /** * Get Form Panel * @return form panel */ public FormPanel getFormPanel() { return m_panel; } // getFormPanel /** * Action Listener * @param e event */ public void actionPerformed(ActionEvent e) { String cmd = e.getActionCommand(); if (cmd.equals("End")) dispose(); else if (cmd.equals("Help")) actionHelp(); else if (!AEnv.actionPerformed(cmd, m_WindowNo, m_MainContent)) log.log(Level.SEVERE, "Not handeled=" + cmd); } // actionPerformed /** * Show Help */ private void actionHelp() { StringBuffer sb = new StringBuffer(); if (m_Description != null && m_Description.length() > 0) sb.append("<h2>").append(m_Description).append("</h2>"); if (m_Help != null && m_Help.length() > 0) sb.append("<p>").append(m_Help); Help hlp = new Help (Env.getFrame(m_MainContent), getTitle(), sb.toString()); hlp.setVisible(true); } // actionHelp /************************************************************************* * Set Window Busy * @param busy busy */ public void setBusy (boolean busy) { if (busy == m_glassPane.isVisible()) return; log.info("Busy=" + busy); if (busy) setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR)); else setCursor(Cursor.getDefaultCursor()); m_glassPane.setMessage(null); m_glassPane.setVisible(busy); m_glassPane.requestFocus(); } // setBusy /** * Set Busy Message * @param AD_Message message */ public void setBusyMessage (String AD_Message) { m_glassPane.setMessage(AD_Message); } // setBusyMessage /** * Set and start Busy Counter * @param time in seconds */ public void setBusyTimer (int time) { m_glassPane.setBusyTimer (time); } // setBusyTimer /** * Set Maximize Window * @param max maximize */ public void setMaximize (boolean max) { m_maximize = max; } // setMaximize /** * Form Window Opened. * Maximize window if required * @param evt event */ private void formWindowOpened(java.awt.event.WindowEvent evt) { if (m_maximize == true) { ((CFrame) m_MainContent).setVisible(true); ((CFrame) m_MainContent).setExtendedState(JFrame.MAXIMIZED_BOTH); } } // formWindowOpened // Add window and tab no called from public void setProcessInfo(ProcessInfo pi) { m_pi = pi; } public ProcessInfo getProcessInfo() { return m_pi; } // End /** * Start Batch * @param process * @return running thread */ public Thread startBatch (final Runnable process) { Thread worker = new Thread() { public void run() { setBusy(true); process.run(); setBusy(false); } }; worker.start(); return worker; } // startBatch /** * @return Returns the AD_Form_ID. */ public int getAD_Form_ID () { return p_AD_Form_ID; } // getAD_Window_ID /** * @return Returns the manuBar */ public JMenuBar getMenu() { return menuBar; } /** * Set Title to Frame * @param p_Title */ public void setTitle(String p_Title) { if(m_MainContent instanceof CFrame) { ((CFrame) m_MainContent).setTitle(p_Title); } else { ((CDialog) m_MainContent).setTitle(p_Title); } } /** * Get Title * @return */ public String getTitle() { if(m_MainContent instanceof CFrame) { return ((CFrame) m_MainContent).getTitle(); } else { return ((CDialog) m_MainContent).getTitle(); } } /** * Verify if is frame * @return */ public boolean isDialog() { return !(m_MainContent instanceof CFrame); } /** * Send to Front */ public void toFront() { getWindow().toFront(); } /** * Get Container * @return */ public Container getContainer() { return m_MainContent; } /** * Get parse to Window * @return */ public Window getWindow() { return ((Window) m_MainContent); } /** * Get Frame * @return */ public CFrame getCFrame() { if(!isDialog()) { CFrame frame = ((CFrame) m_MainContent); // Set Form ID frame.setAD_Form_ID(p_AD_Form_ID); return frame; } // Default return null; } /** * Get Dialog * @return */ public CDialog getCDialog() { if(isDialog()) { return ((CDialog) m_MainContent); } // Default return null; } /** * Support to pack */ public void pack() { getWindow().pack(); } /** * Return getContentPanel * @return */ public Container getContentPane() { return getContainer(); } /** * Support to setIconImage * @param p_Image */ public void setIconImage(Image p_Image) { if(!isDialog()) { ((CFrame) m_MainContent).setIconImage(p_Image); } else { ((CDialog) m_MainContent).setIconImage(p_Image); } } /** * Support to setDefaultCloseOperation * @param p_CloseOperetion */ public void setDefaultCloseOperation(int p_CloseOperetion) { if(!isDialog()) { ((CFrame) m_MainContent).setDefaultCloseOperation(p_CloseOperetion); } else { ((CDialog) m_MainContent).setDefaultCloseOperation(p_CloseOperetion); } } /** * Support to setJMenuBar * @param p_MenuBar */ public void setJMenuBar(JMenuBar p_MenuBar) { if(!isDialog()) { ((CFrame) m_MainContent).setJMenuBar(p_MenuBar); } else { ((CDialog) m_MainContent).setJMenuBar(p_MenuBar); } } /** * Add support to setCursor * @param cursor */ public void setCursor(Cursor cursor) { getWindow().setCursor(cursor); } /** * Add support to setSize * @param size */ public void setSize(Dimension size) { getWindow().setSize(size); } /** * Add support to getPreferredSize * @return */ public Dimension getPreferredSize() { return getWindow().getPreferredSize(); } /** * Add Support to getGraphicsConfiguration * @return */ public GraphicsConfiguration getGraphicsConfiguration() { return getWindow().getGraphicsConfiguration(); } /** * Add support to setSize * @param width * @param height */ public void setSize(int width, int height) { getWindow().setSize(width, height); } /** * Add support to addWindowListener * @param adapter */ public void addWindowListener(WindowAdapter adapter) { getWindow().addWindowListener(adapter); } /** * Add support to setVisible Nethod * @param visible */ public void setVisible(boolean visible) { getWindow().setVisible(visible); } } // FormFrame
202275_2
/********************************************************************** * * Copyright (c) 2004 Olaf Willuhn * All rights reserved. * * This software is copyrighted work licensed under the terms of the * Jameica License. Please consult the file "LICENSE" for details. * **********************************************************************/ package de.willuhn.jameica.hbci.gui.action; import de.willuhn.jameica.gui.Action; import de.willuhn.jameica.gui.GUI; import de.willuhn.jameica.hbci.rmi.Konto; import de.willuhn.jameica.hbci.rmi.Umsatz; import de.willuhn.logging.Logger; import de.willuhn.util.ApplicationException; /** * Action fuer die Detail-Ansicht eines Umsatzes. */ public class UmsatzDetail implements Action { /** * Erwartet ein Objekt vom Typ <code>Umsatz</code> im Context. * @see de.willuhn.jameica.gui.Action#handleAction(java.lang.Object) */ public void handleAction(Object context) throws ApplicationException { // Falls die Aktion aus einem Tree heraus aufgerufen wurde // koennte es sich um einen "UmsatzTyp" handeln. Den ignorieren // wir. if (!(context instanceof Umsatz)) return; // Automatisch in die Edit-View wechseln, falls es ein Offline-Konto ist // Siehe BUGZILLA 989 try { Umsatz u = (Umsatz) context; Konto k = u.getKonto(); if (k != null && k.hasFlag(Konto.FLAG_OFFLINE)) { new UmsatzDetailEdit().handleAction(context); return; } } catch (Exception e) { Logger.error("unable to switch to edit view, opening read only view",e); } GUI.startView(de.willuhn.jameica.hbci.gui.views.UmsatzDetail.class,context); } }
willuhn/hibiscus
src/de/willuhn/jameica/hbci/gui/action/UmsatzDetail.java
498
/** * Erwartet ein Objekt vom Typ <code>Umsatz</code> im Context. * @see de.willuhn.jameica.gui.Action#handleAction(java.lang.Object) */
block_comment
nl
/********************************************************************** * * Copyright (c) 2004 Olaf Willuhn * All rights reserved. * * This software is copyrighted work licensed under the terms of the * Jameica License. Please consult the file "LICENSE" for details. * **********************************************************************/ package de.willuhn.jameica.hbci.gui.action; import de.willuhn.jameica.gui.Action; import de.willuhn.jameica.gui.GUI; import de.willuhn.jameica.hbci.rmi.Konto; import de.willuhn.jameica.hbci.rmi.Umsatz; import de.willuhn.logging.Logger; import de.willuhn.util.ApplicationException; /** * Action fuer die Detail-Ansicht eines Umsatzes. */ public class UmsatzDetail implements Action { /** * Erwartet ein Objekt<SUF>*/ public void handleAction(Object context) throws ApplicationException { // Falls die Aktion aus einem Tree heraus aufgerufen wurde // koennte es sich um einen "UmsatzTyp" handeln. Den ignorieren // wir. if (!(context instanceof Umsatz)) return; // Automatisch in die Edit-View wechseln, falls es ein Offline-Konto ist // Siehe BUGZILLA 989 try { Umsatz u = (Umsatz) context; Konto k = u.getKonto(); if (k != null && k.hasFlag(Konto.FLAG_OFFLINE)) { new UmsatzDetailEdit().handleAction(context); return; } } catch (Exception e) { Logger.error("unable to switch to edit view, opening read only view",e); } GUI.startView(de.willuhn.jameica.hbci.gui.views.UmsatzDetail.class,context); } }
202298_33
package twilightforest.world.components.structures.lichtower; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.nbt.CompoundTag; import net.minecraft.util.RandomSource; import net.minecraft.world.entity.EntityType; import net.minecraft.world.level.ChunkPos; import net.minecraft.world.level.StructureManager; import net.minecraft.world.level.WorldGenLevel; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.PipeBlock; import net.minecraft.world.level.block.Rotation; import net.minecraft.world.level.block.SlabBlock; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.state.properties.SlabType; import net.minecraft.world.level.chunk.ChunkGenerator; import net.minecraft.world.level.levelgen.structure.BoundingBox; import net.minecraft.world.level.levelgen.structure.StructurePiece; import net.minecraft.world.level.levelgen.structure.StructurePieceAccessor; import net.minecraft.world.level.levelgen.structure.TerrainAdjustment; import net.minecraft.world.level.levelgen.structure.pieces.StructurePieceSerializationContext; import net.minecraft.world.phys.AABB; import twilightforest.init.TFBlocks; import twilightforest.init.TFEntities; import twilightforest.init.TFStructurePieceTypes; import twilightforest.util.EntityUtil; import twilightforest.util.RotationUtil; import twilightforest.world.components.structures.TFStructureComponentOld; public class TowerMainComponent extends TowerWingComponent { public TowerMainComponent(StructurePieceSerializationContext ctx, CompoundTag nbt) { super(TFStructurePieceTypes.TFLTMai.get(), nbt); } public TowerMainComponent(RandomSource rand, int index, int x, int y, int z) { // some of these are subject to change if the ground level is > 30. super(TFStructurePieceTypes.TFLTMai.get(), index, x, y + 1, z, 15, 55 + rand.nextInt(32), Direction.SOUTH); } @Override public void addChildren(StructurePiece parent, StructurePieceAccessor list, RandomSource rand) { // add a roof? makeARoof(parent, list, rand); // sub towers for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, rotation); // adjust height if we're too low at this point if (dest[1] < height / 2) { dest[1] += 20; } int childHeight = Math.min(21 + rand.nextInt(10), this.height - dest[1] - 3); if (!makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 9, childHeight, rotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 7, childHeight, rotation); } } // try one more time for large towers for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, rotation); // adjust height if we're too low at this point if (dest[1] < height / 2) { dest[1] += 10; } int childHeight = Math.min(21 + rand.nextInt(10), this.height - dest[1] - 3); if (!makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 9, childHeight, rotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 7, childHeight, rotation); } } // another set, if possible for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, rotation); int childHeight = Math.min(7 + rand.nextInt(6), this.height - dest[1] - 3); if (!makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 5, childHeight, rotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 3, childHeight, rotation); } } // outbuildings for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getOutbuildingOpening(rand, rotation); int childHeight = 11 + rand.nextInt(10); int childSize = 7 + (rand.nextInt(2) * 2); makeTowerOutbuilding(list, rand, 1, dest[0], dest[1], dest[2], childSize, childHeight, rotation); } // TINY TOWERS! for (int i = 0; i < 4; i++) { for (final Rotation towerRotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, towerRotation); int childHeight = 6 + rand.nextInt(5); if (rand.nextInt(3) == 0 || !makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 5, childHeight, towerRotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 3, childHeight, towerRotation); } } } } /** * Gets a random position in the specified direction that we can make an outbuilding at */ public int[] getOutbuildingOpening(RandomSource rand, Rotation rotation) { int rx = 0; int ry = 1; int rz = 0; switch (rotation) { case NONE -> { // for directions 0 or 2, the wall lies along the z axis rx = size - 1; rz = 6 + rand.nextInt(8); } case CLOCKWISE_90 -> { // for directions 1 or 3, the wall lies along the x axis rx = 1 + rand.nextInt(11); rz = size - 1; } case CLOCKWISE_180 -> { rx = 0; rz = 1 + rand.nextInt(8); } case COUNTERCLOCKWISE_90 -> { rx = 3 + rand.nextInt(11); rz = 0; } } return new int[]{rx, ry, rz}; } public boolean makeTowerOutbuilding(StructurePieceAccessor list, RandomSource rand, int index, int x, int y, int z, int wingSize, int wingHeight, Rotation rotation) { Direction direction = getStructureRelativeRotation(rotation); int[] dx = offsetTowerCoords(x, y, z, wingSize, direction); TowerOutbuildingComponent outbuilding = new TowerOutbuildingComponent(index, dx[0], dx[1], dx[2], wingSize, wingHeight, direction); // check to see if it intersects something already there StructurePiece intersect = list.findCollisionPiece(outbuilding.getBoundingBox()); if (intersect == null) { list.addPiece(outbuilding); outbuilding.addChildren(this, list, rand); addOpening(x, y, z, rotation); return true; } else { return false; } } @Override public void postProcess(WorldGenLevel world, StructureManager manager, ChunkGenerator generator, RandomSource rand, BoundingBox sbb, ChunkPos chunkPosIn, BlockPos blockPos) { // make walls generateBox(world, sbb, 0, 0, 0, size - 1, height - 1, size - 1, false, rand, TFStructureComponentOld.getStrongholdStones()); // clear inside generateAirBox(world, sbb, 1, 1, 1, size - 2, height - 2, size - 2); final BlockState defaultState = Blocks.COBBLESTONE.defaultBlockState(); // stone to ground for (int x = 0; x < this.size; x++) { for (int z = 0; z < this.size; z++) { this.fillColumnDown(world, defaultState, x, -1, z, sbb); } } // nullify sky light // nullifySkyLightForBoundingBox(world); // fix highestOpening parameter so we don't get a ginormous lich room if ((height - highestOpening) > 15) { highestOpening = height - 15; } // stairs! makeStairs(world, rand, sbb); // throw a bunch of opening markers in there //makeOpeningMarkers(world, rand, 100, sbb); // openings makeOpenings(world, sbb); // decorate? decorateStairFloor(world, generator, rand, sbb); // stairway crossings makeStairwayCrossings(world, rand, sbb); // LICH TIME makeLichRoom(world, rand, sbb); // extra paintings in main tower makeTowerPaintings(world, rand, sbb); } /** * Make 1-2 platforms joining the stairways */ protected void makeStairwayCrossings(WorldGenLevel world, RandomSource rand, BoundingBox sbb) { int flights = (this.highestOpening / 5) - 2; for (int i = 2 + rand.nextInt(2); i < flights; i += 1 + rand.nextInt(5)) { makeStairCrossing(world, rand, i, sbb); } } protected void makeStairCrossing(WorldGenLevel world, RandomSource rand, int flight, BoundingBox sbb) { Direction temp = this.getOrientation(); if (flight % 2 == 0) { this.setOrientation(getStructureRelativeRotation(Rotation.CLOCKWISE_90)); } // place platform int floorLevel = flight * 5; BlockState crossingfloor = rand.nextBoolean() ? Blocks.SMOOTH_STONE_SLAB.defaultBlockState().setValue(SlabBlock.TYPE, SlabType.DOUBLE) : Blocks.BIRCH_PLANKS.defaultBlockState(); for (int dx = 6; dx <= 8; dx++) { for (int dz = 4; dz <= 10; dz++) { placeBlock(world, crossingfloor, dx, floorLevel, dz, sbb); } } // put fences floorLevel++; int dx = 6; for (int dz = 3; dz <= 11; dz++) { placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), dx, floorLevel, dz, sbb); } dx++; for (int dz = 3; dz <= 11; dz++) { placeBlock(world, AIR, dx, floorLevel, dz, sbb); } dx++; for (int dz = 3; dz <= 11; dz++) { placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), dx, floorLevel, dz, sbb); } // we need 2 extra blocks and 2 extra fences to look good placeBlock(world, crossingfloor, 6, floorLevel - 1, 11, sbb); placeBlock(world, crossingfloor, 8, floorLevel - 1, 3, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 5, floorLevel, 11, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 9, floorLevel, 3, sbb); // place spawner in the middle EntityType<?> mobID = switch (rand.nextInt(4)) { case 2 -> EntityType.ZOMBIE; case 3 -> TFEntities.SWARM_SPIDER.get(); default -> EntityType.SKELETON; }; setSpawner(world, 7, floorLevel + 2, 7, sbb, mobID); // make a fence arch support for the spawner placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 6, floorLevel + 1, 7, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 8, floorLevel + 1, 7, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 6, floorLevel + 2, 7, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 8, floorLevel + 2, 7, sbb); this.setOrientation(temp); } /** * Make a neat little room for the lich to fight in */ protected void makeLichRoom(WorldGenLevel world, RandomSource rand, BoundingBox sbb) { // figure out where the stairs end int floorLevel = 2 + (this.highestOpening / 5) * 5; // we need a floor final Rotation i = (this.highestOpening / 5) % 2 == 0 ? Rotation.NONE : Rotation.CLOCKWISE_90; makeLichFloor(world, floorLevel, i, sbb); // now a chandelier decorateLichChandelier(world, floorLevel, sbb); // make paintings decoratePaintings(world, rand, floorLevel, sbb); // and wall torches decorateTorches(world, rand, floorLevel, sbb); // seems like we should have a spawner placeBlock(world, TFBlocks.LICH_BOSS_SPAWNER.get().defaultBlockState(), size / 2, floorLevel + 2, size / 2, sbb); } protected void makeTowerPaintings(WorldGenLevel world, RandomSource rand, BoundingBox sbb) { int howMany = 10; // do wall 0. generatePaintingsOnWall(world, rand, howMany, 0, Direction.WEST, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.WEST, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.WEST, 0, sbb); // do wall 1. generatePaintingsOnWall(world, rand, howMany, 0, Direction.EAST, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.EAST, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.EAST, 0, sbb); // do wall 2. generatePaintingsOnWall(world, rand, howMany, 0, Direction.NORTH, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.NORTH, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.NORTH, 0, sbb); // do wall 3. generatePaintingsOnWall(world, rand, howMany, 0, Direction.SOUTH, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.SOUTH, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.SOUTH, 0, sbb); } /** * Make the floor for the liches room */ protected void makeLichFloor(WorldGenLevel world, int floorLevel, Rotation rotation, BoundingBox sbb) { Direction temp = this.getOrientation(); this.setOrientation(getStructureRelativeRotation(rotation)); BlockState birchSlab = Blocks.BIRCH_SLAB.defaultBlockState() .setValue(SlabBlock.TYPE, SlabType.TOP); BlockState birchPlank = Blocks.BIRCH_PLANKS.defaultBlockState(); // place a platform there for (int fx = 1; fx < 14; fx++) { for (int fz = 1; fz < 14; fz++) { if ((fx == 1 || fx == 2) && (fz >= 6 && fz <= 12)) { // blank, leave room for stairs if (fz == 6) { // upside down plank slabs placeBlock(world, birchSlab, fx, floorLevel, fz, sbb); } } else if ((fx == 12 || fx == 13) && (fz >= 3 && fz <= 8)) { // blank, leave room for stairs if (fz == 8) { // upside down plank slabs placeBlock(world, birchSlab, fx, floorLevel, fz, sbb); } } else if ((fx >= 4 && fx <= 10) && (fz >= 4 && fz <= 10)) { // glass floor in center, aside from 2 corners if ((fx == 4 && fz == 4) || (fx == 10 && fz == 10)) { placeBlock(world, birchPlank, fx, floorLevel, fz, sbb); } else { placeBlock(world, Blocks.GLASS.defaultBlockState(), fx, floorLevel, fz, sbb); } } else if ((fx == 2 || fx == 3) && (fz == 2 || fz == 3)) { // glass blocks in the corners placeBlock(world, Blocks.GLASS.defaultBlockState(), fx, floorLevel, fz, sbb); } else if ((fx == 11 || fx == 12) && (fz == 11 || fz == 12)) { // glass blocks in the corners placeBlock(world, Blocks.GLASS.defaultBlockState(), fx, floorLevel, fz, sbb); } else { placeBlock(world, birchPlank, fx, floorLevel, fz, sbb); } } } // eliminate the railings placeBlock(world, AIR, 3, floorLevel + 1, 11, sbb); placeBlock(world, AIR, 3, floorLevel + 1, 10, sbb); placeBlock(world, AIR, 3, floorLevel + 2, 11, sbb); placeBlock(world, AIR, 11, floorLevel + 1, 3, sbb); placeBlock(world, AIR, 11, floorLevel + 1, 4, sbb); placeBlock(world, AIR, 11, floorLevel + 2, 3, sbb); this.setOrientation(temp); } /** * Make a fancy chandelier for the lich's room */ protected void decorateLichChandelier(WorldGenLevel world, int floorLevel, BoundingBox sbb) { int cx = size / 2; int cy = floorLevel + 4; int cz = size / 2; placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 2, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz + 2, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 2, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz - 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz - 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz - 2, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz - 1, sbb); cy++; placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 2, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz + 1, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz + 2, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 2, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 1, cy, cz - 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz - 1, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz - 2, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 1, cy, cz - 1, sbb); cy++; placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz + 1, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz - 1, sbb); for (int y = floorLevel + 5; y < height - 1; y++) { placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, y, cz, sbb); } } /** * Cover the walls in the lich's room with paintings. How is this going to work, chunk by chunk? */ protected void decoratePaintings(WorldGenLevel world, RandomSource rand, int floorLevel, BoundingBox sbb) { // I reduced this number since it turns out paintings already generate in the boss room before this is called int howMany = 25; for (final Direction horizontal : Direction.Plane.HORIZONTAL) { // do wall 0. generatePaintingsOnWall(world, rand, howMany, floorLevel, horizontal, 48, sbb); generatePaintingsOnWall(world, rand, howMany, floorLevel, horizontal, 32, sbb); generatePaintingsOnWall(world, rand, howMany, floorLevel, horizontal, 0, sbb); } } /** * Put torches on each wall */ protected void decorateTorches(WorldGenLevel world, RandomSource rand, int floorLevel, BoundingBox sbb) { generateTorchesOnWall(world, rand, floorLevel, Direction.SOUTH, sbb); generateTorchesOnWall(world, rand, floorLevel, Direction.EAST, sbb); generateTorchesOnWall(world, rand, floorLevel, Direction.NORTH, sbb); generateTorchesOnWall(world, rand, floorLevel, Direction.WEST, sbb); } /** * Place up to 5 torches (with fence holders) on the wall, checking that they don't overlap any paintings or other torches */ protected void generateTorchesOnWall(WorldGenLevel world, RandomSource rand, int floorLevel, Direction direction, BoundingBox sbb) { for (int i = 0; i < 5; i++) { // get some random coordinates on the wall in the chunk BlockPos wCoords = getRandomWallSpot(rand, floorLevel, direction, sbb); if (wCoords == null) continue; // offset to see where the fence should be BlockPos.MutableBlockPos tCoords = new BlockPos.MutableBlockPos(wCoords.getX(), wCoords.getY(), wCoords.getZ()); // is there a painting or another torch there? BlockState blockState = world.getBlockState(tCoords); BlockState aboveBlockState = world.getBlockState(tCoords.above()); if (blockState.isAir() && aboveBlockState.isAir() && EntityUtil.getEntitiesInAABB(world, new AABB(tCoords)).size() == 0) { // if not, place a torch world.setBlock(tCoords, Blocks.OAK_FENCE.defaultBlockState().setValue(PipeBlock.PROPERTY_BY_DIRECTION.get(direction.getOpposite()), true), 2); world.setBlock(tCoords.above(), Blocks.TORCH.defaultBlockState(), 2); } } } @Override public TerrainAdjustment getTerrainAdjustment() { return TerrainAdjustment.BEARD_BOX; } }
TeamTwilight/twilightforest
src/main/java/twilightforest/world/components/structures/lichtower/TowerMainComponent.java
6,296
// upside down plank slabs
line_comment
nl
package twilightforest.world.components.structures.lichtower; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.nbt.CompoundTag; import net.minecraft.util.RandomSource; import net.minecraft.world.entity.EntityType; import net.minecraft.world.level.ChunkPos; import net.minecraft.world.level.StructureManager; import net.minecraft.world.level.WorldGenLevel; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.PipeBlock; import net.minecraft.world.level.block.Rotation; import net.minecraft.world.level.block.SlabBlock; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.state.properties.SlabType; import net.minecraft.world.level.chunk.ChunkGenerator; import net.minecraft.world.level.levelgen.structure.BoundingBox; import net.minecraft.world.level.levelgen.structure.StructurePiece; import net.minecraft.world.level.levelgen.structure.StructurePieceAccessor; import net.minecraft.world.level.levelgen.structure.TerrainAdjustment; import net.minecraft.world.level.levelgen.structure.pieces.StructurePieceSerializationContext; import net.minecraft.world.phys.AABB; import twilightforest.init.TFBlocks; import twilightforest.init.TFEntities; import twilightforest.init.TFStructurePieceTypes; import twilightforest.util.EntityUtil; import twilightforest.util.RotationUtil; import twilightforest.world.components.structures.TFStructureComponentOld; public class TowerMainComponent extends TowerWingComponent { public TowerMainComponent(StructurePieceSerializationContext ctx, CompoundTag nbt) { super(TFStructurePieceTypes.TFLTMai.get(), nbt); } public TowerMainComponent(RandomSource rand, int index, int x, int y, int z) { // some of these are subject to change if the ground level is > 30. super(TFStructurePieceTypes.TFLTMai.get(), index, x, y + 1, z, 15, 55 + rand.nextInt(32), Direction.SOUTH); } @Override public void addChildren(StructurePiece parent, StructurePieceAccessor list, RandomSource rand) { // add a roof? makeARoof(parent, list, rand); // sub towers for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, rotation); // adjust height if we're too low at this point if (dest[1] < height / 2) { dest[1] += 20; } int childHeight = Math.min(21 + rand.nextInt(10), this.height - dest[1] - 3); if (!makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 9, childHeight, rotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 7, childHeight, rotation); } } // try one more time for large towers for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, rotation); // adjust height if we're too low at this point if (dest[1] < height / 2) { dest[1] += 10; } int childHeight = Math.min(21 + rand.nextInt(10), this.height - dest[1] - 3); if (!makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 9, childHeight, rotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 7, childHeight, rotation); } } // another set, if possible for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, rotation); int childHeight = Math.min(7 + rand.nextInt(6), this.height - dest[1] - 3); if (!makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 5, childHeight, rotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 3, childHeight, rotation); } } // outbuildings for (final Rotation rotation : RotationUtil.ROTATIONS) { int[] dest = getOutbuildingOpening(rand, rotation); int childHeight = 11 + rand.nextInt(10); int childSize = 7 + (rand.nextInt(2) * 2); makeTowerOutbuilding(list, rand, 1, dest[0], dest[1], dest[2], childSize, childHeight, rotation); } // TINY TOWERS! for (int i = 0; i < 4; i++) { for (final Rotation towerRotation : RotationUtil.ROTATIONS) { int[] dest = getValidOpening(rand, towerRotation); int childHeight = 6 + rand.nextInt(5); if (rand.nextInt(3) == 0 || !makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 5, childHeight, towerRotation)) { makeTowerWing(list, rand, 1, dest[0], dest[1], dest[2], 3, childHeight, towerRotation); } } } } /** * Gets a random position in the specified direction that we can make an outbuilding at */ public int[] getOutbuildingOpening(RandomSource rand, Rotation rotation) { int rx = 0; int ry = 1; int rz = 0; switch (rotation) { case NONE -> { // for directions 0 or 2, the wall lies along the z axis rx = size - 1; rz = 6 + rand.nextInt(8); } case CLOCKWISE_90 -> { // for directions 1 or 3, the wall lies along the x axis rx = 1 + rand.nextInt(11); rz = size - 1; } case CLOCKWISE_180 -> { rx = 0; rz = 1 + rand.nextInt(8); } case COUNTERCLOCKWISE_90 -> { rx = 3 + rand.nextInt(11); rz = 0; } } return new int[]{rx, ry, rz}; } public boolean makeTowerOutbuilding(StructurePieceAccessor list, RandomSource rand, int index, int x, int y, int z, int wingSize, int wingHeight, Rotation rotation) { Direction direction = getStructureRelativeRotation(rotation); int[] dx = offsetTowerCoords(x, y, z, wingSize, direction); TowerOutbuildingComponent outbuilding = new TowerOutbuildingComponent(index, dx[0], dx[1], dx[2], wingSize, wingHeight, direction); // check to see if it intersects something already there StructurePiece intersect = list.findCollisionPiece(outbuilding.getBoundingBox()); if (intersect == null) { list.addPiece(outbuilding); outbuilding.addChildren(this, list, rand); addOpening(x, y, z, rotation); return true; } else { return false; } } @Override public void postProcess(WorldGenLevel world, StructureManager manager, ChunkGenerator generator, RandomSource rand, BoundingBox sbb, ChunkPos chunkPosIn, BlockPos blockPos) { // make walls generateBox(world, sbb, 0, 0, 0, size - 1, height - 1, size - 1, false, rand, TFStructureComponentOld.getStrongholdStones()); // clear inside generateAirBox(world, sbb, 1, 1, 1, size - 2, height - 2, size - 2); final BlockState defaultState = Blocks.COBBLESTONE.defaultBlockState(); // stone to ground for (int x = 0; x < this.size; x++) { for (int z = 0; z < this.size; z++) { this.fillColumnDown(world, defaultState, x, -1, z, sbb); } } // nullify sky light // nullifySkyLightForBoundingBox(world); // fix highestOpening parameter so we don't get a ginormous lich room if ((height - highestOpening) > 15) { highestOpening = height - 15; } // stairs! makeStairs(world, rand, sbb); // throw a bunch of opening markers in there //makeOpeningMarkers(world, rand, 100, sbb); // openings makeOpenings(world, sbb); // decorate? decorateStairFloor(world, generator, rand, sbb); // stairway crossings makeStairwayCrossings(world, rand, sbb); // LICH TIME makeLichRoom(world, rand, sbb); // extra paintings in main tower makeTowerPaintings(world, rand, sbb); } /** * Make 1-2 platforms joining the stairways */ protected void makeStairwayCrossings(WorldGenLevel world, RandomSource rand, BoundingBox sbb) { int flights = (this.highestOpening / 5) - 2; for (int i = 2 + rand.nextInt(2); i < flights; i += 1 + rand.nextInt(5)) { makeStairCrossing(world, rand, i, sbb); } } protected void makeStairCrossing(WorldGenLevel world, RandomSource rand, int flight, BoundingBox sbb) { Direction temp = this.getOrientation(); if (flight % 2 == 0) { this.setOrientation(getStructureRelativeRotation(Rotation.CLOCKWISE_90)); } // place platform int floorLevel = flight * 5; BlockState crossingfloor = rand.nextBoolean() ? Blocks.SMOOTH_STONE_SLAB.defaultBlockState().setValue(SlabBlock.TYPE, SlabType.DOUBLE) : Blocks.BIRCH_PLANKS.defaultBlockState(); for (int dx = 6; dx <= 8; dx++) { for (int dz = 4; dz <= 10; dz++) { placeBlock(world, crossingfloor, dx, floorLevel, dz, sbb); } } // put fences floorLevel++; int dx = 6; for (int dz = 3; dz <= 11; dz++) { placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), dx, floorLevel, dz, sbb); } dx++; for (int dz = 3; dz <= 11; dz++) { placeBlock(world, AIR, dx, floorLevel, dz, sbb); } dx++; for (int dz = 3; dz <= 11; dz++) { placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), dx, floorLevel, dz, sbb); } // we need 2 extra blocks and 2 extra fences to look good placeBlock(world, crossingfloor, 6, floorLevel - 1, 11, sbb); placeBlock(world, crossingfloor, 8, floorLevel - 1, 3, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 5, floorLevel, 11, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 9, floorLevel, 3, sbb); // place spawner in the middle EntityType<?> mobID = switch (rand.nextInt(4)) { case 2 -> EntityType.ZOMBIE; case 3 -> TFEntities.SWARM_SPIDER.get(); default -> EntityType.SKELETON; }; setSpawner(world, 7, floorLevel + 2, 7, sbb, mobID); // make a fence arch support for the spawner placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 6, floorLevel + 1, 7, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 8, floorLevel + 1, 7, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 6, floorLevel + 2, 7, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), 8, floorLevel + 2, 7, sbb); this.setOrientation(temp); } /** * Make a neat little room for the lich to fight in */ protected void makeLichRoom(WorldGenLevel world, RandomSource rand, BoundingBox sbb) { // figure out where the stairs end int floorLevel = 2 + (this.highestOpening / 5) * 5; // we need a floor final Rotation i = (this.highestOpening / 5) % 2 == 0 ? Rotation.NONE : Rotation.CLOCKWISE_90; makeLichFloor(world, floorLevel, i, sbb); // now a chandelier decorateLichChandelier(world, floorLevel, sbb); // make paintings decoratePaintings(world, rand, floorLevel, sbb); // and wall torches decorateTorches(world, rand, floorLevel, sbb); // seems like we should have a spawner placeBlock(world, TFBlocks.LICH_BOSS_SPAWNER.get().defaultBlockState(), size / 2, floorLevel + 2, size / 2, sbb); } protected void makeTowerPaintings(WorldGenLevel world, RandomSource rand, BoundingBox sbb) { int howMany = 10; // do wall 0. generatePaintingsOnWall(world, rand, howMany, 0, Direction.WEST, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.WEST, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.WEST, 0, sbb); // do wall 1. generatePaintingsOnWall(world, rand, howMany, 0, Direction.EAST, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.EAST, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.EAST, 0, sbb); // do wall 2. generatePaintingsOnWall(world, rand, howMany, 0, Direction.NORTH, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.NORTH, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.NORTH, 0, sbb); // do wall 3. generatePaintingsOnWall(world, rand, howMany, 0, Direction.SOUTH, 48, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.SOUTH, 32, sbb); generatePaintingsOnWall(world, rand, howMany, 0, Direction.SOUTH, 0, sbb); } /** * Make the floor for the liches room */ protected void makeLichFloor(WorldGenLevel world, int floorLevel, Rotation rotation, BoundingBox sbb) { Direction temp = this.getOrientation(); this.setOrientation(getStructureRelativeRotation(rotation)); BlockState birchSlab = Blocks.BIRCH_SLAB.defaultBlockState() .setValue(SlabBlock.TYPE, SlabType.TOP); BlockState birchPlank = Blocks.BIRCH_PLANKS.defaultBlockState(); // place a platform there for (int fx = 1; fx < 14; fx++) { for (int fz = 1; fz < 14; fz++) { if ((fx == 1 || fx == 2) && (fz >= 6 && fz <= 12)) { // blank, leave room for stairs if (fz == 6) { // upside down<SUF> placeBlock(world, birchSlab, fx, floorLevel, fz, sbb); } } else if ((fx == 12 || fx == 13) && (fz >= 3 && fz <= 8)) { // blank, leave room for stairs if (fz == 8) { // upside down plank slabs placeBlock(world, birchSlab, fx, floorLevel, fz, sbb); } } else if ((fx >= 4 && fx <= 10) && (fz >= 4 && fz <= 10)) { // glass floor in center, aside from 2 corners if ((fx == 4 && fz == 4) || (fx == 10 && fz == 10)) { placeBlock(world, birchPlank, fx, floorLevel, fz, sbb); } else { placeBlock(world, Blocks.GLASS.defaultBlockState(), fx, floorLevel, fz, sbb); } } else if ((fx == 2 || fx == 3) && (fz == 2 || fz == 3)) { // glass blocks in the corners placeBlock(world, Blocks.GLASS.defaultBlockState(), fx, floorLevel, fz, sbb); } else if ((fx == 11 || fx == 12) && (fz == 11 || fz == 12)) { // glass blocks in the corners placeBlock(world, Blocks.GLASS.defaultBlockState(), fx, floorLevel, fz, sbb); } else { placeBlock(world, birchPlank, fx, floorLevel, fz, sbb); } } } // eliminate the railings placeBlock(world, AIR, 3, floorLevel + 1, 11, sbb); placeBlock(world, AIR, 3, floorLevel + 1, 10, sbb); placeBlock(world, AIR, 3, floorLevel + 2, 11, sbb); placeBlock(world, AIR, 11, floorLevel + 1, 3, sbb); placeBlock(world, AIR, 11, floorLevel + 1, 4, sbb); placeBlock(world, AIR, 11, floorLevel + 2, 3, sbb); this.setOrientation(temp); } /** * Make a fancy chandelier for the lich's room */ protected void decorateLichChandelier(WorldGenLevel world, int floorLevel, BoundingBox sbb) { int cx = size / 2; int cy = floorLevel + 4; int cz = size / 2; placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 2, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz + 2, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 2, cy, cz, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz - 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz - 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz - 2, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz - 1, sbb); cy++; placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx + 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 2, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz + 1, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz + 2, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 1, cy, cz + 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx - 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 2, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 1, cy, cz - 1, sbb); placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, cy, cz - 1, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz - 2, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 1, cy, cz - 1, sbb); cy++; placeBlock(world, Blocks.TORCH.defaultBlockState(), cx + 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz + 1, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx - 1, cy, cz, sbb); placeBlock(world, Blocks.TORCH.defaultBlockState(), cx, cy, cz - 1, sbb); for (int y = floorLevel + 5; y < height - 1; y++) { placeBlock(world, Blocks.OAK_FENCE.defaultBlockState(), cx, y, cz, sbb); } } /** * Cover the walls in the lich's room with paintings. How is this going to work, chunk by chunk? */ protected void decoratePaintings(WorldGenLevel world, RandomSource rand, int floorLevel, BoundingBox sbb) { // I reduced this number since it turns out paintings already generate in the boss room before this is called int howMany = 25; for (final Direction horizontal : Direction.Plane.HORIZONTAL) { // do wall 0. generatePaintingsOnWall(world, rand, howMany, floorLevel, horizontal, 48, sbb); generatePaintingsOnWall(world, rand, howMany, floorLevel, horizontal, 32, sbb); generatePaintingsOnWall(world, rand, howMany, floorLevel, horizontal, 0, sbb); } } /** * Put torches on each wall */ protected void decorateTorches(WorldGenLevel world, RandomSource rand, int floorLevel, BoundingBox sbb) { generateTorchesOnWall(world, rand, floorLevel, Direction.SOUTH, sbb); generateTorchesOnWall(world, rand, floorLevel, Direction.EAST, sbb); generateTorchesOnWall(world, rand, floorLevel, Direction.NORTH, sbb); generateTorchesOnWall(world, rand, floorLevel, Direction.WEST, sbb); } /** * Place up to 5 torches (with fence holders) on the wall, checking that they don't overlap any paintings or other torches */ protected void generateTorchesOnWall(WorldGenLevel world, RandomSource rand, int floorLevel, Direction direction, BoundingBox sbb) { for (int i = 0; i < 5; i++) { // get some random coordinates on the wall in the chunk BlockPos wCoords = getRandomWallSpot(rand, floorLevel, direction, sbb); if (wCoords == null) continue; // offset to see where the fence should be BlockPos.MutableBlockPos tCoords = new BlockPos.MutableBlockPos(wCoords.getX(), wCoords.getY(), wCoords.getZ()); // is there a painting or another torch there? BlockState blockState = world.getBlockState(tCoords); BlockState aboveBlockState = world.getBlockState(tCoords.above()); if (blockState.isAir() && aboveBlockState.isAir() && EntityUtil.getEntitiesInAABB(world, new AABB(tCoords)).size() == 0) { // if not, place a torch world.setBlock(tCoords, Blocks.OAK_FENCE.defaultBlockState().setValue(PipeBlock.PROPERTY_BY_DIRECTION.get(direction.getOpposite()), true), 2); world.setBlock(tCoords.above(), Blocks.TORCH.defaultBlockState(), 2); } } } @Override public TerrainAdjustment getTerrainAdjustment() { return TerrainAdjustment.BEARD_BOX; } }
202305_1
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package decor; import gui.LevelVenster; import java.awt.Graphics; import org.jbox2d.collision.shapes.Shape; import org.jbox2d.dynamics.Body; import org.jbox2d.dynamics.BodyDef; import org.jbox2d.dynamics.BodyType; import org.jdom.Element; import wereld.WereldModel; import wereld.WereldObject; /** * Superklasse van Block en Ellips. * * @author Frederic Everaert */ public class Decor extends WereldObject { protected float height; protected float width; protected double angleInRad; protected String materiaal; protected float y; protected float x; protected Body body; protected BodyDef bDef; protected MateriaalType materiaalType; private WereldModel model; public Decor(Element decorxml, WereldModel model) { this.model = model; String tmp = decorxml.getAttributeValue("height"); height = Float.parseFloat(tmp); tmp = decorxml.getAttributeValue("width"); width = Float.parseFloat(tmp); tmp = decorxml.getAttributeValue("angle"); angleInRad = Math.toRadians(Float.parseFloat(tmp)); materiaal = decorxml.getAttributeValue("material"); tmp = decorxml.getAttributeValue("x"); x = Float.parseFloat(tmp); tmp = decorxml.getAttributeValue("y"); y = Float.parseFloat(tmp); if ("solid".equals(materiaal)) { materiaalType = model.getMtVast(); } else if ("wood".equals(materiaal)) { materiaalType = model.getMtHout(); } else if ("stone".equals(materiaal)) { materiaalType = model.getMtBeton(); } else if ("metal".equals(materiaal)) { materiaalType = model.getMtMetaal(); } else if ("ice".equals(materiaal)) { materiaalType = model.getMtIjs(); } else { throw new IllegalArgumentException(); } materiaalType.voegtoe(this); bDef = new BodyDef(); bDef.angle = -(float) angleInRad; if (materiaalType.vast) { bDef.type = BodyType.STATIC; } else { bDef.type = BodyType.DYNAMIC; } bDef.position.set(x, y); body = model.getWereld().createBody(bDef); body.setUserData(this); } public float getX() { return x; } public float getY() { return y; } public double getAngleInRad() { return angleInRad; } public float getHeight() { return height; } public float getWidth() { return width; } public String getMaterial() { return materiaal; } public Body getBody() { return body; } @Override public MateriaalType getType() { return materiaalType; } public void changeFixture() { try { Shape shape = body.getFixtureList().getShape(); body.destroyFixture(body.getFixtureList()); materiaalType.getFixtureDef().shape = shape; body.createFixture(materiaalType.getFixtureDef()); } catch (NullPointerException ex) { System.out.println("changeFixture decor error"); } } public void draw(Graphics g, LevelVenster view) { } }
feveraer/Bozels
src/decor/Decor.java
901
/** * Superklasse van Block en Ellips. * * @author Frederic Everaert */
block_comment
nl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package decor; import gui.LevelVenster; import java.awt.Graphics; import org.jbox2d.collision.shapes.Shape; import org.jbox2d.dynamics.Body; import org.jbox2d.dynamics.BodyDef; import org.jbox2d.dynamics.BodyType; import org.jdom.Element; import wereld.WereldModel; import wereld.WereldObject; /** * Superklasse van Block<SUF>*/ public class Decor extends WereldObject { protected float height; protected float width; protected double angleInRad; protected String materiaal; protected float y; protected float x; protected Body body; protected BodyDef bDef; protected MateriaalType materiaalType; private WereldModel model; public Decor(Element decorxml, WereldModel model) { this.model = model; String tmp = decorxml.getAttributeValue("height"); height = Float.parseFloat(tmp); tmp = decorxml.getAttributeValue("width"); width = Float.parseFloat(tmp); tmp = decorxml.getAttributeValue("angle"); angleInRad = Math.toRadians(Float.parseFloat(tmp)); materiaal = decorxml.getAttributeValue("material"); tmp = decorxml.getAttributeValue("x"); x = Float.parseFloat(tmp); tmp = decorxml.getAttributeValue("y"); y = Float.parseFloat(tmp); if ("solid".equals(materiaal)) { materiaalType = model.getMtVast(); } else if ("wood".equals(materiaal)) { materiaalType = model.getMtHout(); } else if ("stone".equals(materiaal)) { materiaalType = model.getMtBeton(); } else if ("metal".equals(materiaal)) { materiaalType = model.getMtMetaal(); } else if ("ice".equals(materiaal)) { materiaalType = model.getMtIjs(); } else { throw new IllegalArgumentException(); } materiaalType.voegtoe(this); bDef = new BodyDef(); bDef.angle = -(float) angleInRad; if (materiaalType.vast) { bDef.type = BodyType.STATIC; } else { bDef.type = BodyType.DYNAMIC; } bDef.position.set(x, y); body = model.getWereld().createBody(bDef); body.setUserData(this); } public float getX() { return x; } public float getY() { return y; } public double getAngleInRad() { return angleInRad; } public float getHeight() { return height; } public float getWidth() { return width; } public String getMaterial() { return materiaal; } public Body getBody() { return body; } @Override public MateriaalType getType() { return materiaalType; } public void changeFixture() { try { Shape shape = body.getFixtureList().getShape(); body.destroyFixture(body.getFixtureList()); materiaalType.getFixtureDef().shape = shape; body.createFixture(materiaalType.getFixtureDef()); } catch (NullPointerException ex) { System.out.println("changeFixture decor error"); } } public void draw(Graphics g, LevelVenster view) { } }
202320_1
package proeend.material; import proeend.records.HitRecord; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.ScatterRecord; /** * Spiegelend materiaal. */ public class Mirror extends Material{ private final Vector albedo; private final double fuzz; /** * Maakt een spiegel aan. * @param color De kleur van de spiegel. * @param fuzz De hoeveelheid spiegeling. */ public Mirror(Vector color, double fuzz) { albedo = color; this.fuzz = Math.min(fuzz, 1.0); } @Override public boolean scatter(Ray rayIn, HitRecord rec, ScatterRecord scatterRecord) { scatterRecord.attenuation = albedo; scatterRecord.pdf = null; scatterRecord.skipPDF = true; Vector reflected = Vector.reflect(rayIn.getDirection().toUnitVector(), rec.normal); scatterRecord.skipRay = new Ray(rec.p, reflected.add(Vector.randomOnUnitSphere().scale(fuzz))); return true; //wat er eerst stond } }
NHLStenden-HBO-ICT/graphics-2023-2024-groep-3-eend
project_eend/src/main/java/proeend/material/Mirror.java
283
/** * Maakt een spiegel aan. * @param color De kleur van de spiegel. * @param fuzz De hoeveelheid spiegeling. */
block_comment
nl
package proeend.material; import proeend.records.HitRecord; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.ScatterRecord; /** * Spiegelend materiaal. */ public class Mirror extends Material{ private final Vector albedo; private final double fuzz; /** * Maakt een spiegel<SUF>*/ public Mirror(Vector color, double fuzz) { albedo = color; this.fuzz = Math.min(fuzz, 1.0); } @Override public boolean scatter(Ray rayIn, HitRecord rec, ScatterRecord scatterRecord) { scatterRecord.attenuation = albedo; scatterRecord.pdf = null; scatterRecord.skipPDF = true; Vector reflected = Vector.reflect(rayIn.getDirection().toUnitVector(), rec.normal); scatterRecord.skipRay = new Ray(rec.p, reflected.add(Vector.randomOnUnitSphere().scale(fuzz))); return true; //wat er eerst stond } }
202320_2
package proeend.material; import proeend.records.HitRecord; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.ScatterRecord; /** * Spiegelend materiaal. */ public class Mirror extends Material{ private final Vector albedo; private final double fuzz; /** * Maakt een spiegel aan. * @param color De kleur van de spiegel. * @param fuzz De hoeveelheid spiegeling. */ public Mirror(Vector color, double fuzz) { albedo = color; this.fuzz = Math.min(fuzz, 1.0); } @Override public boolean scatter(Ray rayIn, HitRecord rec, ScatterRecord scatterRecord) { scatterRecord.attenuation = albedo; scatterRecord.pdf = null; scatterRecord.skipPDF = true; Vector reflected = Vector.reflect(rayIn.getDirection().toUnitVector(), rec.normal); scatterRecord.skipRay = new Ray(rec.p, reflected.add(Vector.randomOnUnitSphere().scale(fuzz))); return true; //wat er eerst stond } }
NHLStenden-HBO-ICT/graphics-2023-2024-groep-3-eend
project_eend/src/main/java/proeend/material/Mirror.java
283
//wat er eerst stond
line_comment
nl
package proeend.material; import proeend.records.HitRecord; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.ScatterRecord; /** * Spiegelend materiaal. */ public class Mirror extends Material{ private final Vector albedo; private final double fuzz; /** * Maakt een spiegel aan. * @param color De kleur van de spiegel. * @param fuzz De hoeveelheid spiegeling. */ public Mirror(Vector color, double fuzz) { albedo = color; this.fuzz = Math.min(fuzz, 1.0); } @Override public boolean scatter(Ray rayIn, HitRecord rec, ScatterRecord scatterRecord) { scatterRecord.attenuation = albedo; scatterRecord.pdf = null; scatterRecord.skipPDF = true; Vector reflected = Vector.reflect(rayIn.getDirection().toUnitVector(), rec.normal); scatterRecord.skipRay = new Ray(rec.p, reflected.add(Vector.randomOnUnitSphere().scale(fuzz))); return true; //wat er<SUF> } }
202324_1
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package decor; import java.awt.Color; import java.util.ArrayList; import java.util.List; import org.jbox2d.dynamics.FixtureDef; import wereld.MijnType; import wereld.WereldModel; /** * Superklasse van MtHout, MtVast, MtBeton, MtIjs en MtMetaal. * Defaultwaarden in constructor voor MtVast. * * @author Frederic Everaert */ public class MateriaalType extends MijnType { protected float dichtheid; protected float restitutie; protected float wrijving; protected List<Decor> decorLijst; protected FixtureDef fDef; protected boolean vast; public MateriaalType(WereldModel model) { super(model); dichtheid = 0.0f; restitutie = 0.1f; wrijving = 1.0f; kleur = Color.BLACK; krachtdrempel = 0f; sterkte = 0f; fDef = new FixtureDef(); fDef.density = dichtheid; fDef.friction = wrijving; fDef.restitution = restitutie; decorLijst = new ArrayList<Decor>(); vast = false; } public float getDichtheid(){ return dichtheid; } public void setDichtheid(float dichtheid){ this.dichtheid = dichtheid; fDef.density = dichtheid; for(Decor decor : decorLijst){ decor.changeFixture(); } model.fireStateChanged(); } public float getRestitutie(){ return restitutie; } public void setRestitutie(float restitutie){ this.restitutie = restitutie; fDef.restitution = restitutie; for(Decor decor : decorLijst){ decor.changeFixture(); } model.fireStateChanged(); } public float getWrijving(){ return wrijving; } public void setWrijving(float wrijving){ this.wrijving = wrijving; fDef.friction = wrijving; for(Decor decor : decorLijst){ decor.changeFixture(); } model.fireStateChanged(); } public FixtureDef getFixtureDef(){ return fDef; } public void voegtoe(Decor decor){ decorLijst.add(decor); } public void verwijder(Decor decor){ decorLijst.remove(decor); } }
feveraer/Bozels
src/decor/MateriaalType.java
670
/** * Superklasse van MtHout, MtVast, MtBeton, MtIjs en MtMetaal. * Defaultwaarden in constructor voor MtVast. * * @author Frederic Everaert */
block_comment
nl
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package decor; import java.awt.Color; import java.util.ArrayList; import java.util.List; import org.jbox2d.dynamics.FixtureDef; import wereld.MijnType; import wereld.WereldModel; /** * Superklasse van MtHout,<SUF>*/ public class MateriaalType extends MijnType { protected float dichtheid; protected float restitutie; protected float wrijving; protected List<Decor> decorLijst; protected FixtureDef fDef; protected boolean vast; public MateriaalType(WereldModel model) { super(model); dichtheid = 0.0f; restitutie = 0.1f; wrijving = 1.0f; kleur = Color.BLACK; krachtdrempel = 0f; sterkte = 0f; fDef = new FixtureDef(); fDef.density = dichtheid; fDef.friction = wrijving; fDef.restitution = restitutie; decorLijst = new ArrayList<Decor>(); vast = false; } public float getDichtheid(){ return dichtheid; } public void setDichtheid(float dichtheid){ this.dichtheid = dichtheid; fDef.density = dichtheid; for(Decor decor : decorLijst){ decor.changeFixture(); } model.fireStateChanged(); } public float getRestitutie(){ return restitutie; } public void setRestitutie(float restitutie){ this.restitutie = restitutie; fDef.restitution = restitutie; for(Decor decor : decorLijst){ decor.changeFixture(); } model.fireStateChanged(); } public float getWrijving(){ return wrijving; } public void setWrijving(float wrijving){ this.wrijving = wrijving; fDef.friction = wrijving; for(Decor decor : decorLijst){ decor.changeFixture(); } model.fireStateChanged(); } public FixtureDef getFixtureDef(){ return fDef; } public void voegtoe(Decor decor){ decorLijst.add(decor); } public void verwijder(Decor decor){ decorLijst.remove(decor); } }
202326_0
package proeend.hittable; import proeend.hittable.BoundingBox; import proeend.material.Material; import proeend.material.Normal; import proeend.math.Interval; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.HitRecord; import java.lang.Math.*; import java.util.Objects; public class Quad extends Hittable { private final Vector Q; //point3D private final Vector u; private final Vector v; private final Material mat; private BoundingBox bbox; private Vector normal; private double D; private Vector w; /** * Maakt een vlak aan. * @param _Q Het beginpunt. * @param _u Het u coördinaat. * @param _v Het v coördinaat. * @param m Een materiaal. */ public Quad(Vector _Q, Vector _u, Vector _v, Material m) { Q = _Q; u = _u; v = _v; mat = m; bbox = new BoundingBox(Q, Q.add(u).add(v)).pad(); Vector n = Vector.cross(u,v); normal = Vector.unitVector(n); D = Vector.dot(normal, Q); w = n.scale(1.0 / Vector.dot(n,n)); } @Override public BoundingBox getBoundingbox() { return bbox; } @Override public boolean hit(Ray r, Interval rayT, HitRecord rec) { //return false; // To be implemented double denom = Vector.dot(normal,r.getDirection()); if (Math.abs(denom) < 1e-8){ return false; } double t = (D - Vector.dot(normal, r.origin())) / denom; if (t < rayT.getMin() || t > rayT.getMax()){ return false; } Vector intersection = r.at(t); Vector planarHitPtVector = intersection.add(Q.invert()); double alpha = Vector.dot(w, Vector.cross(planarHitPtVector, v)); double beta = Vector.dot(w, Vector.cross(u, planarHitPtVector)); if (!isInterior(alpha ,beta ,rec)){ return false; } rec.setT(t); rec.setP(intersection); rec.setMaterial(mat); rec.setFaceNormal(r, normal); return true; } /** * Bekijkt of de coördinaten binnen het vlak vallen. * @param a Het a coördinaat. * @param b Het b coördinaat. * @param rec Informatie over de hits. * @return */ private boolean isInterior(double a, double b, HitRecord rec){ if (a < 0 || 1 < a || b < 0 || 1 < b){ return false; } rec.setU(a); rec.setV(b); return true; } @Override public int hashCode() { return Objects.hash(Q, u, v, mat, bbox); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null || getClass() != obj.getClass()) return false; Quad quad = (Quad) obj; return Q.equals(quad.Q) && u.equals(quad.u) && v.equals(quad.v) && mat.equals(quad.mat) && bbox.equals(quad.bbox); } }
NHLStenden-HBO-ICT/graphics-2023-2024-groep-3-eend
project_eend/src/main/java/proeend/hittable/Quad.java
918
/** * Maakt een vlak aan. * @param _Q Het beginpunt. * @param _u Het u coördinaat. * @param _v Het v coördinaat. * @param m Een materiaal. */
block_comment
nl
package proeend.hittable; import proeend.hittable.BoundingBox; import proeend.material.Material; import proeend.material.Normal; import proeend.math.Interval; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.HitRecord; import java.lang.Math.*; import java.util.Objects; public class Quad extends Hittable { private final Vector Q; //point3D private final Vector u; private final Vector v; private final Material mat; private BoundingBox bbox; private Vector normal; private double D; private Vector w; /** * Maakt een vlak<SUF>*/ public Quad(Vector _Q, Vector _u, Vector _v, Material m) { Q = _Q; u = _u; v = _v; mat = m; bbox = new BoundingBox(Q, Q.add(u).add(v)).pad(); Vector n = Vector.cross(u,v); normal = Vector.unitVector(n); D = Vector.dot(normal, Q); w = n.scale(1.0 / Vector.dot(n,n)); } @Override public BoundingBox getBoundingbox() { return bbox; } @Override public boolean hit(Ray r, Interval rayT, HitRecord rec) { //return false; // To be implemented double denom = Vector.dot(normal,r.getDirection()); if (Math.abs(denom) < 1e-8){ return false; } double t = (D - Vector.dot(normal, r.origin())) / denom; if (t < rayT.getMin() || t > rayT.getMax()){ return false; } Vector intersection = r.at(t); Vector planarHitPtVector = intersection.add(Q.invert()); double alpha = Vector.dot(w, Vector.cross(planarHitPtVector, v)); double beta = Vector.dot(w, Vector.cross(u, planarHitPtVector)); if (!isInterior(alpha ,beta ,rec)){ return false; } rec.setT(t); rec.setP(intersection); rec.setMaterial(mat); rec.setFaceNormal(r, normal); return true; } /** * Bekijkt of de coördinaten binnen het vlak vallen. * @param a Het a coördinaat. * @param b Het b coördinaat. * @param rec Informatie over de hits. * @return */ private boolean isInterior(double a, double b, HitRecord rec){ if (a < 0 || 1 < a || b < 0 || 1 < b){ return false; } rec.setU(a); rec.setV(b); return true; } @Override public int hashCode() { return Objects.hash(Q, u, v, mat, bbox); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null || getClass() != obj.getClass()) return false; Quad quad = (Quad) obj; return Q.equals(quad.Q) && u.equals(quad.u) && v.equals(quad.v) && mat.equals(quad.mat) && bbox.equals(quad.bbox); } }
202326_2
package proeend.hittable; import proeend.hittable.BoundingBox; import proeend.material.Material; import proeend.material.Normal; import proeend.math.Interval; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.HitRecord; import java.lang.Math.*; import java.util.Objects; public class Quad extends Hittable { private final Vector Q; //point3D private final Vector u; private final Vector v; private final Material mat; private BoundingBox bbox; private Vector normal; private double D; private Vector w; /** * Maakt een vlak aan. * @param _Q Het beginpunt. * @param _u Het u coördinaat. * @param _v Het v coördinaat. * @param m Een materiaal. */ public Quad(Vector _Q, Vector _u, Vector _v, Material m) { Q = _Q; u = _u; v = _v; mat = m; bbox = new BoundingBox(Q, Q.add(u).add(v)).pad(); Vector n = Vector.cross(u,v); normal = Vector.unitVector(n); D = Vector.dot(normal, Q); w = n.scale(1.0 / Vector.dot(n,n)); } @Override public BoundingBox getBoundingbox() { return bbox; } @Override public boolean hit(Ray r, Interval rayT, HitRecord rec) { //return false; // To be implemented double denom = Vector.dot(normal,r.getDirection()); if (Math.abs(denom) < 1e-8){ return false; } double t = (D - Vector.dot(normal, r.origin())) / denom; if (t < rayT.getMin() || t > rayT.getMax()){ return false; } Vector intersection = r.at(t); Vector planarHitPtVector = intersection.add(Q.invert()); double alpha = Vector.dot(w, Vector.cross(planarHitPtVector, v)); double beta = Vector.dot(w, Vector.cross(u, planarHitPtVector)); if (!isInterior(alpha ,beta ,rec)){ return false; } rec.setT(t); rec.setP(intersection); rec.setMaterial(mat); rec.setFaceNormal(r, normal); return true; } /** * Bekijkt of de coördinaten binnen het vlak vallen. * @param a Het a coördinaat. * @param b Het b coördinaat. * @param rec Informatie over de hits. * @return */ private boolean isInterior(double a, double b, HitRecord rec){ if (a < 0 || 1 < a || b < 0 || 1 < b){ return false; } rec.setU(a); rec.setV(b); return true; } @Override public int hashCode() { return Objects.hash(Q, u, v, mat, bbox); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null || getClass() != obj.getClass()) return false; Quad quad = (Quad) obj; return Q.equals(quad.Q) && u.equals(quad.u) && v.equals(quad.v) && mat.equals(quad.mat) && bbox.equals(quad.bbox); } }
NHLStenden-HBO-ICT/graphics-2023-2024-groep-3-eend
project_eend/src/main/java/proeend/hittable/Quad.java
918
/** * Bekijkt of de coördinaten binnen het vlak vallen. * @param a Het a coördinaat. * @param b Het b coördinaat. * @param rec Informatie over de hits. * @return */
block_comment
nl
package proeend.hittable; import proeend.hittable.BoundingBox; import proeend.material.Material; import proeend.material.Normal; import proeend.math.Interval; import proeend.math.Ray; import proeend.math.Vector; import proeend.records.HitRecord; import java.lang.Math.*; import java.util.Objects; public class Quad extends Hittable { private final Vector Q; //point3D private final Vector u; private final Vector v; private final Material mat; private BoundingBox bbox; private Vector normal; private double D; private Vector w; /** * Maakt een vlak aan. * @param _Q Het beginpunt. * @param _u Het u coördinaat. * @param _v Het v coördinaat. * @param m Een materiaal. */ public Quad(Vector _Q, Vector _u, Vector _v, Material m) { Q = _Q; u = _u; v = _v; mat = m; bbox = new BoundingBox(Q, Q.add(u).add(v)).pad(); Vector n = Vector.cross(u,v); normal = Vector.unitVector(n); D = Vector.dot(normal, Q); w = n.scale(1.0 / Vector.dot(n,n)); } @Override public BoundingBox getBoundingbox() { return bbox; } @Override public boolean hit(Ray r, Interval rayT, HitRecord rec) { //return false; // To be implemented double denom = Vector.dot(normal,r.getDirection()); if (Math.abs(denom) < 1e-8){ return false; } double t = (D - Vector.dot(normal, r.origin())) / denom; if (t < rayT.getMin() || t > rayT.getMax()){ return false; } Vector intersection = r.at(t); Vector planarHitPtVector = intersection.add(Q.invert()); double alpha = Vector.dot(w, Vector.cross(planarHitPtVector, v)); double beta = Vector.dot(w, Vector.cross(u, planarHitPtVector)); if (!isInterior(alpha ,beta ,rec)){ return false; } rec.setT(t); rec.setP(intersection); rec.setMaterial(mat); rec.setFaceNormal(r, normal); return true; } /** * Bekijkt of de<SUF>*/ private boolean isInterior(double a, double b, HitRecord rec){ if (a < 0 || 1 < a || b < 0 || 1 < b){ return false; } rec.setU(a); rec.setV(b); return true; } @Override public int hashCode() { return Objects.hash(Q, u, v, mat, bbox); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null || getClass() != obj.getClass()) return false; Quad quad = (Quad) obj; return Q.equals(quad.Q) && u.equals(quad.u) && v.equals(quad.v) && mat.equals(quad.mat) && bbox.equals(quad.bbox); } }
202329_0
package nl.Groep13.OrderHandler.model.v2; import lombok.Getter; import lombok.Setter; import lombok.ToString; import javax.persistence.*; @Entity @Getter @Setter @ToString @Table(name = "article_order") public class ArticleOrder { //Eigenaar van het materiaal, oftewel de klant //Ordernummer //Aantal meter restant //Stofnaam, -kleur en -samenstelling @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @OneToOne(cascade = CascadeType.ALL) @JoinColumn(name = "articleID", referencedColumnName = "id") private ArticleV2 articleID; @OneToOne(cascade = CascadeType.ALL) @JoinColumn(name = "customerID", referencedColumnName = "id") private CustomerV2 customerID; private boolean finished; public ArticleOrder(Long id, ArticleV2 articleID, CustomerV2 customerID, boolean finished) { this.id = id; this.articleID = articleID; this.customerID = customerID; this.finished = finished; } public ArticleOrder() { } }
Moemen02/IPSEN2-BE
src/main/java/nl/Groep13/OrderHandler/model/v2/ArticleOrder.java
287
//Eigenaar van het materiaal, oftewel de klant
line_comment
nl
package nl.Groep13.OrderHandler.model.v2; import lombok.Getter; import lombok.Setter; import lombok.ToString; import javax.persistence.*; @Entity @Getter @Setter @ToString @Table(name = "article_order") public class ArticleOrder { //Eigenaar van<SUF> //Ordernummer //Aantal meter restant //Stofnaam, -kleur en -samenstelling @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; @OneToOne(cascade = CascadeType.ALL) @JoinColumn(name = "articleID", referencedColumnName = "id") private ArticleV2 articleID; @OneToOne(cascade = CascadeType.ALL) @JoinColumn(name = "customerID", referencedColumnName = "id") private CustomerV2 customerID; private boolean finished; public ArticleOrder(Long id, ArticleV2 articleID, CustomerV2 customerID, boolean finished) { this.id = id; this.articleID = articleID; this.customerID = customerID; this.finished = finished; } public ArticleOrder() { } }
202331_1
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
CDS-VRN/CDS-BIJ12
theme-buisleidingen/src/main/java/nl/ipo/cds/etl/theme/buisleidingen/Message.java
2,494
// id, transportroutedeelId, laatsteMutatiedatum
line_comment
nl
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId,<SUF> TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
202331_9
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
CDS-VRN/CDS-BIJ12
theme-buisleidingen/src/main/java/nl/ipo/cds/etl/theme/buisleidingen/Message.java
2,494
// id, transportroutedeelId, srsName
line_comment
nl
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId,<SUF> GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
202331_12
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
CDS-VRN/CDS-BIJ12
theme-buisleidingen/src/main/java/nl/ipo/cds/etl/theme/buisleidingen/Message.java
2,494
// id, transportroutedeelId, maxLength
line_comment
nl
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId,<SUF> CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
202331_13
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
CDS-VRN/CDS-BIJ12
theme-buisleidingen/src/main/java/nl/ipo/cds/etl/theme/buisleidingen/Message.java
2,494
// id, transportroutedeelId, casNrMaatgevendeStof
line_comment
nl
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId,<SUF> TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
202331_15
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
CDS-VRN/CDS-BIJ12
theme-buisleidingen/src/main/java/nl/ipo/cds/etl/theme/buisleidingen/Message.java
2,494
// id, transportroutedeelId, effectafstandDodelijk
line_comment
nl
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId,<SUF> MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
202331_16
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
CDS-VRN/CDS-BIJ12
theme-buisleidingen/src/main/java/nl/ipo/cds/etl/theme/buisleidingen/Message.java
2,494
// id, transportroutedeelId, maatgevendScenarioDodelijk
line_comment
nl
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId,<SUF> RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
202331_25
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId, laatsteMutatiedatum RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
CDS-VRN/CDS-BIJ12
theme-buisleidingen/src/main/java/nl/ipo/cds/etl/theme/buisleidingen/Message.java
2,494
// id, transportrouteId, laatsteMutatiedatum
line_comment
nl
package nl.ipo.cds.etl.theme.buisleidingen; import java.util.ArrayList; import java.util.List; import nl.idgis.commons.jobexecutor.JobLogger.LogLevel; import nl.ipo.cds.etl.ValidatorMessageKey; import nl.ipo.cds.validation.AttributeExpression; import nl.ipo.cds.validation.Expression; public enum Message implements ValidatorMessageKey<Message, Context> { TRANSPORTROUTE_ID_NULL, // id TRANSPORTROUTE_ID_EMPTY, // id TRANSPORTROUTE_ID_TOO_LONG, // id, maxLength TRANSPORTROUTEDEEL_ID_NULL, // id TRANSPORTROUTEDEEL_ID_EMPTY, // id TRANSPORTROUTEDEEL_ID_DUPLICATE, // id, transportroutedeelId TRANSPORTROUTEDEEL_ID_TOO_LONG, // id, transportroutedeelId, maxLength RISICOKAART_MEDEWERKER_NAAM_NULL, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_EMPTY, // id, transportroutedeelId RISICOKAART_MEDEWERKER_NAAM_NOT_CONSTANT, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_NULL, // id, transportroutedeelId LAATSTE_MUTATIEDATUM_FUTURE, // id, transportroutedeelId, laatsteMutatiedatum TRANSPORTROUTE_NAAM_NULL, // id, transportroutedeelId TRANSPORTROUTE_NAAM_EMPTY, // id, transportroutedeelId TRANSPORTROUTE_NAAM_CHANGED, // id, transportroutedeelId, transportrouteNaam BUISLEIDING_TYPE_NULL, // id, transportroutedeelId BUISLEIDING_TYPE_INVALID, // id, transportroutedeelId, buisleidingType OMSCHRIJVING_NULL, // id, transportroutedeelId OMSCHRIJVING_EMPTY, // id, transportroutedeelId OMSCHRIJVING_TOO_LONG, // id, transportroutedeelId, maxLength NAAM_EIGENAAR_NULL, // id, transportroutedeelId NAAM_EIGENAAR_EMPTY, // id, transportroutedeelId NAAM_EIGENAAR_TOO_LONG, // id, transportroutedeelId, maxLength UITWENDIGE_DIAMETER_NULL, // id, transportroutedeelId UITWENDIGE_DIAMETER_INVALID, // id, transportroutedeelId, uitwendigeDiameter WAND_DIKTE_NULL, // id, transportroutedeelId WAND_DIKTE_INVALID, // id, transportroutedeelId, wandDikte MAXIMALE_WERKDRUK_NULL, // id, transportroutedeelId MAXIMALE_WERKDRUK_INVALID, // id, transportroutedeelId, wandDikte GEOMETRIE_NULL, // id, transportroutedeelId GEOMETRIE_NOT_LINESTRING, // id, transportroutedeelId GEOMETRIE_NO_SRS, // id, transportroutedeelId GEOMETRIE_NOT_RD, // id, transportroutedeelId, srsName GEOMETRIE_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation GEOMETRIE_DISCONTINUITY, // id, transportroutedeelId GEOMETRIE_SELF_INTERSECTION(LogLevel.WARNING), // id, transportroutedeelId, lastLocation LIGGING_BOVENKANT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_NULL, // id, transportroutedeelId MATERIAAL_SOORT_EMPTY, // id, transportroutedeelId MATERIAAL_SOORT_TOO_LONG, // id, transportroutedeelId, maxLength CAS_NR_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId CAS_NR_MAATGEVENDE_STOF_INVALID, // id, transportroutedeelId, casNrMaatgevendeStof TOELICHTING_MAATGEVENDE_STOF_NULL, // id, transportroutedeelId TOELICHTING_MAATGEVENDE_STOF_EMPTY, // id, transportroutedeelId STATUS_NULL, // id, transportroutedeelId STATUS_INVALID, // id, transportroutedeelId, status EFFECTAFSTAND_DODELIJK_INVALID, // id, transportroutedeelId, effectafstandDodelijk MAATGEVEND_SCENARIO_DODELIJK_INVALID,// id, transportroutedeelId, maatgevendScenarioDodelijk RISICOCONTOUR_TRANSPORTROUTE_NOT_FOUND, // id, transportrouteId RISICOCONTOUR_MISSING, // list of offending ids. RISICOCONTOUR_NULL, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_REDEN, // id, transportroutedeelId RISICOCONTOUR_IN_M_AND_RISICOCONTOUR,// id, transportroutedeelId RISICOCONTOUR_IN_M_INVALID, // id, transportroutedeelId, risicocontourInM RISICOCONTOUR_AND_GEEN_REDEN, // id, transportroutedeelId RISICOCONTOUR_EMPTY, RISICOCONTOUR_POINT_DUPLICATION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_DISCONTINUITY, // id, transportroutedeelId RISICOCONTOUR_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_RING_NOT_CLOSED, // id, transportroutedeelId RISICOCONTOUR_RING_SELF_INTERSECTION, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_TOUCH, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RINGS_WITHIN, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_DISCONNECTED, // id, transportroutedeelId RISICOCONTOUR_EXTERIOR_RING_CW(LogLevel.WARNING), // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_CCW, // id, transportroutedeelId RISICOCONTOUR_INTERIOR_RING_TOUCHES_EXTERIOR, // id, transportroutedeelId, lastLocation RISICOCONTOUR_INTERIOR_RING_OUTSIDE_EXTERIOR, // id, transportroutedeelId RISICOCONTOUR_SRS_NULL, // id, transportroutedeelId RISICOCONTOUR_SRS_NOT_RD, // id, transportroutedeelId, srsName GEEN_RISICOCONTOUR_REDEN_EMPTY, // id, transportroutedeelId RISICOCONTOUR_NOT_MULTIPOLYGON, // id, transportroutedeelId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_NULL, // id, transportrouteId RISICOCONTOUR_LAATSTE_MUTATIEDATUM_FUTURE, // id, transportrouteId,<SUF> RISICOCONTOUR_NOT_SET, // id, transportroutedeelId HAS_MORE_ERRORS(LogLevel.WARNING) ; private final LogLevel logLevel; Message () { this (LogLevel.ERROR); } Message (final LogLevel logLevel) { this.logLevel = logLevel; } @Override public boolean isBlocking() { return getLogLevel () == LogLevel.ERROR; } @Override public List<Expression<Message, Context, ?>> getMessageParameters() { final List<Expression<Message, Context, ?>> params = new ArrayList<> (); // RISICOCONTOUR_MISSING has no default parameters, it is a postcondition: if (this.equals (RISICOCONTOUR_MISSING)) { return params; } params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); params.add (new AttributeExpression<Message, Context, String> ("id", String.class)); if (toString ().contains ("RISICOCONTOUR") || this == TRANSPORTROUTE_ID_EMPTY || this == TRANSPORTROUTE_ID_NULL || this == TRANSPORTROUTE_ID_TOO_LONG || this == TRANSPORTROUTEDEEL_ID_EMPTY || this == TRANSPORTROUTEDEEL_ID_NULL) { params.add (new AttributeExpression<Message, Context, String> ("transportrouteId", String.class)); } else { params.add (new AttributeExpression<Message, Context, String> ("transportroutedeelId", String.class)); } return params; } @Override public int getMaxMessageLog() { return 10; } @Override public boolean isAddToShapeFile() { return false; } @Override public LogLevel getLogLevel() { return logLevel; } @Override public Message getMaxMessageKey() { return HAS_MORE_ERRORS; } }
202337_0
package Borden; /** * Vincent Verboven * 28/11/2022 */ public class VierkantBord extends Bord{ private double zijde; public VierkantBord(String materiaal, String kleur, double zijde){ super(materiaal, kleur); this.zijde = zijde; } @Override public double oppervlakte() { return zijde*zijde; } @Override public String toString() { return String.format("%-10s" + super.toString() + "%-10.2fcm²","Vierkant", oppervlakte()); } }
Meastro85/OOPROG-Java1
P2W3/P2W3/Servies/src/Borden/VierkantBord.java
154
/** * Vincent Verboven * 28/11/2022 */
block_comment
nl
package Borden; /** * Vincent Verboven <SUF>*/ public class VierkantBord extends Bord{ private double zijde; public VierkantBord(String materiaal, String kleur, double zijde){ super(materiaal, kleur); this.zijde = zijde; } @Override public double oppervlakte() { return zijde*zijde; } @Override public String toString() { return String.format("%-10s" + super.toString() + "%-10.2fcm²","Vierkant", oppervlakte()); } }
202350_0
package be.kdg.bord; /* De klasse Bord heeft als attributen materiaal en kleur, beide van het type String. Voorzie een constructor die beide attributen een beginwaarde geeft. Voorzie een methode oppervlakte die een double met als waarde 0.0 teruggeeft (anders geen polymorfisme mogelijk). Voorzie een toString methode om materiaal en kleur als één string terug te geven. */ public class Bord { private String materiaal; private String kleur; public Bord(String materiaal, String kleur) { this.materiaal = materiaal; this.kleur = kleur; } public double oppervlakte() { return 0.0; } @Override public String toString() { return String.format("%-9s %-6s", materiaal, kleur); } }
gvdhaege/KdG
Java Programming/Deel 2/W3 - Interfaces/Oefeningen/Oplossingen/Bord/src/be/kdg/bord/Bord.java
195
/* De klasse Bord heeft als attributen materiaal en kleur, beide van het type String. Voorzie een constructor die beide attributen een beginwaarde geeft. Voorzie een methode oppervlakte die een double met als waarde 0.0 teruggeeft (anders geen polymorfisme mogelijk). Voorzie een toString methode om materiaal en kleur als één string terug te geven. */
block_comment
nl
package be.kdg.bord; /* De klasse Bord<SUF>*/ public class Bord { private String materiaal; private String kleur; public Bord(String materiaal, String kleur) { this.materiaal = materiaal; this.kleur = kleur; } public double oppervlakte() { return 0.0; } @Override public String toString() { return String.format("%-9s %-6s", materiaal, kleur); } }
202378_0
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
EliasDeHondt/ComputerProgramming1-OOConcepts
W9P2/W9P2 Servies/Servies1/VierkantBord.java
187
/** @author Elias De Hondt * 28/11/2022 */
block_comment
nl
/** @author Elias De<SUF>*/ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
202378_2
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
EliasDeHondt/ComputerProgramming1-OOConcepts
W9P2/W9P2 Servies/Servies1/VierkantBord.java
187
// private double zijde;
line_comment
nl
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double<SUF> // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
202378_3
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
EliasDeHondt/ComputerProgramming1-OOConcepts
W9P2/W9P2 Servies/Servies1/VierkantBord.java
187
// public VierkantBord(String materiaal, String naam, double zijde) {
line_comment
nl
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String<SUF> // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
202378_4
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
EliasDeHondt/ComputerProgramming1-OOConcepts
W9P2/W9P2 Servies/Servies1/VierkantBord.java
187
// this.zijde = zijde;
line_comment
nl
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde =<SUF> // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
202378_5
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double oppervlakte() { // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
EliasDeHondt/ComputerProgramming1-OOConcepts
W9P2/W9P2 Servies/Servies1/VierkantBord.java
187
// public double oppervlakte() {
line_comment
nl
/** @author Elias De Hondt * 28/11/2022 */ //public class VierkantBord extends Bord{ // // Attributen // private double zijde; // // Constructors // public VierkantBord(String materiaal, String naam, double zijde) { // super(materiaal, naam); // this.zijde = zijde; // } // // Methode // @Override // public double<SUF> // return this.zijde*this.zijde; // } // @Override // public String toString() { // @Override van toString // return String.format("Vierkant\t %s %.0fcm²",super.toString(),this.oppervlakte()); // } //}
202461_7
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Fujisaki/Okamoto conversion of the McEliecePKCS. * Fujisaki and Okamoto propose hybrid encryption that merges a symmetric * encryption scheme which is secure in the find-guess model with an asymmetric * one-way encryption scheme which is sufficiently probabilistic to obtain a * public key cryptosystem which is CCA2-secure. For details, see D. Engelbert, * R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceFujisakiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.1"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } // generate random vector r of length k bits GF2Vector r = new GF2Vector(k, sr); // convert r to byte array byte[] rBytes = r.getEncoded(); // compute (r||input) byte[] rm = ByteUtils.concatenate(rBytes, input); // compute H(r||input) messDigest.update(rm, 0, rm.length); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hrm, 0); // convert H(r||input) to error vector z GF2Vector z = Conversions.encode(n, t, hrm); // compute c1 = E(r, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, r, z) .getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random c2 byte[] c2 = new byte[input.length]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split ciphertext (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector hrmVec = GF2Vector.OS2VP(n, c1); GF2Vector[] decC1 = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, hrmVec); byte[] rBytes = decC1[0].getEncoded(); // ... and obtain error vector z GF2Vector z = decC1[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random sequence byte[] mBytes = new byte[c2Len]; sr0.nextBytes(mBytes); // XOR with c2 to obtain m for (int i = 0; i < c2Len; i++) { mBytes[i] ^= c2[i]; } // compute H(r||m) byte[] rmBytes = ByteUtils.concatenate(rBytes, mBytes); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.update(rmBytes, 0, rmBytes.length); messDigest.doFinal(hrm, 0); // compute Conv(H(r||m)) hrmVec = Conversions.encode(n, t, hrm); // check that Conv(H(m||r)) = z if (!hrmVec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } // return plaintext m return mBytes; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McElieceFujisakiCipher.java
1,897
// get PRNG object
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Fujisaki/Okamoto conversion of the McEliecePKCS. * Fujisaki and Okamoto propose hybrid encryption that merges a symmetric * encryption scheme which is secure in the find-guess model with an asymmetric * one-way encryption scheme which is sufficiently probabilistic to obtain a * public key cryptosystem which is CCA2-secure. For details, see D. Engelbert, * R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceFujisakiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.1"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } // generate random vector r of length k bits GF2Vector r = new GF2Vector(k, sr); // convert r to byte array byte[] rBytes = r.getEncoded(); // compute (r||input) byte[] rm = ByteUtils.concatenate(rBytes, input); // compute H(r||input) messDigest.update(rm, 0, rm.length); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hrm, 0); // convert H(r||input) to error vector z GF2Vector z = Conversions.encode(n, t, hrm); // compute c1 = E(r, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, r, z) .getEncoded(); // get PRNG<SUF> DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random c2 byte[] c2 = new byte[input.length]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split ciphertext (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector hrmVec = GF2Vector.OS2VP(n, c1); GF2Vector[] decC1 = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, hrmVec); byte[] rBytes = decC1[0].getEncoded(); // ... and obtain error vector z GF2Vector z = decC1[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random sequence byte[] mBytes = new byte[c2Len]; sr0.nextBytes(mBytes); // XOR with c2 to obtain m for (int i = 0; i < c2Len; i++) { mBytes[i] ^= c2[i]; } // compute H(r||m) byte[] rmBytes = ByteUtils.concatenate(rBytes, mBytes); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.update(rmBytes, 0, rmBytes.length); messDigest.doFinal(hrm, 0); // compute Conv(H(r||m)) hrmVec = Conversions.encode(n, t, hrm); // check that Conv(H(m||r)) = z if (!hrmVec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } // return plaintext m return mBytes; } }
202461_9
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Fujisaki/Okamoto conversion of the McEliecePKCS. * Fujisaki and Okamoto propose hybrid encryption that merges a symmetric * encryption scheme which is secure in the find-guess model with an asymmetric * one-way encryption scheme which is sufficiently probabilistic to obtain a * public key cryptosystem which is CCA2-secure. For details, see D. Engelbert, * R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceFujisakiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.1"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } // generate random vector r of length k bits GF2Vector r = new GF2Vector(k, sr); // convert r to byte array byte[] rBytes = r.getEncoded(); // compute (r||input) byte[] rm = ByteUtils.concatenate(rBytes, input); // compute H(r||input) messDigest.update(rm, 0, rm.length); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hrm, 0); // convert H(r||input) to error vector z GF2Vector z = Conversions.encode(n, t, hrm); // compute c1 = E(r, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, r, z) .getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random c2 byte[] c2 = new byte[input.length]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split ciphertext (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector hrmVec = GF2Vector.OS2VP(n, c1); GF2Vector[] decC1 = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, hrmVec); byte[] rBytes = decC1[0].getEncoded(); // ... and obtain error vector z GF2Vector z = decC1[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random sequence byte[] mBytes = new byte[c2Len]; sr0.nextBytes(mBytes); // XOR with c2 to obtain m for (int i = 0; i < c2Len; i++) { mBytes[i] ^= c2[i]; } // compute H(r||m) byte[] rmBytes = ByteUtils.concatenate(rBytes, mBytes); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.update(rmBytes, 0, rmBytes.length); messDigest.doFinal(hrm, 0); // compute Conv(H(r||m)) hrmVec = Conversions.encode(n, t, hrm); // check that Conv(H(m||r)) = z if (!hrmVec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } // return plaintext m return mBytes; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McElieceFujisakiCipher.java
1,897
// generate random c2
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Fujisaki/Okamoto conversion of the McEliecePKCS. * Fujisaki and Okamoto propose hybrid encryption that merges a symmetric * encryption scheme which is secure in the find-guess model with an asymmetric * one-way encryption scheme which is sufficiently probabilistic to obtain a * public key cryptosystem which is CCA2-secure. For details, see D. Engelbert, * R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceFujisakiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.1"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } // generate random vector r of length k bits GF2Vector r = new GF2Vector(k, sr); // convert r to byte array byte[] rBytes = r.getEncoded(); // compute (r||input) byte[] rm = ByteUtils.concatenate(rBytes, input); // compute H(r||input) messDigest.update(rm, 0, rm.length); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hrm, 0); // convert H(r||input) to error vector z GF2Vector z = Conversions.encode(n, t, hrm); // compute c1 = E(r, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, r, z) .getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random<SUF> byte[] c2 = new byte[input.length]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split ciphertext (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector hrmVec = GF2Vector.OS2VP(n, c1); GF2Vector[] decC1 = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, hrmVec); byte[] rBytes = decC1[0].getEncoded(); // ... and obtain error vector z GF2Vector z = decC1[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random sequence byte[] mBytes = new byte[c2Len]; sr0.nextBytes(mBytes); // XOR with c2 to obtain m for (int i = 0; i < c2Len; i++) { mBytes[i] ^= c2[i]; } // compute H(r||m) byte[] rmBytes = ByteUtils.concatenate(rBytes, mBytes); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.update(rmBytes, 0, rmBytes.length); messDigest.doFinal(hrm, 0); // compute Conv(H(r||m)) hrmVec = Conversions.encode(n, t, hrm); // check that Conv(H(m||r)) = z if (!hrmVec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } // return plaintext m return mBytes; } }
202461_14
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Fujisaki/Okamoto conversion of the McEliecePKCS. * Fujisaki and Okamoto propose hybrid encryption that merges a symmetric * encryption scheme which is secure in the find-guess model with an asymmetric * one-way encryption scheme which is sufficiently probabilistic to obtain a * public key cryptosystem which is CCA2-secure. For details, see D. Engelbert, * R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceFujisakiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.1"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } // generate random vector r of length k bits GF2Vector r = new GF2Vector(k, sr); // convert r to byte array byte[] rBytes = r.getEncoded(); // compute (r||input) byte[] rm = ByteUtils.concatenate(rBytes, input); // compute H(r||input) messDigest.update(rm, 0, rm.length); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hrm, 0); // convert H(r||input) to error vector z GF2Vector z = Conversions.encode(n, t, hrm); // compute c1 = E(r, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, r, z) .getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random c2 byte[] c2 = new byte[input.length]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split ciphertext (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector hrmVec = GF2Vector.OS2VP(n, c1); GF2Vector[] decC1 = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, hrmVec); byte[] rBytes = decC1[0].getEncoded(); // ... and obtain error vector z GF2Vector z = decC1[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random sequence byte[] mBytes = new byte[c2Len]; sr0.nextBytes(mBytes); // XOR with c2 to obtain m for (int i = 0; i < c2Len; i++) { mBytes[i] ^= c2[i]; } // compute H(r||m) byte[] rmBytes = ByteUtils.concatenate(rBytes, mBytes); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.update(rmBytes, 0, rmBytes.length); messDigest.doFinal(hrm, 0); // compute Conv(H(r||m)) hrmVec = Conversions.encode(n, t, hrm); // check that Conv(H(m||r)) = z if (!hrmVec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } // return plaintext m return mBytes; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McElieceFujisakiCipher.java
1,897
// get PRNG object
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Fujisaki/Okamoto conversion of the McEliecePKCS. * Fujisaki and Okamoto propose hybrid encryption that merges a symmetric * encryption scheme which is secure in the find-guess model with an asymmetric * one-way encryption scheme which is sufficiently probabilistic to obtain a * public key cryptosystem which is CCA2-secure. For details, see D. Engelbert, * R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceFujisakiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.1"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } // generate random vector r of length k bits GF2Vector r = new GF2Vector(k, sr); // convert r to byte array byte[] rBytes = r.getEncoded(); // compute (r||input) byte[] rm = ByteUtils.concatenate(rBytes, input); // compute H(r||input) messDigest.update(rm, 0, rm.length); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hrm, 0); // convert H(r||input) to error vector z GF2Vector z = Conversions.encode(n, t, hrm); // compute c1 = E(r, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, r, z) .getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random c2 byte[] c2 = new byte[input.length]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split ciphertext (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector hrmVec = GF2Vector.OS2VP(n, c1); GF2Vector[] decC1 = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, hrmVec); byte[] rBytes = decC1[0].getEncoded(); // ... and obtain error vector z GF2Vector z = decC1[1]; // get PRNG<SUF> DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rBytes); // generate random sequence byte[] mBytes = new byte[c2Len]; sr0.nextBytes(mBytes); // XOR with c2 to obtain m for (int i = 0; i < c2Len; i++) { mBytes[i] ^= c2[i]; } // compute H(r||m) byte[] rmBytes = ByteUtils.concatenate(rBytes, mBytes); byte[] hrm = new byte[messDigest.getDigestSize()]; messDigest.update(rmBytes, 0, rmBytes.length); messDigest.doFinal(hrm, 0); // compute Conv(H(r||m)) hrmVec = Conversions.encode(n, t, hrm); // check that Conv(H(m||r)) = z if (!hrmVec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } // return plaintext m return mBytes; } }
202473_9
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Pointcheval conversion of the McEliecePKCS. * Pointcheval presents a generic technique to make a CCA2-secure cryptosystem * from any partially trapdoor one-way function in the random oracle model. For * details, see D. Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McEliecePointchevalCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.2"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object * @throws IllegalArgumentException if the key is invalid */ public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } protected int decryptOutputSize(int inLen) { return 0; } protected int encryptOutputSize(int inLen) { return 0; } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int kDiv8 = k >> 3; // generate random r of length k div 8 bytes byte[] r = new byte[kDiv8]; sr.nextBytes(r); // generate random vector r' of length k bits GF2Vector rPrime = new GF2Vector(k, sr); // convert r' to byte array byte[] rPrimeBytes = rPrime.getEncoded(); // compute (input||r) byte[] mr = ByteUtils.concatenate(input, r); // compute H(input||r) messDigest.update(mr, 0, mr.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // convert H(input||r) to error vector z GF2Vector z = Conversions.encode(n, t, hmr); // compute c1 = E(rPrime, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, rPrime, z).getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random c2 byte[] c2 = new byte[input.length + kDiv8]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // XOR with r for (int i = 0; i < kDiv8; i++) { c2[input.length + i] ^= r[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split cipher text (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector c1Vec = GF2Vector.OS2VP(n, c1); GF2Vector[] c1Dec = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, c1Vec); byte[] rPrimeBytes = c1Dec[0].getEncoded(); // ... and obtain error vector z GF2Vector z = c1Dec[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random sequence byte[] mrBytes = new byte[c2Len]; sr0.nextBytes(mrBytes); // XOR with c2 to obtain (m||r) for (int i = 0; i < c2Len; i++) { mrBytes[i] ^= c2[i]; } // compute H(m||r) messDigest.update(mrBytes, 0, mrBytes.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // compute Conv(H(m||r)) c1Vec = Conversions.encode(n, t, hmr); // check that Conv(H(m||r)) = z if (!c1Vec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: Invalid ciphertext."); } // split (m||r) to obtain m int kDiv8 = k >> 3; byte[][] mr = ByteUtils.split(mrBytes, c2Len - kDiv8); // return plain text m return mr[0]; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McEliecePointchevalCipher.java
2,115
// get PRNG object
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Pointcheval conversion of the McEliecePKCS. * Pointcheval presents a generic technique to make a CCA2-secure cryptosystem * from any partially trapdoor one-way function in the random oracle model. For * details, see D. Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McEliecePointchevalCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.2"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object * @throws IllegalArgumentException if the key is invalid */ public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } protected int decryptOutputSize(int inLen) { return 0; } protected int encryptOutputSize(int inLen) { return 0; } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int kDiv8 = k >> 3; // generate random r of length k div 8 bytes byte[] r = new byte[kDiv8]; sr.nextBytes(r); // generate random vector r' of length k bits GF2Vector rPrime = new GF2Vector(k, sr); // convert r' to byte array byte[] rPrimeBytes = rPrime.getEncoded(); // compute (input||r) byte[] mr = ByteUtils.concatenate(input, r); // compute H(input||r) messDigest.update(mr, 0, mr.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // convert H(input||r) to error vector z GF2Vector z = Conversions.encode(n, t, hmr); // compute c1 = E(rPrime, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, rPrime, z).getEncoded(); // get PRNG<SUF> DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random c2 byte[] c2 = new byte[input.length + kDiv8]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // XOR with r for (int i = 0; i < kDiv8; i++) { c2[input.length + i] ^= r[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split cipher text (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector c1Vec = GF2Vector.OS2VP(n, c1); GF2Vector[] c1Dec = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, c1Vec); byte[] rPrimeBytes = c1Dec[0].getEncoded(); // ... and obtain error vector z GF2Vector z = c1Dec[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random sequence byte[] mrBytes = new byte[c2Len]; sr0.nextBytes(mrBytes); // XOR with c2 to obtain (m||r) for (int i = 0; i < c2Len; i++) { mrBytes[i] ^= c2[i]; } // compute H(m||r) messDigest.update(mrBytes, 0, mrBytes.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // compute Conv(H(m||r)) c1Vec = Conversions.encode(n, t, hmr); // check that Conv(H(m||r)) = z if (!c1Vec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: Invalid ciphertext."); } // split (m||r) to obtain m int kDiv8 = k >> 3; byte[][] mr = ByteUtils.split(mrBytes, c2Len - kDiv8); // return plain text m return mr[0]; } }
202473_11
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Pointcheval conversion of the McEliecePKCS. * Pointcheval presents a generic technique to make a CCA2-secure cryptosystem * from any partially trapdoor one-way function in the random oracle model. For * details, see D. Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McEliecePointchevalCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.2"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object * @throws IllegalArgumentException if the key is invalid */ public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } protected int decryptOutputSize(int inLen) { return 0; } protected int encryptOutputSize(int inLen) { return 0; } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int kDiv8 = k >> 3; // generate random r of length k div 8 bytes byte[] r = new byte[kDiv8]; sr.nextBytes(r); // generate random vector r' of length k bits GF2Vector rPrime = new GF2Vector(k, sr); // convert r' to byte array byte[] rPrimeBytes = rPrime.getEncoded(); // compute (input||r) byte[] mr = ByteUtils.concatenate(input, r); // compute H(input||r) messDigest.update(mr, 0, mr.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // convert H(input||r) to error vector z GF2Vector z = Conversions.encode(n, t, hmr); // compute c1 = E(rPrime, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, rPrime, z).getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random c2 byte[] c2 = new byte[input.length + kDiv8]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // XOR with r for (int i = 0; i < kDiv8; i++) { c2[input.length + i] ^= r[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split cipher text (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector c1Vec = GF2Vector.OS2VP(n, c1); GF2Vector[] c1Dec = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, c1Vec); byte[] rPrimeBytes = c1Dec[0].getEncoded(); // ... and obtain error vector z GF2Vector z = c1Dec[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random sequence byte[] mrBytes = new byte[c2Len]; sr0.nextBytes(mrBytes); // XOR with c2 to obtain (m||r) for (int i = 0; i < c2Len; i++) { mrBytes[i] ^= c2[i]; } // compute H(m||r) messDigest.update(mrBytes, 0, mrBytes.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // compute Conv(H(m||r)) c1Vec = Conversions.encode(n, t, hmr); // check that Conv(H(m||r)) = z if (!c1Vec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: Invalid ciphertext."); } // split (m||r) to obtain m int kDiv8 = k >> 3; byte[][] mr = ByteUtils.split(mrBytes, c2Len - kDiv8); // return plain text m return mr[0]; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McEliecePointchevalCipher.java
2,115
// generate random c2
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Pointcheval conversion of the McEliecePKCS. * Pointcheval presents a generic technique to make a CCA2-secure cryptosystem * from any partially trapdoor one-way function in the random oracle model. For * details, see D. Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McEliecePointchevalCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.2"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object * @throws IllegalArgumentException if the key is invalid */ public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } protected int decryptOutputSize(int inLen) { return 0; } protected int encryptOutputSize(int inLen) { return 0; } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int kDiv8 = k >> 3; // generate random r of length k div 8 bytes byte[] r = new byte[kDiv8]; sr.nextBytes(r); // generate random vector r' of length k bits GF2Vector rPrime = new GF2Vector(k, sr); // convert r' to byte array byte[] rPrimeBytes = rPrime.getEncoded(); // compute (input||r) byte[] mr = ByteUtils.concatenate(input, r); // compute H(input||r) messDigest.update(mr, 0, mr.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // convert H(input||r) to error vector z GF2Vector z = Conversions.encode(n, t, hmr); // compute c1 = E(rPrime, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, rPrime, z).getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random<SUF> byte[] c2 = new byte[input.length + kDiv8]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // XOR with r for (int i = 0; i < kDiv8; i++) { c2[input.length + i] ^= r[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split cipher text (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector c1Vec = GF2Vector.OS2VP(n, c1); GF2Vector[] c1Dec = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, c1Vec); byte[] rPrimeBytes = c1Dec[0].getEncoded(); // ... and obtain error vector z GF2Vector z = c1Dec[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random sequence byte[] mrBytes = new byte[c2Len]; sr0.nextBytes(mrBytes); // XOR with c2 to obtain (m||r) for (int i = 0; i < c2Len; i++) { mrBytes[i] ^= c2[i]; } // compute H(m||r) messDigest.update(mrBytes, 0, mrBytes.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // compute Conv(H(m||r)) c1Vec = Conversions.encode(n, t, hmr); // check that Conv(H(m||r)) = z if (!c1Vec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: Invalid ciphertext."); } // split (m||r) to obtain m int kDiv8 = k >> 3; byte[][] mr = ByteUtils.split(mrBytes, c2Len - kDiv8); // return plain text m return mr[0]; } }
202473_17
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Pointcheval conversion of the McEliecePKCS. * Pointcheval presents a generic technique to make a CCA2-secure cryptosystem * from any partially trapdoor one-way function in the random oracle model. For * details, see D. Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McEliecePointchevalCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.2"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object * @throws IllegalArgumentException if the key is invalid */ public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } protected int decryptOutputSize(int inLen) { return 0; } protected int encryptOutputSize(int inLen) { return 0; } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int kDiv8 = k >> 3; // generate random r of length k div 8 bytes byte[] r = new byte[kDiv8]; sr.nextBytes(r); // generate random vector r' of length k bits GF2Vector rPrime = new GF2Vector(k, sr); // convert r' to byte array byte[] rPrimeBytes = rPrime.getEncoded(); // compute (input||r) byte[] mr = ByteUtils.concatenate(input, r); // compute H(input||r) messDigest.update(mr, 0, mr.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // convert H(input||r) to error vector z GF2Vector z = Conversions.encode(n, t, hmr); // compute c1 = E(rPrime, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, rPrime, z).getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random c2 byte[] c2 = new byte[input.length + kDiv8]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // XOR with r for (int i = 0; i < kDiv8; i++) { c2[input.length + i] ^= r[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split cipher text (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector c1Vec = GF2Vector.OS2VP(n, c1); GF2Vector[] c1Dec = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, c1Vec); byte[] rPrimeBytes = c1Dec[0].getEncoded(); // ... and obtain error vector z GF2Vector z = c1Dec[1]; // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random sequence byte[] mrBytes = new byte[c2Len]; sr0.nextBytes(mrBytes); // XOR with c2 to obtain (m||r) for (int i = 0; i < c2Len; i++) { mrBytes[i] ^= c2[i]; } // compute H(m||r) messDigest.update(mrBytes, 0, mrBytes.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // compute Conv(H(m||r)) c1Vec = Conversions.encode(n, t, hmr); // check that Conv(H(m||r)) = z if (!c1Vec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: Invalid ciphertext."); } // split (m||r) to obtain m int kDiv8 = k >> 3; byte[][] mr = ByteUtils.split(mrBytes, c2Len - kDiv8); // return plain text m return mr[0]; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McEliecePointchevalCipher.java
2,115
// get PRNG object
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; /** * This class implements the Pointcheval conversion of the McEliecePKCS. * Pointcheval presents a generic technique to make a CCA2-secure cryptosystem * from any partially trapdoor one-way function in the random oracle model. For * details, see D. Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McEliecePointchevalCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.2"; private Digest messDigest; private SecureRandom sr; /** * The McEliece main parameters */ private int n, k, t; McElieceCCA2KeyParameters key; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object * @throws IllegalArgumentException if the key is invalid */ public int getKeySize(McElieceCCA2KeyParameters key) throws IllegalArgumentException { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } protected int decryptOutputSize(int inLen) { return 0; } protected int encryptOutputSize(int inLen) { return 0; } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int kDiv8 = k >> 3; // generate random r of length k div 8 bytes byte[] r = new byte[kDiv8]; sr.nextBytes(r); // generate random vector r' of length k bits GF2Vector rPrime = new GF2Vector(k, sr); // convert r' to byte array byte[] rPrimeBytes = rPrime.getEncoded(); // compute (input||r) byte[] mr = ByteUtils.concatenate(input, r); // compute H(input||r) messDigest.update(mr, 0, mr.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // convert H(input||r) to error vector z GF2Vector z = Conversions.encode(n, t, hmr); // compute c1 = E(rPrime, z) byte[] c1 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, rPrime, z).getEncoded(); // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random c2 byte[] c2 = new byte[input.length + kDiv8]; sr0.nextBytes(c2); // XOR with input for (int i = 0; i < input.length; i++) { c2[i] ^= input[i]; } // XOR with r for (int i = 0; i < kDiv8; i++) { c2[input.length + i] ^= r[i]; } // return (c1||c2) return ByteUtils.concatenate(c1, c2); } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c1Len = (n + 7) >> 3; int c2Len = input.length - c1Len; // split cipher text (c1||c2) byte[][] c1c2 = ByteUtils.split(input, c1Len); byte[] c1 = c1c2[0]; byte[] c2 = c1c2[1]; // decrypt c1 ... GF2Vector c1Vec = GF2Vector.OS2VP(n, c1); GF2Vector[] c1Dec = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, c1Vec); byte[] rPrimeBytes = c1Dec[0].getEncoded(); // ... and obtain error vector z GF2Vector z = c1Dec[1]; // get PRNG<SUF> DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrimeBytes); // generate random sequence byte[] mrBytes = new byte[c2Len]; sr0.nextBytes(mrBytes); // XOR with c2 to obtain (m||r) for (int i = 0; i < c2Len; i++) { mrBytes[i] ^= c2[i]; } // compute H(m||r) messDigest.update(mrBytes, 0, mrBytes.length); byte[] hmr = new byte[messDigest.getDigestSize()]; messDigest.doFinal(hmr, 0); // compute Conv(H(m||r)) c1Vec = Conversions.encode(n, t, hmr); // check that Conv(H(m||r)) = z if (!c1Vec.equals(z)) { throw new InvalidCipherTextException("Bad Padding: Invalid ciphertext."); } // split (m||r) to obtain m int kDiv8 = k >> 3; byte[][] mr = ByteUtils.split(mrBytes, c2Len - kDiv8); // return plain text m return mr[0]; } }
202483_6
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; import org.bouncycastle.pqc.legacy.math.linearalgebra.IntegerFunctions; /** * This class implements the Kobara/Imai conversion of the McEliecePKCS. This is * a conversion of the McEliecePKCS which is CCA2-secure. For details, see D. * Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceKobaraImaiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.3"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; /** * A predetermined public constant. */ public static final byte[] PUBLIC_CONSTANT = "a predetermined public constant" .getBytes(); private Digest messDigest; private SecureRandom sr; McElieceCCA2KeyParameters key; /** * The McEliece main parameters */ private int n, k, t; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object */ public int getKeySize(McElieceCCA2KeyParameters key) { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int mLen = c4Len + c5Len - c2Len - PUBLIC_CONSTANT.length; if (input.length > mLen) { mLen = input.length; } int c1Len = mLen + PUBLIC_CONSTANT.length; int c6Len = c1Len + c2Len - c4Len - c5Len; // compute (m||const) byte[] mConst = new byte[c1Len]; System.arraycopy(input, 0, mConst, 0, input.length); System.arraycopy(PUBLIC_CONSTANT, 0, mConst, mLen, PUBLIC_CONSTANT.length); // generate random r of length c2Len bytes byte[] r = new byte[c2Len]; sr.nextBytes(r); // get PRNG object // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(r); // generate random sequence ... byte[] c1 = new byte[c1Len]; sr0.nextBytes(c1); // ... and XOR with (m||const) to obtain c1 for (int i = c1Len - 1; i >= 0; i--) { c1[i] ^= mConst[i]; } // compute H(c1) ... byte[] c2 = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(c2, 0); // ... and XOR with r for (int i = c2Len - 1; i >= 0; i--) { c2[i] ^= r[i]; } // compute (c2||c1) byte[] c2c1 = ByteUtils.concatenate(c2, c1); // split (c2||c1) into (c6||c5||c4), where c4Len is k/8 bytes, c5Len is // floor[log(n|t)]/8 bytes, and c6Len is c1Len+c2Len-c4Len-c5Len (may be // 0). byte[] c6 = new byte[0]; if (c6Len > 0) { c6 = new byte[c6Len]; System.arraycopy(c2c1, 0, c6, 0, c6Len); } byte[] c5 = new byte[c5Len]; System.arraycopy(c2c1, c6Len, c5, 0, c5Len); byte[] c4 = new byte[c4Len]; System.arraycopy(c2c1, c6Len + c5Len, c4, 0, c4Len); // convert c4 to vector over GF(2) GF2Vector c4Vec = GF2Vector.OS2VP(k, c4); // convert c5 to error vector z GF2Vector z = Conversions.encode(n, t, c5); // compute encC4 = E(c4, z) byte[] encC4 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, c4Vec, z).getEncoded(); // if c6Len > 0 if (c6Len > 0) { // return (c6||encC4) return ByteUtils.concatenate(c6, encC4); } // else, return encC4 return encC4; } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int nDiv8 = n >> 3; if (input.length < nDiv8) { throw new InvalidCipherTextException("Bad Padding: Ciphertext too short."); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int c6Len = input.length - nDiv8; // split cipher text (c6||encC4), where c6 may be empty byte[] c6, encC4; if (c6Len > 0) { byte[][] c6EncC4 = ByteUtils.split(input, c6Len); c6 = c6EncC4[0]; encC4 = c6EncC4[1]; } else { c6 = new byte[0]; encC4 = input; } // convert encC4 into vector over GF(2) GF2Vector encC4Vec = GF2Vector.OS2VP(n, encC4); // decrypt encC4Vec to obtain c4 and error vector z GF2Vector[] c4z = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, encC4Vec); byte[] c4 = c4z[0].getEncoded(); GF2Vector z = c4z[1]; // if length of c4 is greater than c4Len (because of padding) ... if (c4.length > c4Len) { // ... truncate the padding bytes c4 = ByteUtils.subArray(c4, 0, c4Len); } // compute c5 = Conv^-1(z) byte[] c5 = Conversions.decode(n, t, z); // if c5 is shorter than expected, pad with leading zeroes if (c5.length < c5Len) { byte[] paddedC5 = new byte[c5Len]; System.arraycopy(c5, 0, paddedC5, c5Len - c5.length, c5.length); c5 = paddedC5; } // compute (c6||c5||c4) byte[] c6c5c4 = ByteUtils.concatenate(c6, c5); c6c5c4 = ByteUtils.concatenate(c6c5c4, c4); // split (c6||c5||c4) into (c2||c1), where c2Len = mdLen and c1Len = // input.length-c2Len bytes. int c1Len = c6c5c4.length - c2Len; byte[][] c2c1 = ByteUtils.split(c6c5c4, c2Len); byte[] c2 = c2c1[0]; byte[] c1 = c2c1[1]; // compute H(c1) ... byte[] rPrime = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(rPrime, 0); // ... and XOR with c2 to obtain r' for (int i = c2Len - 1; i >= 0; i--) { rPrime[i] ^= c2[i]; } // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrime); // generate random sequence R(r') ... byte[] mConstPrime = new byte[c1Len]; sr0.nextBytes(mConstPrime); // ... and XOR with c1 to obtain (m||const') for (int i = c1Len - 1; i >= 0; i--) { mConstPrime[i] ^= c1[i]; } if (mConstPrime.length < c1Len) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } byte[][] temp = ByteUtils.split(mConstPrime, c1Len - PUBLIC_CONSTANT.length); byte[] mr = temp[0]; byte[] constPrime = temp[1]; if (!ByteUtils.equals(constPrime, PUBLIC_CONSTANT)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } return mr; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McElieceKobaraImaiCipher.java
3,171
// get PRNG object
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; import org.bouncycastle.pqc.legacy.math.linearalgebra.IntegerFunctions; /** * This class implements the Kobara/Imai conversion of the McEliecePKCS. This is * a conversion of the McEliecePKCS which is CCA2-secure. For details, see D. * Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceKobaraImaiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.3"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; /** * A predetermined public constant. */ public static final byte[] PUBLIC_CONSTANT = "a predetermined public constant" .getBytes(); private Digest messDigest; private SecureRandom sr; McElieceCCA2KeyParameters key; /** * The McEliece main parameters */ private int n, k, t; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object */ public int getKeySize(McElieceCCA2KeyParameters key) { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int mLen = c4Len + c5Len - c2Len - PUBLIC_CONSTANT.length; if (input.length > mLen) { mLen = input.length; } int c1Len = mLen + PUBLIC_CONSTANT.length; int c6Len = c1Len + c2Len - c4Len - c5Len; // compute (m||const) byte[] mConst = new byte[c1Len]; System.arraycopy(input, 0, mConst, 0, input.length); System.arraycopy(PUBLIC_CONSTANT, 0, mConst, mLen, PUBLIC_CONSTANT.length); // generate random r of length c2Len bytes byte[] r = new byte[c2Len]; sr.nextBytes(r); // get PRNG<SUF> // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(r); // generate random sequence ... byte[] c1 = new byte[c1Len]; sr0.nextBytes(c1); // ... and XOR with (m||const) to obtain c1 for (int i = c1Len - 1; i >= 0; i--) { c1[i] ^= mConst[i]; } // compute H(c1) ... byte[] c2 = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(c2, 0); // ... and XOR with r for (int i = c2Len - 1; i >= 0; i--) { c2[i] ^= r[i]; } // compute (c2||c1) byte[] c2c1 = ByteUtils.concatenate(c2, c1); // split (c2||c1) into (c6||c5||c4), where c4Len is k/8 bytes, c5Len is // floor[log(n|t)]/8 bytes, and c6Len is c1Len+c2Len-c4Len-c5Len (may be // 0). byte[] c6 = new byte[0]; if (c6Len > 0) { c6 = new byte[c6Len]; System.arraycopy(c2c1, 0, c6, 0, c6Len); } byte[] c5 = new byte[c5Len]; System.arraycopy(c2c1, c6Len, c5, 0, c5Len); byte[] c4 = new byte[c4Len]; System.arraycopy(c2c1, c6Len + c5Len, c4, 0, c4Len); // convert c4 to vector over GF(2) GF2Vector c4Vec = GF2Vector.OS2VP(k, c4); // convert c5 to error vector z GF2Vector z = Conversions.encode(n, t, c5); // compute encC4 = E(c4, z) byte[] encC4 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, c4Vec, z).getEncoded(); // if c6Len > 0 if (c6Len > 0) { // return (c6||encC4) return ByteUtils.concatenate(c6, encC4); } // else, return encC4 return encC4; } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int nDiv8 = n >> 3; if (input.length < nDiv8) { throw new InvalidCipherTextException("Bad Padding: Ciphertext too short."); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int c6Len = input.length - nDiv8; // split cipher text (c6||encC4), where c6 may be empty byte[] c6, encC4; if (c6Len > 0) { byte[][] c6EncC4 = ByteUtils.split(input, c6Len); c6 = c6EncC4[0]; encC4 = c6EncC4[1]; } else { c6 = new byte[0]; encC4 = input; } // convert encC4 into vector over GF(2) GF2Vector encC4Vec = GF2Vector.OS2VP(n, encC4); // decrypt encC4Vec to obtain c4 and error vector z GF2Vector[] c4z = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, encC4Vec); byte[] c4 = c4z[0].getEncoded(); GF2Vector z = c4z[1]; // if length of c4 is greater than c4Len (because of padding) ... if (c4.length > c4Len) { // ... truncate the padding bytes c4 = ByteUtils.subArray(c4, 0, c4Len); } // compute c5 = Conv^-1(z) byte[] c5 = Conversions.decode(n, t, z); // if c5 is shorter than expected, pad with leading zeroes if (c5.length < c5Len) { byte[] paddedC5 = new byte[c5Len]; System.arraycopy(c5, 0, paddedC5, c5Len - c5.length, c5.length); c5 = paddedC5; } // compute (c6||c5||c4) byte[] c6c5c4 = ByteUtils.concatenate(c6, c5); c6c5c4 = ByteUtils.concatenate(c6c5c4, c4); // split (c6||c5||c4) into (c2||c1), where c2Len = mdLen and c1Len = // input.length-c2Len bytes. int c1Len = c6c5c4.length - c2Len; byte[][] c2c1 = ByteUtils.split(c6c5c4, c2Len); byte[] c2 = c2c1[0]; byte[] c1 = c2c1[1]; // compute H(c1) ... byte[] rPrime = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(rPrime, 0); // ... and XOR with c2 to obtain r' for (int i = c2Len - 1; i >= 0; i--) { rPrime[i] ^= c2[i]; } // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrime); // generate random sequence R(r') ... byte[] mConstPrime = new byte[c1Len]; sr0.nextBytes(mConstPrime); // ... and XOR with c1 to obtain (m||const') for (int i = c1Len - 1; i >= 0; i--) { mConstPrime[i] ^= c1[i]; } if (mConstPrime.length < c1Len) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } byte[][] temp = ByteUtils.split(mConstPrime, c1Len - PUBLIC_CONSTANT.length); byte[] mr = temp[0]; byte[] constPrime = temp[1]; if (!ByteUtils.equals(constPrime, PUBLIC_CONSTANT)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } return mr; } }
202483_7
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; import org.bouncycastle.pqc.legacy.math.linearalgebra.IntegerFunctions; /** * This class implements the Kobara/Imai conversion of the McEliecePKCS. This is * a conversion of the McEliecePKCS which is CCA2-secure. For details, see D. * Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceKobaraImaiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.3"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; /** * A predetermined public constant. */ public static final byte[] PUBLIC_CONSTANT = "a predetermined public constant" .getBytes(); private Digest messDigest; private SecureRandom sr; McElieceCCA2KeyParameters key; /** * The McEliece main parameters */ private int n, k, t; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object */ public int getKeySize(McElieceCCA2KeyParameters key) { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int mLen = c4Len + c5Len - c2Len - PUBLIC_CONSTANT.length; if (input.length > mLen) { mLen = input.length; } int c1Len = mLen + PUBLIC_CONSTANT.length; int c6Len = c1Len + c2Len - c4Len - c5Len; // compute (m||const) byte[] mConst = new byte[c1Len]; System.arraycopy(input, 0, mConst, 0, input.length); System.arraycopy(PUBLIC_CONSTANT, 0, mConst, mLen, PUBLIC_CONSTANT.length); // generate random r of length c2Len bytes byte[] r = new byte[c2Len]; sr.nextBytes(r); // get PRNG object // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(r); // generate random sequence ... byte[] c1 = new byte[c1Len]; sr0.nextBytes(c1); // ... and XOR with (m||const) to obtain c1 for (int i = c1Len - 1; i >= 0; i--) { c1[i] ^= mConst[i]; } // compute H(c1) ... byte[] c2 = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(c2, 0); // ... and XOR with r for (int i = c2Len - 1; i >= 0; i--) { c2[i] ^= r[i]; } // compute (c2||c1) byte[] c2c1 = ByteUtils.concatenate(c2, c1); // split (c2||c1) into (c6||c5||c4), where c4Len is k/8 bytes, c5Len is // floor[log(n|t)]/8 bytes, and c6Len is c1Len+c2Len-c4Len-c5Len (may be // 0). byte[] c6 = new byte[0]; if (c6Len > 0) { c6 = new byte[c6Len]; System.arraycopy(c2c1, 0, c6, 0, c6Len); } byte[] c5 = new byte[c5Len]; System.arraycopy(c2c1, c6Len, c5, 0, c5Len); byte[] c4 = new byte[c4Len]; System.arraycopy(c2c1, c6Len + c5Len, c4, 0, c4Len); // convert c4 to vector over GF(2) GF2Vector c4Vec = GF2Vector.OS2VP(k, c4); // convert c5 to error vector z GF2Vector z = Conversions.encode(n, t, c5); // compute encC4 = E(c4, z) byte[] encC4 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, c4Vec, z).getEncoded(); // if c6Len > 0 if (c6Len > 0) { // return (c6||encC4) return ByteUtils.concatenate(c6, encC4); } // else, return encC4 return encC4; } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int nDiv8 = n >> 3; if (input.length < nDiv8) { throw new InvalidCipherTextException("Bad Padding: Ciphertext too short."); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int c6Len = input.length - nDiv8; // split cipher text (c6||encC4), where c6 may be empty byte[] c6, encC4; if (c6Len > 0) { byte[][] c6EncC4 = ByteUtils.split(input, c6Len); c6 = c6EncC4[0]; encC4 = c6EncC4[1]; } else { c6 = new byte[0]; encC4 = input; } // convert encC4 into vector over GF(2) GF2Vector encC4Vec = GF2Vector.OS2VP(n, encC4); // decrypt encC4Vec to obtain c4 and error vector z GF2Vector[] c4z = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, encC4Vec); byte[] c4 = c4z[0].getEncoded(); GF2Vector z = c4z[1]; // if length of c4 is greater than c4Len (because of padding) ... if (c4.length > c4Len) { // ... truncate the padding bytes c4 = ByteUtils.subArray(c4, 0, c4Len); } // compute c5 = Conv^-1(z) byte[] c5 = Conversions.decode(n, t, z); // if c5 is shorter than expected, pad with leading zeroes if (c5.length < c5Len) { byte[] paddedC5 = new byte[c5Len]; System.arraycopy(c5, 0, paddedC5, c5Len - c5.length, c5.length); c5 = paddedC5; } // compute (c6||c5||c4) byte[] c6c5c4 = ByteUtils.concatenate(c6, c5); c6c5c4 = ByteUtils.concatenate(c6c5c4, c4); // split (c6||c5||c4) into (c2||c1), where c2Len = mdLen and c1Len = // input.length-c2Len bytes. int c1Len = c6c5c4.length - c2Len; byte[][] c2c1 = ByteUtils.split(c6c5c4, c2Len); byte[] c2 = c2c1[0]; byte[] c1 = c2c1[1]; // compute H(c1) ... byte[] rPrime = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(rPrime, 0); // ... and XOR with c2 to obtain r' for (int i = c2Len - 1; i >= 0; i--) { rPrime[i] ^= c2[i]; } // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrime); // generate random sequence R(r') ... byte[] mConstPrime = new byte[c1Len]; sr0.nextBytes(mConstPrime); // ... and XOR with c1 to obtain (m||const') for (int i = c1Len - 1; i >= 0; i--) { mConstPrime[i] ^= c1[i]; } if (mConstPrime.length < c1Len) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } byte[][] temp = ByteUtils.split(mConstPrime, c1Len - PUBLIC_CONSTANT.length); byte[] mr = temp[0]; byte[] constPrime = temp[1]; if (!ByteUtils.equals(constPrime, PUBLIC_CONSTANT)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } return mr; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McElieceKobaraImaiCipher.java
3,171
// get PRNG object
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; import org.bouncycastle.pqc.legacy.math.linearalgebra.IntegerFunctions; /** * This class implements the Kobara/Imai conversion of the McEliecePKCS. This is * a conversion of the McEliecePKCS which is CCA2-secure. For details, see D. * Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceKobaraImaiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.3"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; /** * A predetermined public constant. */ public static final byte[] PUBLIC_CONSTANT = "a predetermined public constant" .getBytes(); private Digest messDigest; private SecureRandom sr; McElieceCCA2KeyParameters key; /** * The McEliece main parameters */ private int n, k, t; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object */ public int getKeySize(McElieceCCA2KeyParameters key) { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int mLen = c4Len + c5Len - c2Len - PUBLIC_CONSTANT.length; if (input.length > mLen) { mLen = input.length; } int c1Len = mLen + PUBLIC_CONSTANT.length; int c6Len = c1Len + c2Len - c4Len - c5Len; // compute (m||const) byte[] mConst = new byte[c1Len]; System.arraycopy(input, 0, mConst, 0, input.length); System.arraycopy(PUBLIC_CONSTANT, 0, mConst, mLen, PUBLIC_CONSTANT.length); // generate random r of length c2Len bytes byte[] r = new byte[c2Len]; sr.nextBytes(r); // get PRNG object // get PRNG<SUF> DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(r); // generate random sequence ... byte[] c1 = new byte[c1Len]; sr0.nextBytes(c1); // ... and XOR with (m||const) to obtain c1 for (int i = c1Len - 1; i >= 0; i--) { c1[i] ^= mConst[i]; } // compute H(c1) ... byte[] c2 = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(c2, 0); // ... and XOR with r for (int i = c2Len - 1; i >= 0; i--) { c2[i] ^= r[i]; } // compute (c2||c1) byte[] c2c1 = ByteUtils.concatenate(c2, c1); // split (c2||c1) into (c6||c5||c4), where c4Len is k/8 bytes, c5Len is // floor[log(n|t)]/8 bytes, and c6Len is c1Len+c2Len-c4Len-c5Len (may be // 0). byte[] c6 = new byte[0]; if (c6Len > 0) { c6 = new byte[c6Len]; System.arraycopy(c2c1, 0, c6, 0, c6Len); } byte[] c5 = new byte[c5Len]; System.arraycopy(c2c1, c6Len, c5, 0, c5Len); byte[] c4 = new byte[c4Len]; System.arraycopy(c2c1, c6Len + c5Len, c4, 0, c4Len); // convert c4 to vector over GF(2) GF2Vector c4Vec = GF2Vector.OS2VP(k, c4); // convert c5 to error vector z GF2Vector z = Conversions.encode(n, t, c5); // compute encC4 = E(c4, z) byte[] encC4 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, c4Vec, z).getEncoded(); // if c6Len > 0 if (c6Len > 0) { // return (c6||encC4) return ByteUtils.concatenate(c6, encC4); } // else, return encC4 return encC4; } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int nDiv8 = n >> 3; if (input.length < nDiv8) { throw new InvalidCipherTextException("Bad Padding: Ciphertext too short."); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int c6Len = input.length - nDiv8; // split cipher text (c6||encC4), where c6 may be empty byte[] c6, encC4; if (c6Len > 0) { byte[][] c6EncC4 = ByteUtils.split(input, c6Len); c6 = c6EncC4[0]; encC4 = c6EncC4[1]; } else { c6 = new byte[0]; encC4 = input; } // convert encC4 into vector over GF(2) GF2Vector encC4Vec = GF2Vector.OS2VP(n, encC4); // decrypt encC4Vec to obtain c4 and error vector z GF2Vector[] c4z = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, encC4Vec); byte[] c4 = c4z[0].getEncoded(); GF2Vector z = c4z[1]; // if length of c4 is greater than c4Len (because of padding) ... if (c4.length > c4Len) { // ... truncate the padding bytes c4 = ByteUtils.subArray(c4, 0, c4Len); } // compute c5 = Conv^-1(z) byte[] c5 = Conversions.decode(n, t, z); // if c5 is shorter than expected, pad with leading zeroes if (c5.length < c5Len) { byte[] paddedC5 = new byte[c5Len]; System.arraycopy(c5, 0, paddedC5, c5Len - c5.length, c5.length); c5 = paddedC5; } // compute (c6||c5||c4) byte[] c6c5c4 = ByteUtils.concatenate(c6, c5); c6c5c4 = ByteUtils.concatenate(c6c5c4, c4); // split (c6||c5||c4) into (c2||c1), where c2Len = mdLen and c1Len = // input.length-c2Len bytes. int c1Len = c6c5c4.length - c2Len; byte[][] c2c1 = ByteUtils.split(c6c5c4, c2Len); byte[] c2 = c2c1[0]; byte[] c1 = c2c1[1]; // compute H(c1) ... byte[] rPrime = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(rPrime, 0); // ... and XOR with c2 to obtain r' for (int i = c2Len - 1; i >= 0; i--) { rPrime[i] ^= c2[i]; } // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrime); // generate random sequence R(r') ... byte[] mConstPrime = new byte[c1Len]; sr0.nextBytes(mConstPrime); // ... and XOR with c1 to obtain (m||const') for (int i = c1Len - 1; i >= 0; i--) { mConstPrime[i] ^= c1[i]; } if (mConstPrime.length < c1Len) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } byte[][] temp = ByteUtils.split(mConstPrime, c1Len - PUBLIC_CONSTANT.length); byte[] mr = temp[0]; byte[] constPrime = temp[1]; if (!ByteUtils.equals(constPrime, PUBLIC_CONSTANT)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } return mr; } }
202483_30
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; import org.bouncycastle.pqc.legacy.math.linearalgebra.IntegerFunctions; /** * This class implements the Kobara/Imai conversion of the McEliecePKCS. This is * a conversion of the McEliecePKCS which is CCA2-secure. For details, see D. * Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceKobaraImaiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.3"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; /** * A predetermined public constant. */ public static final byte[] PUBLIC_CONSTANT = "a predetermined public constant" .getBytes(); private Digest messDigest; private SecureRandom sr; McElieceCCA2KeyParameters key; /** * The McEliece main parameters */ private int n, k, t; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object */ public int getKeySize(McElieceCCA2KeyParameters key) { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int mLen = c4Len + c5Len - c2Len - PUBLIC_CONSTANT.length; if (input.length > mLen) { mLen = input.length; } int c1Len = mLen + PUBLIC_CONSTANT.length; int c6Len = c1Len + c2Len - c4Len - c5Len; // compute (m||const) byte[] mConst = new byte[c1Len]; System.arraycopy(input, 0, mConst, 0, input.length); System.arraycopy(PUBLIC_CONSTANT, 0, mConst, mLen, PUBLIC_CONSTANT.length); // generate random r of length c2Len bytes byte[] r = new byte[c2Len]; sr.nextBytes(r); // get PRNG object // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(r); // generate random sequence ... byte[] c1 = new byte[c1Len]; sr0.nextBytes(c1); // ... and XOR with (m||const) to obtain c1 for (int i = c1Len - 1; i >= 0; i--) { c1[i] ^= mConst[i]; } // compute H(c1) ... byte[] c2 = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(c2, 0); // ... and XOR with r for (int i = c2Len - 1; i >= 0; i--) { c2[i] ^= r[i]; } // compute (c2||c1) byte[] c2c1 = ByteUtils.concatenate(c2, c1); // split (c2||c1) into (c6||c5||c4), where c4Len is k/8 bytes, c5Len is // floor[log(n|t)]/8 bytes, and c6Len is c1Len+c2Len-c4Len-c5Len (may be // 0). byte[] c6 = new byte[0]; if (c6Len > 0) { c6 = new byte[c6Len]; System.arraycopy(c2c1, 0, c6, 0, c6Len); } byte[] c5 = new byte[c5Len]; System.arraycopy(c2c1, c6Len, c5, 0, c5Len); byte[] c4 = new byte[c4Len]; System.arraycopy(c2c1, c6Len + c5Len, c4, 0, c4Len); // convert c4 to vector over GF(2) GF2Vector c4Vec = GF2Vector.OS2VP(k, c4); // convert c5 to error vector z GF2Vector z = Conversions.encode(n, t, c5); // compute encC4 = E(c4, z) byte[] encC4 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, c4Vec, z).getEncoded(); // if c6Len > 0 if (c6Len > 0) { // return (c6||encC4) return ByteUtils.concatenate(c6, encC4); } // else, return encC4 return encC4; } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int nDiv8 = n >> 3; if (input.length < nDiv8) { throw new InvalidCipherTextException("Bad Padding: Ciphertext too short."); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int c6Len = input.length - nDiv8; // split cipher text (c6||encC4), where c6 may be empty byte[] c6, encC4; if (c6Len > 0) { byte[][] c6EncC4 = ByteUtils.split(input, c6Len); c6 = c6EncC4[0]; encC4 = c6EncC4[1]; } else { c6 = new byte[0]; encC4 = input; } // convert encC4 into vector over GF(2) GF2Vector encC4Vec = GF2Vector.OS2VP(n, encC4); // decrypt encC4Vec to obtain c4 and error vector z GF2Vector[] c4z = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, encC4Vec); byte[] c4 = c4z[0].getEncoded(); GF2Vector z = c4z[1]; // if length of c4 is greater than c4Len (because of padding) ... if (c4.length > c4Len) { // ... truncate the padding bytes c4 = ByteUtils.subArray(c4, 0, c4Len); } // compute c5 = Conv^-1(z) byte[] c5 = Conversions.decode(n, t, z); // if c5 is shorter than expected, pad with leading zeroes if (c5.length < c5Len) { byte[] paddedC5 = new byte[c5Len]; System.arraycopy(c5, 0, paddedC5, c5Len - c5.length, c5.length); c5 = paddedC5; } // compute (c6||c5||c4) byte[] c6c5c4 = ByteUtils.concatenate(c6, c5); c6c5c4 = ByteUtils.concatenate(c6c5c4, c4); // split (c6||c5||c4) into (c2||c1), where c2Len = mdLen and c1Len = // input.length-c2Len bytes. int c1Len = c6c5c4.length - c2Len; byte[][] c2c1 = ByteUtils.split(c6c5c4, c2Len); byte[] c2 = c2c1[0]; byte[] c1 = c2c1[1]; // compute H(c1) ... byte[] rPrime = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(rPrime, 0); // ... and XOR with c2 to obtain r' for (int i = c2Len - 1; i >= 0; i--) { rPrime[i] ^= c2[i]; } // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrime); // generate random sequence R(r') ... byte[] mConstPrime = new byte[c1Len]; sr0.nextBytes(mConstPrime); // ... and XOR with c1 to obtain (m||const') for (int i = c1Len - 1; i >= 0; i--) { mConstPrime[i] ^= c1[i]; } if (mConstPrime.length < c1Len) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } byte[][] temp = ByteUtils.split(mConstPrime, c1Len - PUBLIC_CONSTANT.length); byte[] mr = temp[0]; byte[] constPrime = temp[1]; if (!ByteUtils.equals(constPrime, PUBLIC_CONSTANT)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } return mr; } }
bcgit/bc-java
core/src/main/java/org/bouncycastle/pqc/legacy/crypto/mceliece/McElieceKobaraImaiCipher.java
3,171
// get PRNG object
line_comment
nl
package org.bouncycastle.pqc.legacy.crypto.mceliece; import java.security.SecureRandom; import org.bouncycastle.crypto.CipherParameters; import org.bouncycastle.crypto.CryptoServicesRegistrar; import org.bouncycastle.crypto.Digest; import org.bouncycastle.crypto.InvalidCipherTextException; import org.bouncycastle.crypto.digests.SHA1Digest; import org.bouncycastle.crypto.params.ParametersWithRandom; import org.bouncycastle.crypto.prng.DigestRandomGenerator; import org.bouncycastle.pqc.crypto.MessageEncryptor; import org.bouncycastle.pqc.legacy.math.linearalgebra.ByteUtils; import org.bouncycastle.pqc.legacy.math.linearalgebra.GF2Vector; import org.bouncycastle.pqc.legacy.math.linearalgebra.IntegerFunctions; /** * This class implements the Kobara/Imai conversion of the McEliecePKCS. This is * a conversion of the McEliecePKCS which is CCA2-secure. For details, see D. * Engelbert, R. Overbeck, A. Schmidt, "A Summary of McEliece-Type Cryptosystems and their Security", technical report. * https://www.degruyter.com/document/doi/10.1515/JMC.2007.009/html */ public class McElieceKobaraImaiCipher implements MessageEncryptor { /** * The OID of the algorithm. */ public static final String OID = "1.3.6.1.4.1.8301.3.1.3.4.2.3"; private static final String DEFAULT_PRNG_NAME = "SHA1PRNG"; /** * A predetermined public constant. */ public static final byte[] PUBLIC_CONSTANT = "a predetermined public constant" .getBytes(); private Digest messDigest; private SecureRandom sr; McElieceCCA2KeyParameters key; /** * The McEliece main parameters */ private int n, k, t; private boolean forEncryption; public void init(boolean forEncryption, CipherParameters param) { this.forEncryption = forEncryption; if (forEncryption) { if (param instanceof ParametersWithRandom) { ParametersWithRandom rParam = (ParametersWithRandom)param; this.sr = rParam.getRandom(); this.key = (McElieceCCA2PublicKeyParameters)rParam.getParameters(); this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } else { this.sr = CryptoServicesRegistrar.getSecureRandom(); this.key = (McElieceCCA2PublicKeyParameters)param; this.initCipherEncrypt((McElieceCCA2PublicKeyParameters)key); } } else { this.key = (McElieceCCA2PrivateKeyParameters)param; this.initCipherDecrypt((McElieceCCA2PrivateKeyParameters)key); } } /** * Return the key size of the given key object. * * @param key the McElieceCCA2KeyParameters object * @return the key size of the given key object */ public int getKeySize(McElieceCCA2KeyParameters key) { if (key instanceof McElieceCCA2PublicKeyParameters) { return ((McElieceCCA2PublicKeyParameters)key).getN(); } if (key instanceof McElieceCCA2PrivateKeyParameters) { return ((McElieceCCA2PrivateKeyParameters)key).getN(); } throw new IllegalArgumentException("unsupported type"); } private void initCipherEncrypt(McElieceCCA2PublicKeyParameters pubKey) { this.messDigest = Utils.getDigest(pubKey.getDigest()); n = pubKey.getN(); k = pubKey.getK(); t = pubKey.getT(); } private void initCipherDecrypt(McElieceCCA2PrivateKeyParameters privKey) { this.messDigest = Utils.getDigest(privKey.getDigest()); n = privKey.getN(); k = privKey.getK(); t = privKey.getT(); } public byte[] messageEncrypt(byte[] input) { if (!forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int mLen = c4Len + c5Len - c2Len - PUBLIC_CONSTANT.length; if (input.length > mLen) { mLen = input.length; } int c1Len = mLen + PUBLIC_CONSTANT.length; int c6Len = c1Len + c2Len - c4Len - c5Len; // compute (m||const) byte[] mConst = new byte[c1Len]; System.arraycopy(input, 0, mConst, 0, input.length); System.arraycopy(PUBLIC_CONSTANT, 0, mConst, mLen, PUBLIC_CONSTANT.length); // generate random r of length c2Len bytes byte[] r = new byte[c2Len]; sr.nextBytes(r); // get PRNG object // get PRNG object DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(r); // generate random sequence ... byte[] c1 = new byte[c1Len]; sr0.nextBytes(c1); // ... and XOR with (m||const) to obtain c1 for (int i = c1Len - 1; i >= 0; i--) { c1[i] ^= mConst[i]; } // compute H(c1) ... byte[] c2 = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(c2, 0); // ... and XOR with r for (int i = c2Len - 1; i >= 0; i--) { c2[i] ^= r[i]; } // compute (c2||c1) byte[] c2c1 = ByteUtils.concatenate(c2, c1); // split (c2||c1) into (c6||c5||c4), where c4Len is k/8 bytes, c5Len is // floor[log(n|t)]/8 bytes, and c6Len is c1Len+c2Len-c4Len-c5Len (may be // 0). byte[] c6 = new byte[0]; if (c6Len > 0) { c6 = new byte[c6Len]; System.arraycopy(c2c1, 0, c6, 0, c6Len); } byte[] c5 = new byte[c5Len]; System.arraycopy(c2c1, c6Len, c5, 0, c5Len); byte[] c4 = new byte[c4Len]; System.arraycopy(c2c1, c6Len + c5Len, c4, 0, c4Len); // convert c4 to vector over GF(2) GF2Vector c4Vec = GF2Vector.OS2VP(k, c4); // convert c5 to error vector z GF2Vector z = Conversions.encode(n, t, c5); // compute encC4 = E(c4, z) byte[] encC4 = McElieceCCA2Primitives.encryptionPrimitive((McElieceCCA2PublicKeyParameters)key, c4Vec, z).getEncoded(); // if c6Len > 0 if (c6Len > 0) { // return (c6||encC4) return ByteUtils.concatenate(c6, encC4); } // else, return encC4 return encC4; } public byte[] messageDecrypt(byte[] input) throws InvalidCipherTextException { if (forEncryption) { throw new IllegalStateException("cipher initialised for decryption"); } int nDiv8 = n >> 3; if (input.length < nDiv8) { throw new InvalidCipherTextException("Bad Padding: Ciphertext too short."); } int c2Len = messDigest.getDigestSize(); int c4Len = k >> 3; int c5Len = (IntegerFunctions.binomial(n, t).bitLength() - 1) >> 3; int c6Len = input.length - nDiv8; // split cipher text (c6||encC4), where c6 may be empty byte[] c6, encC4; if (c6Len > 0) { byte[][] c6EncC4 = ByteUtils.split(input, c6Len); c6 = c6EncC4[0]; encC4 = c6EncC4[1]; } else { c6 = new byte[0]; encC4 = input; } // convert encC4 into vector over GF(2) GF2Vector encC4Vec = GF2Vector.OS2VP(n, encC4); // decrypt encC4Vec to obtain c4 and error vector z GF2Vector[] c4z = McElieceCCA2Primitives.decryptionPrimitive((McElieceCCA2PrivateKeyParameters)key, encC4Vec); byte[] c4 = c4z[0].getEncoded(); GF2Vector z = c4z[1]; // if length of c4 is greater than c4Len (because of padding) ... if (c4.length > c4Len) { // ... truncate the padding bytes c4 = ByteUtils.subArray(c4, 0, c4Len); } // compute c5 = Conv^-1(z) byte[] c5 = Conversions.decode(n, t, z); // if c5 is shorter than expected, pad with leading zeroes if (c5.length < c5Len) { byte[] paddedC5 = new byte[c5Len]; System.arraycopy(c5, 0, paddedC5, c5Len - c5.length, c5.length); c5 = paddedC5; } // compute (c6||c5||c4) byte[] c6c5c4 = ByteUtils.concatenate(c6, c5); c6c5c4 = ByteUtils.concatenate(c6c5c4, c4); // split (c6||c5||c4) into (c2||c1), where c2Len = mdLen and c1Len = // input.length-c2Len bytes. int c1Len = c6c5c4.length - c2Len; byte[][] c2c1 = ByteUtils.split(c6c5c4, c2Len); byte[] c2 = c2c1[0]; byte[] c1 = c2c1[1]; // compute H(c1) ... byte[] rPrime = new byte[messDigest.getDigestSize()]; messDigest.update(c1, 0, c1.length); messDigest.doFinal(rPrime, 0); // ... and XOR with c2 to obtain r' for (int i = c2Len - 1; i >= 0; i--) { rPrime[i] ^= c2[i]; } // get PRNG<SUF> DigestRandomGenerator sr0 = new DigestRandomGenerator(new SHA1Digest()); // seed PRNG with r' sr0.addSeedMaterial(rPrime); // generate random sequence R(r') ... byte[] mConstPrime = new byte[c1Len]; sr0.nextBytes(mConstPrime); // ... and XOR with c1 to obtain (m||const') for (int i = c1Len - 1; i >= 0; i--) { mConstPrime[i] ^= c1[i]; } if (mConstPrime.length < c1Len) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } byte[][] temp = ByteUtils.split(mConstPrime, c1Len - PUBLIC_CONSTANT.length); byte[] mr = temp[0]; byte[] constPrime = temp[1]; if (!ByteUtils.equals(constPrime, PUBLIC_CONSTANT)) { throw new InvalidCipherTextException("Bad Padding: invalid ciphertext"); } return mr; } }
202572_10
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.netbeans.modules.schema2beans; import java.util.*; import java.beans.*; /** * The intent of this class is to provide a schema2beans graph registry, * where the graphs are stored by unique name and type. Combined with * the DDRegistryParser, the DDRegistry provides a sort of meta-schema2beans * graph where we can ask for all the graphs of one type and ask for a * parser on any set of graphs. These are the two main goals of this class. * * 1. provide a common and central place where we can keep track * of all the graphs that we have created. Naming the graphs by * unique name and type allows to get either one specific graph * or a set of graphs. * * 2. provide a meta-schema2beans graph view for parsing any set of graphs. * For example, to get a parser on all the graphs of type 'ejb' * (assuming we registered graphs of this type). * * Therefore, this class provides two kind of methods: to add/remove graphs * to the registry and to create a DDRegistry parser. A DDRegistryParser is * an Iterator that returns all the elements described a schema2beans tree path. * * The registry also provides a convenient class (DDChangeMarker) that helps * keeping track of any change. */ public class DDRegistry extends Object { /** * The goal of this class is to provide a simple way to know if a graph * or a set of graphs had their content changed. The ChangeMarker can * be used to implemenent a cache mechanism, in order to avoid parsing * the graphs if nothing in the graph changed since the last parsing. * * A ChangeMarker is created by the registry, ddReg.newChangeMarker(). * We can add to the changeMarger a BaseBean graph, a Cursor or another * ChangeMarker. So, ChangeMarker can be nested, and any modification in * a nested ChangeMarker would need that the upper ChangeMarker have been * been modified. */ public static class DDChangeMarker { private DDRegistry reg; private long timestamp; private ArrayList elts = null; DDChangeMarker(DDRegistry reg) { this.reg = reg; this.elts = new ArrayList(); this.timestamp = 0L; } public int size() { return this.elts.size(); } /** * If any graph of the added marker change, the current marker is * also considered changed. */ public void add(DDChangeMarker cm) { if (cm == this) { Thread.dumpStack(); } this.elts.add(cm); } /** * Add a graph to the marker list. If any change occurs in this graph * after resetMarker() is called, hasChanged() would return true. */ public void add(BaseBean b) { RegEntry re = this.reg.getRegEntry(b, false); if (re != null && !this.elts.contains(re)) { this.elts.add(re); } } /** * Add the graph the cursor belongs to, to the marker list */ public void add(DDRegistryParser.DDCursor c) { String id = this.reg.getID(c); if (id != null) { BaseBean b = this.reg.getRoot(id); this.add(b); } } /** * removal methods. */ public void remove(DDChangeMarker cm) { this.elts.remove(cm); } public void remove(BaseBean b) { RegEntry re = this.reg.getRegEntry(b, false); if (re != null) this.elts.remove(re); } public void remove(DDRegistryParser.DDCursor c) { String id = this.reg.getID(c); if (id != null) { BaseBean b = this.reg.getRoot(id); this.remove(b); } } /** * Reset the marke change time. Any change that happened before now * are ignored. */ public void resetTime() { this.timestamp = System.currentTimeMillis(); } /** * Return true if a change event happen between the last resetTime * and now. */ public boolean hasChanged() { boolean b = this.hasChanged(this.timestamp); return b; } private boolean hasChanged(long ts) { for(int i=0; i<this.elts.size(); i++) { Object o = this.elts.get(i); if (o == null) continue; if (o instanceof DDChangeMarker) { if (((DDChangeMarker)o).hasChanged(ts)) { return true; } } else if (o instanceof RegEntry) { if (((RegEntry)o).getTimestamp() > ts) { return true; } } } return false; } /** * Dump all the registered markers */ public String dump() { return this.dump(new StringBuffer(), "", // NOI18N this.timestamp).toString(); } public StringBuffer dump(StringBuffer sb, String indent, long ts) { // BEGIN_NOI18N sb.append(indent + this.toString() + "\n"); for(int i=0; i<this.elts.size(); i++) { Object o = this.elts.get(i); if (o == null) continue; if (o instanceof DDChangeMarker) { ((DDChangeMarker)o).dump(sb, indent + " ", ts); } else if (o instanceof RegEntry) { RegEntry re = (RegEntry)o; sb.append(indent + " " + re.getBean() + "-0x" + Integer.toHexString(re.getBean().hashCode())); long l = re.getTimestamp(); if (l > ts) { sb.append(" Changed (bean ts:" + l + " > cm ts:" + ts ); // + ") - last event: " + re.getLastEvent()); } else { sb.append(" No_Change (bean ts:" + l + " < cm ts:" + ts + ")"); } sb.append("\n"); } } return sb; } // END_NOI18N public String toString() { return "DDChangeMarker-0x" + Integer.toHexString(this.hashCode()); // NOI18N } } /* * Change event listener used by the change marker class */ public class ChangeTracer implements PropertyChangeListener { DDRegistry reg; public ChangeTracer(DDRegistry reg) { this.reg = reg; } public void propertyChange(PropertyChangeEvent e) { try { BaseBean s = (BaseBean)e.getSource(); RegEntry re = this.reg.getRegEntry(s, false); re.setTimestamp(); //String trc = // s.graphManager().getKeyPropertyName(e.getPropertyName()); //re.setLastEvent(trc); } catch(Exception ex) { } } } private ArrayList scopes; private ChangeTracer changeTracer; // public DDRegistry() { this.scopes = new ArrayList(); this.changeTracer = new ChangeTracer(this); } /** * Create a new entry in the DD graph registry. The schema2beans graph * bean is added to registry using a unique name (ID), such as a unique * internal identifier, and a non unique name (name), * such as a display name. * * Any number of non unique type can also be associated to a graph * entry, see the method addType. * */ public void createEntry(BaseBean bean, String ID, String name) { RegEntry entry = this.getRegEntry(bean, false); if (entry != null) { throw new IllegalArgumentException(Common.getMessage( "BeanGraphAlreadyInRegistry_msg", bean.name())); } entry = this.getRegEntry(ID); if (entry != null) { throw new IllegalArgumentException(Common.getMessage( "CantRegisterGraphSameID_msg", bean.name(), entry, ID)); } bean.addPropertyChangeListener(this.changeTracer); this.scopes.add(new RegEntry(bean, ID, name)); } /** * Change the schema2beans graph for the unique entry ID. This method * might be used if another graph should replace an existing entry. */ public void updateEntry(String ID, BaseBean bean) { RegEntry entry = this.getRegEntry(ID); if (entry != null) entry.setBean(bean); else throw new IllegalArgumentException(Common.getMessage( "CantUpdateGraphNotInRegistry_msg", ID)); } /** * Remove an entry in the registry. */ public void removeEntry(BaseBean bean) { RegEntry entry = this.getRegEntry(bean, false); if (entry != null) { entry.getBean().removePropertyChangeListener(this.changeTracer); this.removeRegEntry(entry); } } /** * Rename a graph entry unique ID to a new unique ID entry and new * non unique name. */ public void renameEntry(String oldID, String newID, String newName) { RegEntry entry = this.getRegEntry(oldID); if (entry != null) { entry.setID(newID); if (newName != null) entry.setName(newName); } } /** * Rename a graph unique ID to a new unique ID. */ public void renameEntry(String oldID, String newID) { this.renameEntry(oldID, newID, null); } /** * Remove a registry entry. */ public void removeEntry(String ID) { RegEntry entry = this.getRegEntry(ID); if (entry != null) entry.getBean().removePropertyChangeListener(this.changeTracer); this.removeRegEntry(entry); } /** * This return a new change marker instance, that can be used to know * if any graph of the registry has changed. */ public DDChangeMarker createChangeMarker() { return new DDChangeMarker(this); } /** * Return true of the specified schema2beans graph is registered with the * specified type. */ public boolean hasType(BaseBean bean, String type) { RegEntry r = this.getRegEntry(bean, false); if (r != null) return r.hasType(type); return false; } /** * Reset the change timestamp of all the registered graphs. */ public void clearCache() { for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se != null) se.setTimestamp(); } } /** * Reset the change timestamp of the specified graph. */ public void clearCache(BaseBean bean) { this.setTimestamp(bean); } public void setTimestamp(BaseBean bean) { RegEntry r = this.getRegEntry(bean, false); if (r != null) r.setTimestamp(); } public long getTimestamp(BaseBean bean) { RegEntry r = this.getRegEntry(bean, false); if (r != null) return r.getTimestamp(); return 0L; } /** * Having a schema2beans graph, this method return its unique ID. */ public String getID(BaseBean bean) { RegEntry r = this.getRegEntry(bean, false); if (r != null) return r.getID(); return null; } /** * Return the unique ID of the graph where the cursor points to. * Note that a DDCursor is a location reference (pointer to any * schema2beans graph) in any graph of the registry. */ public String getID(DDRegistryParser.DDCursor c) { RegEntry r = this.getRegEntry(c.getRoot(), false); if (r != null) return r.getID(); return null; } /** * Same as getID but return the non unique name. */ public String getName(DDRegistryParser.DDCursor c) { RegEntry r = this.getRegEntry(c.getRoot(), false); if (r != null) return r.getName(); return null; } /** * Create a new DDRegistryParser (parser on a set of graph), based * on another parser current location and schema2beans path. */ public DDRegistryParser newParser(DDRegistryParser parser, String path) { return new DDRegistryParser(this, parser, path); } /** * Create a new DDRegistryParser based on a current position in a graph * and a schema2beans path. */ public DDRegistryParser newParser(DDRegistryParser.DDCursor cursor, String path) { return new DDRegistryParser(this, cursor, path); } /** * Create a DDRegistryParser based on a scope value. A scope value is * either a unique graph name or a type value. If more than one graph * are registered under the type specified, the parser will go through * all the graphs. If the ID is specified or the scope is a one graph type, * the the parser will go through only the specified graph. * * The scope syntax is: [name] */ public DDRegistryParser newParser(String scope) { return new DDRegistryParser(this, scope); } /** * Create a cursor location */ public DDRegistryParser.DDCursor newCursor(DDRegistryParser.DDCursor c, String path) { return new DDRegistryParser.DDCursor(c, path); } /** * Create a cursor location */ public DDRegistryParser.DDCursor newCursor(String path) { return new DDRegistryParser.DDCursor(this, path); } /** * Create a cursor location */ public DDRegistryParser.DDCursor newCursor(BaseBean bean) { return new DDRegistryParser.DDCursor(this, bean); } /** * Add a type to the entry (the type doesn't have to be unique) */ public void addType(BaseBean bean, String type) { if (DDLogFlags.debug) { TraceLogger.put(TraceLogger.DEBUG, TraceLogger.SVC_DD, DDLogFlags.DBG_REG, 1, DDLogFlags.ADDTYPE, bean.name() + " " + type); } RegEntry se = this.getRegEntry(bean, true); se.add(type); } /** * Return the name of the unique graph ID */ public String getName(String ID) { RegEntry r = this.getRegEntry(ID); if (r!= null) return r.getName(); return null; } /** * Trace/debug method. Return the list of all the registered graphs */ public String dump() { StringBuffer s = new StringBuffer(); for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se != null) { s.append(se.toString() + "\n"); // NOI18N } } return s.toString(); } /** * Trace/debug method. Return the XML content of all the registered graphs. */ public String dumpAll() { StringBuffer s = new StringBuffer(); for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se != null) { s.append("\n*** Graph:" + se.toString() + "\n"); // NOI18N s.append(se.getBean().dumpBeanNode()); } } return s.toString(); } /** * Return the entry for the BaseBean, if any. */ RegEntry getRegEntry(BaseBean bean, boolean raise) { for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se.getBean() == bean) { return se; } } // Didn't find it - try to look for the root if ((bean != null) && !bean.isRoot()) { do { bean = bean.parent(); } while(bean != null && !bean.isRoot()); return this.getRegEntry(bean, raise); } if (raise) { throw new IllegalArgumentException(Common.getMessage( "BeanGraphEntryNotInRegistry_msg", bean.name())); } else return null; } /** * Return the entry for the BaseBean, if any. */ private RegEntry getRegEntry(String ID) { for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se.getID().equals(ID)) return se; } return null; } /** * Return the entry for the BaseBean, if any. */ private void removeRegEntry(RegEntry entry) { int i = this.scopes.indexOf(entry); if (i != -1) this.scopes.remove(i); } // Remove any blank and [] characters public static String getGraphName(String s) { if (s != null) { s = s.trim(); if (s.startsWith("[")) { // NOI18N int i = s.indexOf(']'); if (i != -1) s = s.substring(1,i); else return null; } } return s; } /* * Check if there is any graph of this name in the registry */ public boolean hasGraph(String str) { return this.hasGraph(str, null); } public boolean hasGraph(String str, DDRegistryParser.DDCursor c) { String s = getGraphName(str); if (s != null) { if (!s.equals(DDRegistryParser.CURRENT_CURSOR)) return (this.getRoot(s) != null); else { if (c == null) return true; else return (this.getID(c) != null); } } return false; } public static String createGraphName(String s) { if (s != null) { //s = s.trim(); int i = s.indexOf('['); if (i != -1 && i<s.indexOf(']')) return s; else return "["+s+"]"; // NOI18N } else { throw new IllegalArgumentException(Common.getMessage( "GraphNameCantBeNull_msg")); } } /** * Return the bean root for this name (either unique name or scope) */ public BaseBean getRoot(String s) { BaseBean[] r = this.getRoots(s); if (r.length>0) return r[0]; return null; } /** * Return all the bean roots for this name (either unique name or scope) */ public BaseBean[] getRoots(String s) { s = getGraphName(s); // Try to get the root by name, then by type RegEntry se = this.getRegEntry(s); if (se == null) { ArrayList list = new ArrayList(); for (int i=0; i<this.scopes.size(); i++) { se = (RegEntry)this.scopes.get(i); if (se.hasType(s)) list.add(se.getBean()); } BaseBean[] ret = new BaseBean[list.size()]; return (BaseBean[])list.toArray(ret); } else return (new BaseBean[] {se.getBean()}); } /** * Iterator on a list of DDParser */ class IterateParser implements Iterator { private ArrayList list; private int pos; public IterateParser() { this.list = new ArrayList(); } void addParser(BaseBean b, String parsingPath) { this.list.add(new DDParser(b, parsingPath)); } public boolean hasNext() { if (pos < list.size()) return true; else return false; } public Object next() { return this.list.get(pos++); } public void remove() { throw new UnsupportedOperationException(); } } /** * All the types a schema2beans graph belongs to. */ static class RegEntry { private BaseBean bean; private ArrayList types; private String ID; private String name; private long timestamp; //private String info; RegEntry(BaseBean b, String ID, String name) { this.bean = b; this.types = new ArrayList(); this.ID = ID; this.name = name; this.setTimestamp(); } /* For trace purpose void setLastEvent(String e) { this.info = e; } String getLastEvent() { return this.info; }*/ // For the caching mechanism (DDChangeMarker) void setTimestamp() { this.timestamp = System.currentTimeMillis(); } long getTimestamp() { return this.timestamp; } void setBean(BaseBean bean) { this.bean = bean; } BaseBean getBean() { return this.bean; } String getName() { return this.name; } String getID() { return this.ID; } void setID(String ID) { this.ID = ID; } void setName(String name) { this.name = name; } void add(String type) { this.types.add(type); } boolean hasType(String type) { for (int i=0; i<this.types.size(); i++) { String t = (String)this.types.get(i); if (type != null && t.equals(type)) return true; } return false; } public String toString() { String s = this.bean.name() + "(id:" + ID + "-name:" + name + ")" + " ["; // NOI18N for (int i=0; i<this.types.size(); i++) { String t = (String)this.types.get(i); s += " " + t; // NOI18N } return s + "]"; // NOI18N } } }
apache/netbeans
ide/schema2beans/src/org/netbeans/modules/schema2beans/DDRegistry.java
6,423
// + ") - last event: " + re.getLastEvent());
line_comment
nl
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.netbeans.modules.schema2beans; import java.util.*; import java.beans.*; /** * The intent of this class is to provide a schema2beans graph registry, * where the graphs are stored by unique name and type. Combined with * the DDRegistryParser, the DDRegistry provides a sort of meta-schema2beans * graph where we can ask for all the graphs of one type and ask for a * parser on any set of graphs. These are the two main goals of this class. * * 1. provide a common and central place where we can keep track * of all the graphs that we have created. Naming the graphs by * unique name and type allows to get either one specific graph * or a set of graphs. * * 2. provide a meta-schema2beans graph view for parsing any set of graphs. * For example, to get a parser on all the graphs of type 'ejb' * (assuming we registered graphs of this type). * * Therefore, this class provides two kind of methods: to add/remove graphs * to the registry and to create a DDRegistry parser. A DDRegistryParser is * an Iterator that returns all the elements described a schema2beans tree path. * * The registry also provides a convenient class (DDChangeMarker) that helps * keeping track of any change. */ public class DDRegistry extends Object { /** * The goal of this class is to provide a simple way to know if a graph * or a set of graphs had their content changed. The ChangeMarker can * be used to implemenent a cache mechanism, in order to avoid parsing * the graphs if nothing in the graph changed since the last parsing. * * A ChangeMarker is created by the registry, ddReg.newChangeMarker(). * We can add to the changeMarger a BaseBean graph, a Cursor or another * ChangeMarker. So, ChangeMarker can be nested, and any modification in * a nested ChangeMarker would need that the upper ChangeMarker have been * been modified. */ public static class DDChangeMarker { private DDRegistry reg; private long timestamp; private ArrayList elts = null; DDChangeMarker(DDRegistry reg) { this.reg = reg; this.elts = new ArrayList(); this.timestamp = 0L; } public int size() { return this.elts.size(); } /** * If any graph of the added marker change, the current marker is * also considered changed. */ public void add(DDChangeMarker cm) { if (cm == this) { Thread.dumpStack(); } this.elts.add(cm); } /** * Add a graph to the marker list. If any change occurs in this graph * after resetMarker() is called, hasChanged() would return true. */ public void add(BaseBean b) { RegEntry re = this.reg.getRegEntry(b, false); if (re != null && !this.elts.contains(re)) { this.elts.add(re); } } /** * Add the graph the cursor belongs to, to the marker list */ public void add(DDRegistryParser.DDCursor c) { String id = this.reg.getID(c); if (id != null) { BaseBean b = this.reg.getRoot(id); this.add(b); } } /** * removal methods. */ public void remove(DDChangeMarker cm) { this.elts.remove(cm); } public void remove(BaseBean b) { RegEntry re = this.reg.getRegEntry(b, false); if (re != null) this.elts.remove(re); } public void remove(DDRegistryParser.DDCursor c) { String id = this.reg.getID(c); if (id != null) { BaseBean b = this.reg.getRoot(id); this.remove(b); } } /** * Reset the marke change time. Any change that happened before now * are ignored. */ public void resetTime() { this.timestamp = System.currentTimeMillis(); } /** * Return true if a change event happen between the last resetTime * and now. */ public boolean hasChanged() { boolean b = this.hasChanged(this.timestamp); return b; } private boolean hasChanged(long ts) { for(int i=0; i<this.elts.size(); i++) { Object o = this.elts.get(i); if (o == null) continue; if (o instanceof DDChangeMarker) { if (((DDChangeMarker)o).hasChanged(ts)) { return true; } } else if (o instanceof RegEntry) { if (((RegEntry)o).getTimestamp() > ts) { return true; } } } return false; } /** * Dump all the registered markers */ public String dump() { return this.dump(new StringBuffer(), "", // NOI18N this.timestamp).toString(); } public StringBuffer dump(StringBuffer sb, String indent, long ts) { // BEGIN_NOI18N sb.append(indent + this.toString() + "\n"); for(int i=0; i<this.elts.size(); i++) { Object o = this.elts.get(i); if (o == null) continue; if (o instanceof DDChangeMarker) { ((DDChangeMarker)o).dump(sb, indent + " ", ts); } else if (o instanceof RegEntry) { RegEntry re = (RegEntry)o; sb.append(indent + " " + re.getBean() + "-0x" + Integer.toHexString(re.getBean().hashCode())); long l = re.getTimestamp(); if (l > ts) { sb.append(" Changed (bean ts:" + l + " > cm ts:" + ts ); // + ")<SUF> } else { sb.append(" No_Change (bean ts:" + l + " < cm ts:" + ts + ")"); } sb.append("\n"); } } return sb; } // END_NOI18N public String toString() { return "DDChangeMarker-0x" + Integer.toHexString(this.hashCode()); // NOI18N } } /* * Change event listener used by the change marker class */ public class ChangeTracer implements PropertyChangeListener { DDRegistry reg; public ChangeTracer(DDRegistry reg) { this.reg = reg; } public void propertyChange(PropertyChangeEvent e) { try { BaseBean s = (BaseBean)e.getSource(); RegEntry re = this.reg.getRegEntry(s, false); re.setTimestamp(); //String trc = // s.graphManager().getKeyPropertyName(e.getPropertyName()); //re.setLastEvent(trc); } catch(Exception ex) { } } } private ArrayList scopes; private ChangeTracer changeTracer; // public DDRegistry() { this.scopes = new ArrayList(); this.changeTracer = new ChangeTracer(this); } /** * Create a new entry in the DD graph registry. The schema2beans graph * bean is added to registry using a unique name (ID), such as a unique * internal identifier, and a non unique name (name), * such as a display name. * * Any number of non unique type can also be associated to a graph * entry, see the method addType. * */ public void createEntry(BaseBean bean, String ID, String name) { RegEntry entry = this.getRegEntry(bean, false); if (entry != null) { throw new IllegalArgumentException(Common.getMessage( "BeanGraphAlreadyInRegistry_msg", bean.name())); } entry = this.getRegEntry(ID); if (entry != null) { throw new IllegalArgumentException(Common.getMessage( "CantRegisterGraphSameID_msg", bean.name(), entry, ID)); } bean.addPropertyChangeListener(this.changeTracer); this.scopes.add(new RegEntry(bean, ID, name)); } /** * Change the schema2beans graph for the unique entry ID. This method * might be used if another graph should replace an existing entry. */ public void updateEntry(String ID, BaseBean bean) { RegEntry entry = this.getRegEntry(ID); if (entry != null) entry.setBean(bean); else throw new IllegalArgumentException(Common.getMessage( "CantUpdateGraphNotInRegistry_msg", ID)); } /** * Remove an entry in the registry. */ public void removeEntry(BaseBean bean) { RegEntry entry = this.getRegEntry(bean, false); if (entry != null) { entry.getBean().removePropertyChangeListener(this.changeTracer); this.removeRegEntry(entry); } } /** * Rename a graph entry unique ID to a new unique ID entry and new * non unique name. */ public void renameEntry(String oldID, String newID, String newName) { RegEntry entry = this.getRegEntry(oldID); if (entry != null) { entry.setID(newID); if (newName != null) entry.setName(newName); } } /** * Rename a graph unique ID to a new unique ID. */ public void renameEntry(String oldID, String newID) { this.renameEntry(oldID, newID, null); } /** * Remove a registry entry. */ public void removeEntry(String ID) { RegEntry entry = this.getRegEntry(ID); if (entry != null) entry.getBean().removePropertyChangeListener(this.changeTracer); this.removeRegEntry(entry); } /** * This return a new change marker instance, that can be used to know * if any graph of the registry has changed. */ public DDChangeMarker createChangeMarker() { return new DDChangeMarker(this); } /** * Return true of the specified schema2beans graph is registered with the * specified type. */ public boolean hasType(BaseBean bean, String type) { RegEntry r = this.getRegEntry(bean, false); if (r != null) return r.hasType(type); return false; } /** * Reset the change timestamp of all the registered graphs. */ public void clearCache() { for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se != null) se.setTimestamp(); } } /** * Reset the change timestamp of the specified graph. */ public void clearCache(BaseBean bean) { this.setTimestamp(bean); } public void setTimestamp(BaseBean bean) { RegEntry r = this.getRegEntry(bean, false); if (r != null) r.setTimestamp(); } public long getTimestamp(BaseBean bean) { RegEntry r = this.getRegEntry(bean, false); if (r != null) return r.getTimestamp(); return 0L; } /** * Having a schema2beans graph, this method return its unique ID. */ public String getID(BaseBean bean) { RegEntry r = this.getRegEntry(bean, false); if (r != null) return r.getID(); return null; } /** * Return the unique ID of the graph where the cursor points to. * Note that a DDCursor is a location reference (pointer to any * schema2beans graph) in any graph of the registry. */ public String getID(DDRegistryParser.DDCursor c) { RegEntry r = this.getRegEntry(c.getRoot(), false); if (r != null) return r.getID(); return null; } /** * Same as getID but return the non unique name. */ public String getName(DDRegistryParser.DDCursor c) { RegEntry r = this.getRegEntry(c.getRoot(), false); if (r != null) return r.getName(); return null; } /** * Create a new DDRegistryParser (parser on a set of graph), based * on another parser current location and schema2beans path. */ public DDRegistryParser newParser(DDRegistryParser parser, String path) { return new DDRegistryParser(this, parser, path); } /** * Create a new DDRegistryParser based on a current position in a graph * and a schema2beans path. */ public DDRegistryParser newParser(DDRegistryParser.DDCursor cursor, String path) { return new DDRegistryParser(this, cursor, path); } /** * Create a DDRegistryParser based on a scope value. A scope value is * either a unique graph name or a type value. If more than one graph * are registered under the type specified, the parser will go through * all the graphs. If the ID is specified or the scope is a one graph type, * the the parser will go through only the specified graph. * * The scope syntax is: [name] */ public DDRegistryParser newParser(String scope) { return new DDRegistryParser(this, scope); } /** * Create a cursor location */ public DDRegistryParser.DDCursor newCursor(DDRegistryParser.DDCursor c, String path) { return new DDRegistryParser.DDCursor(c, path); } /** * Create a cursor location */ public DDRegistryParser.DDCursor newCursor(String path) { return new DDRegistryParser.DDCursor(this, path); } /** * Create a cursor location */ public DDRegistryParser.DDCursor newCursor(BaseBean bean) { return new DDRegistryParser.DDCursor(this, bean); } /** * Add a type to the entry (the type doesn't have to be unique) */ public void addType(BaseBean bean, String type) { if (DDLogFlags.debug) { TraceLogger.put(TraceLogger.DEBUG, TraceLogger.SVC_DD, DDLogFlags.DBG_REG, 1, DDLogFlags.ADDTYPE, bean.name() + " " + type); } RegEntry se = this.getRegEntry(bean, true); se.add(type); } /** * Return the name of the unique graph ID */ public String getName(String ID) { RegEntry r = this.getRegEntry(ID); if (r!= null) return r.getName(); return null; } /** * Trace/debug method. Return the list of all the registered graphs */ public String dump() { StringBuffer s = new StringBuffer(); for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se != null) { s.append(se.toString() + "\n"); // NOI18N } } return s.toString(); } /** * Trace/debug method. Return the XML content of all the registered graphs. */ public String dumpAll() { StringBuffer s = new StringBuffer(); for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se != null) { s.append("\n*** Graph:" + se.toString() + "\n"); // NOI18N s.append(se.getBean().dumpBeanNode()); } } return s.toString(); } /** * Return the entry for the BaseBean, if any. */ RegEntry getRegEntry(BaseBean bean, boolean raise) { for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se.getBean() == bean) { return se; } } // Didn't find it - try to look for the root if ((bean != null) && !bean.isRoot()) { do { bean = bean.parent(); } while(bean != null && !bean.isRoot()); return this.getRegEntry(bean, raise); } if (raise) { throw new IllegalArgumentException(Common.getMessage( "BeanGraphEntryNotInRegistry_msg", bean.name())); } else return null; } /** * Return the entry for the BaseBean, if any. */ private RegEntry getRegEntry(String ID) { for (int i=0; i<this.scopes.size(); i++) { RegEntry se = (RegEntry)this.scopes.get(i); if (se.getID().equals(ID)) return se; } return null; } /** * Return the entry for the BaseBean, if any. */ private void removeRegEntry(RegEntry entry) { int i = this.scopes.indexOf(entry); if (i != -1) this.scopes.remove(i); } // Remove any blank and [] characters public static String getGraphName(String s) { if (s != null) { s = s.trim(); if (s.startsWith("[")) { // NOI18N int i = s.indexOf(']'); if (i != -1) s = s.substring(1,i); else return null; } } return s; } /* * Check if there is any graph of this name in the registry */ public boolean hasGraph(String str) { return this.hasGraph(str, null); } public boolean hasGraph(String str, DDRegistryParser.DDCursor c) { String s = getGraphName(str); if (s != null) { if (!s.equals(DDRegistryParser.CURRENT_CURSOR)) return (this.getRoot(s) != null); else { if (c == null) return true; else return (this.getID(c) != null); } } return false; } public static String createGraphName(String s) { if (s != null) { //s = s.trim(); int i = s.indexOf('['); if (i != -1 && i<s.indexOf(']')) return s; else return "["+s+"]"; // NOI18N } else { throw new IllegalArgumentException(Common.getMessage( "GraphNameCantBeNull_msg")); } } /** * Return the bean root for this name (either unique name or scope) */ public BaseBean getRoot(String s) { BaseBean[] r = this.getRoots(s); if (r.length>0) return r[0]; return null; } /** * Return all the bean roots for this name (either unique name or scope) */ public BaseBean[] getRoots(String s) { s = getGraphName(s); // Try to get the root by name, then by type RegEntry se = this.getRegEntry(s); if (se == null) { ArrayList list = new ArrayList(); for (int i=0; i<this.scopes.size(); i++) { se = (RegEntry)this.scopes.get(i); if (se.hasType(s)) list.add(se.getBean()); } BaseBean[] ret = new BaseBean[list.size()]; return (BaseBean[])list.toArray(ret); } else return (new BaseBean[] {se.getBean()}); } /** * Iterator on a list of DDParser */ class IterateParser implements Iterator { private ArrayList list; private int pos; public IterateParser() { this.list = new ArrayList(); } void addParser(BaseBean b, String parsingPath) { this.list.add(new DDParser(b, parsingPath)); } public boolean hasNext() { if (pos < list.size()) return true; else return false; } public Object next() { return this.list.get(pos++); } public void remove() { throw new UnsupportedOperationException(); } } /** * All the types a schema2beans graph belongs to. */ static class RegEntry { private BaseBean bean; private ArrayList types; private String ID; private String name; private long timestamp; //private String info; RegEntry(BaseBean b, String ID, String name) { this.bean = b; this.types = new ArrayList(); this.ID = ID; this.name = name; this.setTimestamp(); } /* For trace purpose void setLastEvent(String e) { this.info = e; } String getLastEvent() { return this.info; }*/ // For the caching mechanism (DDChangeMarker) void setTimestamp() { this.timestamp = System.currentTimeMillis(); } long getTimestamp() { return this.timestamp; } void setBean(BaseBean bean) { this.bean = bean; } BaseBean getBean() { return this.bean; } String getName() { return this.name; } String getID() { return this.ID; } void setID(String ID) { this.ID = ID; } void setName(String name) { this.name = name; } void add(String type) { this.types.add(type); } boolean hasType(String type) { for (int i=0; i<this.types.size(); i++) { String t = (String)this.types.get(i); if (type != null && t.equals(type)) return true; } return false; } public String toString() { String s = this.bean.name() + "(id:" + ID + "-name:" + name + ")" + " ["; // NOI18N for (int i=0; i<this.types.size(); i++) { String t = (String)this.types.get(i); s += " " + t; // NOI18N } return s + "]"; // NOI18N } } }
202578_5
/* * Copyright 2023 The original authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package dev.morling.onebrc; import jdk.incubator.vector.*; import java.lang.foreign.Arena; import java.lang.foreign.MemorySegment; import java.lang.foreign.ValueLayout; import java.nio.ByteOrder; import java.nio.channels.FileChannel; import java.nio.file.Path; import java.util.ArrayList; import java.util.Iterator; import java.util.TreeMap; import java.util.stream.Collector; import java.util.stream.Collectors; import static java.lang.Double.doubleToRawLongBits; import static java.lang.Double.longBitsToDouble; import static java.lang.foreign.ValueLayout.*; /** * Broad experiments in this implementation: * - Memory-Map the file with new MemorySegments * - Use SIMD/vectorized search for the semicolon and new line feeds * - Use SIMD/vectorized comparison for the 'key' * <p> * Absolute stupid things / performance left on the table * - Single Threaded! Multi threading planned. * - The hash map/table is super basic. * - Hash table implementation / hashing has no resizing and is quite basic * - Zero time spend on profiling =) * <p> * <p> * Cheats used: * - Only works with Unix line feed \n * - double parsing is only accepting XX.X and X.X * - HashMap has no resizing, check, horrible hash etc. * - Used the double parsing from yemreinci */ public class CalculateAverage_gamlerhart { private static final String FILE = "./measurements.txt"; final static VectorSpecies<Byte> byteVec = ByteVector.SPECIES_PREFERRED; final static Vector<Byte> zero = byteVec.zero(); final static int vecLen = byteVec.length(); final static Vector<Byte> semiColon = byteVec.broadcast(';'); final static VectorMask<Byte> allTrue = byteVec.maskAll(true); final static ValueLayout.OfInt INT_UNALIGNED_BIG_ENDIAN = ValueLayout.JAVA_INT_UNALIGNED.withOrder(ByteOrder.BIG_ENDIAN); public static void main(String[] args) throws Exception { try (var arena = Arena.ofShared(); FileChannel fc = FileChannel.open(Path.of(FILE))) { long fileSize = fc.size(); MemorySegment fileContent = fc.map(FileChannel.MapMode.READ_ONLY, 0, fileSize, arena); ArrayList<Section> sections = splitFileIntoSections(fileSize, fileContent); var loopBound = byteVec.loopBound(fileSize) - vecLen; var result = sections.stream() .parallel() .map(s -> { return parseSection(s.start, s.end, loopBound, fileContent); }); var measurements = new TreeMap<String, ResultRow>(); result.forEachOrdered(m -> { m.fillMerge(fileContent, measurements); }); System.out.println(measurements); } } private static PrivateHashMap parseSection(long start, long end, long loopBound, MemorySegment fileContent) { var map = new PrivateHashMap(); for (long i = start; i < end;) { long nameStart = i; int simdSearchEnd = 0; int nameLen = 0; // Vectorized Search if (i < loopBound) { do { var vec = byteVec.fromMemorySegment(fileContent, i, ByteOrder.BIG_ENDIAN); var hasSemi = vec.eq(semiColon); simdSearchEnd = hasSemi.firstTrue(); i += simdSearchEnd; nameLen += simdSearchEnd; } while (simdSearchEnd == vecLen && i < loopBound); } // Left-over search while (loopBound <= i && fileContent.get(JAVA_BYTE, i) != ';') { nameLen++; i++; } i++; // Consume ; // Copied from yemreinci. I mostly wanted to experiment the vector math, not with parsing =) double val; { boolean negative = false; if ((fileContent.get(JAVA_BYTE, i)) == '-') { negative = true; i++; } byte b; double temp; if ((b = fileContent.get(JAVA_BYTE, i + 1)) == '.') { // temperature is in either XX.X or X.X form temp = (fileContent.get(JAVA_BYTE, i) - '0') + (fileContent.get(JAVA_BYTE, i + 2) - '0') / 10.0; i += 3; } else { temp = (fileContent.get(JAVA_BYTE, i) - '0') * 10 + (b - '0') + (fileContent.get(JAVA_BYTE, i + 3) - '0') / 10.0; i += 4; } val = (negative ? -temp : temp); } i++; // Consume \n map.add(fileContent, nameStart, nameLen, val); } return map; } private static ArrayList<Section> splitFileIntoSections(long fileSize, MemorySegment fileContent) { var cpuCount = Runtime.getRuntime().availableProcessors(); var roughChunkSize = fileSize / cpuCount; ArrayList<Section> sections = new ArrayList<>(cpuCount); for (long sStart = 0; sStart < fileSize;) { var endGuess = Math.min(sStart + roughChunkSize, fileSize); for (; endGuess < fileSize && fileContent.get(JAVA_BYTE, endGuess) != '\n'; endGuess++) { } sections.add(new Section(sStart, endGuess)); sStart = endGuess + 1; } return sections; } private static class PrivateHashMap { private static final int SIZE_SHIFT = 14; public static final int SIZE = 1 << SIZE_SHIFT; public static int MASK = 0xFFFFFFFF >>> (32 - SIZE_SHIFT); public static long SHIFT_POS = 16; public static long MASK_POS = 0xFFFFFFFFFFFF0000L; public static long MASK_LEN = 0x000000000000FFFFL; // Encoding: // - Key: long // - 48 bits index, 16 bits length final long[] keys = new long[SIZE]; final Value[] values = new Value[SIZE]; private class Value { public Value(double min, double max, double sum, long count) { this.min = min; this.max = max; this.sum = sum; this.count = count; } public double min; public double max; public double sum; public long count; } // int debug_size = 0; // int debug_reprobeMax = 0; public PrivateHashMap() { } public void add(MemorySegment file, long pos, int len, double val) { int hashCode = calculateHash(file, pos, len); doAdd(file, hashCode, pos, len, val); } private static int calculateHash(MemorySegment file, long pos, int len) { if (len > 4) { return file.get(INT_UNALIGNED_BIG_ENDIAN, pos) + 31 * len; } else { int hashCode = len; int i = 0; for (; i < len; i++) { int v = file.get(JAVA_BYTE, pos + i); hashCode = 31 * hashCode + v; } return hashCode; } } private void doAdd(MemorySegment file, int hash, long pos, int len, double val) { int slot = hash & MASK; for (var probe = 0; probe < 20000; probe++) { var iSl = ((slot + probe) & MASK); var slotEntry = keys[iSl]; var emtpy = slotEntry == 0; if (emtpy) { long keyInfo = pos << SHIFT_POS | len; keys[iSl] = keyInfo; values[iSl] = new Value(val, val, val, 1); // debug_size++; return; } else if (isSameEntry(file, slotEntry, pos, len)) { var vE = values[iSl]; vE.min = Math.min(vE.min, val); vE.max = Math.max(vE.max, val); vE.sum = vE.sum + val; vE.count++; return; } else { // long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; // int keyLen = (int) (slotEntry & MASK_LEN); // System.out.println("Colliding " + new String(file.asSlice(pos,len).toArray(ValueLayout.JAVA_BYTE)) + // " with key" + new String(file.asSlice(keyPos,keyLen).toArray(ValueLayout.JAVA_BYTE)) + // " hash " + hash + " slot " + slot + "+" + probe + " at " + iSl); // debug_reprobeMax = Math.max(debug_reprobeMax, probe); } } throw new IllegalStateException("More than 20000 reprobes"); // throw new IllegalStateException("More than 100 reprobes: At " + debug_size + ""); } private boolean isSameEntry(MemorySegment file, long slotEntry, long pos, int len) { long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; int keyLen = (int) (slotEntry & MASK_LEN); var isSame = len == keyLen && isSame(file, keyPos, pos, len); return isSame; } private static boolean isSame(MemorySegment file, long i1, long i2, int len) { int i = 0; var i1len = i1 + vecLen; var i2len = i2 + vecLen; if (len < vecLen && i1len <= file.byteSize() && i2len <= file.byteSize()) { var v1 = byteVec.fromMemorySegment(file, i1, ByteOrder.nativeOrder()); var v2 = byteVec.fromMemorySegment(file, i2, ByteOrder.nativeOrder()); var isTrue = v1.compare(VectorOperators.EQ, v2, allTrue.indexInRange(0, len)); return isTrue.trueCount() == len; } while (8 < (len - i)) { var v1 = file.get(JAVA_LONG_UNALIGNED, i1 + i); var v2 = file.get(JAVA_LONG_UNALIGNED, i2 + i); if (v1 != v2) { return false; } i += 8; } while (i < len) { var v1 = file.get(JAVA_BYTE, i1 + i); var v2 = file.get(JAVA_BYTE, i2 + i); if (v1 != v2) { return false; } i++; } return true; } public void fillMerge(MemorySegment file, TreeMap<String, ResultRow> treeMap) { for (int i = 0; i < keys.length; i++) { var ji = i; long keyE = keys[ji]; if (keyE != 0) { long keyPos = (keyE & MASK_POS) >> SHIFT_POS; int keyLen = (int) (keyE & MASK_LEN); byte[] keyBytes = new byte[keyLen]; MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); var key = new String(keyBytes); var vE = values[ji]; var min = vE.min; var max = vE.max; var sum = vE.sum; var count = vE.count; treeMap.compute(key, (k, e) -> { if (e == null) { return new ResultRow(min, max, sum, count); } else { return new ResultRow(Math.min(e.min, min), Math.max(e.max, max), e.sum + sum, e.count + count); } }); } } } // public String debugPrint(MemorySegment file) { // StringBuilder b = new StringBuilder(); // for (int i = 0; i < keyValues.length / 5; i++) { // var ji = i * 5; // long keyE = keyValues[ji]; // if (keyE != 0) { // long keyPos = (keyE & MASK_POS) >> SHIFT_POS; // int keyLen = (int) (keyE & MASK_LEN); // byte[] keyBytes = new byte[keyLen]; // MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); // var key = new String(keyBytes); // var min = longBitsToDouble(keyValues[ji + 1]); // var max = longBitsToDouble(keyValues[ji + 2]); // var sum = longBitsToDouble(keyValues[ji + 3]); // var count = keyValues[ji + 4]; // b.append("{").append(key).append("@").append(ji) // .append(",").append(min) // .append(",").append(max) // .append(",").append(sum) // .append(",").append(count).append("},"); // } // } // return b.toString(); // } } record Section(long start, long end) { } private static record ResultRow(double min, double max, double sum, long count) { public String toString() { return round(min) + "/" + round(((Math.round(sum * 10.0) / 10.0) / count)) + "/" + round(max); } private double round(double value) { return Math.round(value * 10.0) / 10.0; } } ; }
gunnarmorling/1brc
src/main/java/dev/morling/onebrc/CalculateAverage_gamlerhart.java
3,704
// - 48 bits index, 16 bits length
line_comment
nl
/* * Copyright 2023 The original authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package dev.morling.onebrc; import jdk.incubator.vector.*; import java.lang.foreign.Arena; import java.lang.foreign.MemorySegment; import java.lang.foreign.ValueLayout; import java.nio.ByteOrder; import java.nio.channels.FileChannel; import java.nio.file.Path; import java.util.ArrayList; import java.util.Iterator; import java.util.TreeMap; import java.util.stream.Collector; import java.util.stream.Collectors; import static java.lang.Double.doubleToRawLongBits; import static java.lang.Double.longBitsToDouble; import static java.lang.foreign.ValueLayout.*; /** * Broad experiments in this implementation: * - Memory-Map the file with new MemorySegments * - Use SIMD/vectorized search for the semicolon and new line feeds * - Use SIMD/vectorized comparison for the 'key' * <p> * Absolute stupid things / performance left on the table * - Single Threaded! Multi threading planned. * - The hash map/table is super basic. * - Hash table implementation / hashing has no resizing and is quite basic * - Zero time spend on profiling =) * <p> * <p> * Cheats used: * - Only works with Unix line feed \n * - double parsing is only accepting XX.X and X.X * - HashMap has no resizing, check, horrible hash etc. * - Used the double parsing from yemreinci */ public class CalculateAverage_gamlerhart { private static final String FILE = "./measurements.txt"; final static VectorSpecies<Byte> byteVec = ByteVector.SPECIES_PREFERRED; final static Vector<Byte> zero = byteVec.zero(); final static int vecLen = byteVec.length(); final static Vector<Byte> semiColon = byteVec.broadcast(';'); final static VectorMask<Byte> allTrue = byteVec.maskAll(true); final static ValueLayout.OfInt INT_UNALIGNED_BIG_ENDIAN = ValueLayout.JAVA_INT_UNALIGNED.withOrder(ByteOrder.BIG_ENDIAN); public static void main(String[] args) throws Exception { try (var arena = Arena.ofShared(); FileChannel fc = FileChannel.open(Path.of(FILE))) { long fileSize = fc.size(); MemorySegment fileContent = fc.map(FileChannel.MapMode.READ_ONLY, 0, fileSize, arena); ArrayList<Section> sections = splitFileIntoSections(fileSize, fileContent); var loopBound = byteVec.loopBound(fileSize) - vecLen; var result = sections.stream() .parallel() .map(s -> { return parseSection(s.start, s.end, loopBound, fileContent); }); var measurements = new TreeMap<String, ResultRow>(); result.forEachOrdered(m -> { m.fillMerge(fileContent, measurements); }); System.out.println(measurements); } } private static PrivateHashMap parseSection(long start, long end, long loopBound, MemorySegment fileContent) { var map = new PrivateHashMap(); for (long i = start; i < end;) { long nameStart = i; int simdSearchEnd = 0; int nameLen = 0; // Vectorized Search if (i < loopBound) { do { var vec = byteVec.fromMemorySegment(fileContent, i, ByteOrder.BIG_ENDIAN); var hasSemi = vec.eq(semiColon); simdSearchEnd = hasSemi.firstTrue(); i += simdSearchEnd; nameLen += simdSearchEnd; } while (simdSearchEnd == vecLen && i < loopBound); } // Left-over search while (loopBound <= i && fileContent.get(JAVA_BYTE, i) != ';') { nameLen++; i++; } i++; // Consume ; // Copied from yemreinci. I mostly wanted to experiment the vector math, not with parsing =) double val; { boolean negative = false; if ((fileContent.get(JAVA_BYTE, i)) == '-') { negative = true; i++; } byte b; double temp; if ((b = fileContent.get(JAVA_BYTE, i + 1)) == '.') { // temperature is in either XX.X or X.X form temp = (fileContent.get(JAVA_BYTE, i) - '0') + (fileContent.get(JAVA_BYTE, i + 2) - '0') / 10.0; i += 3; } else { temp = (fileContent.get(JAVA_BYTE, i) - '0') * 10 + (b - '0') + (fileContent.get(JAVA_BYTE, i + 3) - '0') / 10.0; i += 4; } val = (negative ? -temp : temp); } i++; // Consume \n map.add(fileContent, nameStart, nameLen, val); } return map; } private static ArrayList<Section> splitFileIntoSections(long fileSize, MemorySegment fileContent) { var cpuCount = Runtime.getRuntime().availableProcessors(); var roughChunkSize = fileSize / cpuCount; ArrayList<Section> sections = new ArrayList<>(cpuCount); for (long sStart = 0; sStart < fileSize;) { var endGuess = Math.min(sStart + roughChunkSize, fileSize); for (; endGuess < fileSize && fileContent.get(JAVA_BYTE, endGuess) != '\n'; endGuess++) { } sections.add(new Section(sStart, endGuess)); sStart = endGuess + 1; } return sections; } private static class PrivateHashMap { private static final int SIZE_SHIFT = 14; public static final int SIZE = 1 << SIZE_SHIFT; public static int MASK = 0xFFFFFFFF >>> (32 - SIZE_SHIFT); public static long SHIFT_POS = 16; public static long MASK_POS = 0xFFFFFFFFFFFF0000L; public static long MASK_LEN = 0x000000000000FFFFL; // Encoding: // - Key: long // - 48<SUF> final long[] keys = new long[SIZE]; final Value[] values = new Value[SIZE]; private class Value { public Value(double min, double max, double sum, long count) { this.min = min; this.max = max; this.sum = sum; this.count = count; } public double min; public double max; public double sum; public long count; } // int debug_size = 0; // int debug_reprobeMax = 0; public PrivateHashMap() { } public void add(MemorySegment file, long pos, int len, double val) { int hashCode = calculateHash(file, pos, len); doAdd(file, hashCode, pos, len, val); } private static int calculateHash(MemorySegment file, long pos, int len) { if (len > 4) { return file.get(INT_UNALIGNED_BIG_ENDIAN, pos) + 31 * len; } else { int hashCode = len; int i = 0; for (; i < len; i++) { int v = file.get(JAVA_BYTE, pos + i); hashCode = 31 * hashCode + v; } return hashCode; } } private void doAdd(MemorySegment file, int hash, long pos, int len, double val) { int slot = hash & MASK; for (var probe = 0; probe < 20000; probe++) { var iSl = ((slot + probe) & MASK); var slotEntry = keys[iSl]; var emtpy = slotEntry == 0; if (emtpy) { long keyInfo = pos << SHIFT_POS | len; keys[iSl] = keyInfo; values[iSl] = new Value(val, val, val, 1); // debug_size++; return; } else if (isSameEntry(file, slotEntry, pos, len)) { var vE = values[iSl]; vE.min = Math.min(vE.min, val); vE.max = Math.max(vE.max, val); vE.sum = vE.sum + val; vE.count++; return; } else { // long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; // int keyLen = (int) (slotEntry & MASK_LEN); // System.out.println("Colliding " + new String(file.asSlice(pos,len).toArray(ValueLayout.JAVA_BYTE)) + // " with key" + new String(file.asSlice(keyPos,keyLen).toArray(ValueLayout.JAVA_BYTE)) + // " hash " + hash + " slot " + slot + "+" + probe + " at " + iSl); // debug_reprobeMax = Math.max(debug_reprobeMax, probe); } } throw new IllegalStateException("More than 20000 reprobes"); // throw new IllegalStateException("More than 100 reprobes: At " + debug_size + ""); } private boolean isSameEntry(MemorySegment file, long slotEntry, long pos, int len) { long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; int keyLen = (int) (slotEntry & MASK_LEN); var isSame = len == keyLen && isSame(file, keyPos, pos, len); return isSame; } private static boolean isSame(MemorySegment file, long i1, long i2, int len) { int i = 0; var i1len = i1 + vecLen; var i2len = i2 + vecLen; if (len < vecLen && i1len <= file.byteSize() && i2len <= file.byteSize()) { var v1 = byteVec.fromMemorySegment(file, i1, ByteOrder.nativeOrder()); var v2 = byteVec.fromMemorySegment(file, i2, ByteOrder.nativeOrder()); var isTrue = v1.compare(VectorOperators.EQ, v2, allTrue.indexInRange(0, len)); return isTrue.trueCount() == len; } while (8 < (len - i)) { var v1 = file.get(JAVA_LONG_UNALIGNED, i1 + i); var v2 = file.get(JAVA_LONG_UNALIGNED, i2 + i); if (v1 != v2) { return false; } i += 8; } while (i < len) { var v1 = file.get(JAVA_BYTE, i1 + i); var v2 = file.get(JAVA_BYTE, i2 + i); if (v1 != v2) { return false; } i++; } return true; } public void fillMerge(MemorySegment file, TreeMap<String, ResultRow> treeMap) { for (int i = 0; i < keys.length; i++) { var ji = i; long keyE = keys[ji]; if (keyE != 0) { long keyPos = (keyE & MASK_POS) >> SHIFT_POS; int keyLen = (int) (keyE & MASK_LEN); byte[] keyBytes = new byte[keyLen]; MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); var key = new String(keyBytes); var vE = values[ji]; var min = vE.min; var max = vE.max; var sum = vE.sum; var count = vE.count; treeMap.compute(key, (k, e) -> { if (e == null) { return new ResultRow(min, max, sum, count); } else { return new ResultRow(Math.min(e.min, min), Math.max(e.max, max), e.sum + sum, e.count + count); } }); } } } // public String debugPrint(MemorySegment file) { // StringBuilder b = new StringBuilder(); // for (int i = 0; i < keyValues.length / 5; i++) { // var ji = i * 5; // long keyE = keyValues[ji]; // if (keyE != 0) { // long keyPos = (keyE & MASK_POS) >> SHIFT_POS; // int keyLen = (int) (keyE & MASK_LEN); // byte[] keyBytes = new byte[keyLen]; // MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); // var key = new String(keyBytes); // var min = longBitsToDouble(keyValues[ji + 1]); // var max = longBitsToDouble(keyValues[ji + 2]); // var sum = longBitsToDouble(keyValues[ji + 3]); // var count = keyValues[ji + 4]; // b.append("{").append(key).append("@").append(ji) // .append(",").append(min) // .append(",").append(max) // .append(",").append(sum) // .append(",").append(count).append("},"); // } // } // return b.toString(); // } } record Section(long start, long end) { } private static record ResultRow(double min, double max, double sum, long count) { public String toString() { return round(min) + "/" + round(((Math.round(sum * 10.0) / 10.0) / count)) + "/" + round(max); } private double round(double value) { return Math.round(value * 10.0) / 10.0; } } ; }
202578_22
/* * Copyright 2023 The original authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package dev.morling.onebrc; import jdk.incubator.vector.*; import java.lang.foreign.Arena; import java.lang.foreign.MemorySegment; import java.lang.foreign.ValueLayout; import java.nio.ByteOrder; import java.nio.channels.FileChannel; import java.nio.file.Path; import java.util.ArrayList; import java.util.Iterator; import java.util.TreeMap; import java.util.stream.Collector; import java.util.stream.Collectors; import static java.lang.Double.doubleToRawLongBits; import static java.lang.Double.longBitsToDouble; import static java.lang.foreign.ValueLayout.*; /** * Broad experiments in this implementation: * - Memory-Map the file with new MemorySegments * - Use SIMD/vectorized search for the semicolon and new line feeds * - Use SIMD/vectorized comparison for the 'key' * <p> * Absolute stupid things / performance left on the table * - Single Threaded! Multi threading planned. * - The hash map/table is super basic. * - Hash table implementation / hashing has no resizing and is quite basic * - Zero time spend on profiling =) * <p> * <p> * Cheats used: * - Only works with Unix line feed \n * - double parsing is only accepting XX.X and X.X * - HashMap has no resizing, check, horrible hash etc. * - Used the double parsing from yemreinci */ public class CalculateAverage_gamlerhart { private static final String FILE = "./measurements.txt"; final static VectorSpecies<Byte> byteVec = ByteVector.SPECIES_PREFERRED; final static Vector<Byte> zero = byteVec.zero(); final static int vecLen = byteVec.length(); final static Vector<Byte> semiColon = byteVec.broadcast(';'); final static VectorMask<Byte> allTrue = byteVec.maskAll(true); final static ValueLayout.OfInt INT_UNALIGNED_BIG_ENDIAN = ValueLayout.JAVA_INT_UNALIGNED.withOrder(ByteOrder.BIG_ENDIAN); public static void main(String[] args) throws Exception { try (var arena = Arena.ofShared(); FileChannel fc = FileChannel.open(Path.of(FILE))) { long fileSize = fc.size(); MemorySegment fileContent = fc.map(FileChannel.MapMode.READ_ONLY, 0, fileSize, arena); ArrayList<Section> sections = splitFileIntoSections(fileSize, fileContent); var loopBound = byteVec.loopBound(fileSize) - vecLen; var result = sections.stream() .parallel() .map(s -> { return parseSection(s.start, s.end, loopBound, fileContent); }); var measurements = new TreeMap<String, ResultRow>(); result.forEachOrdered(m -> { m.fillMerge(fileContent, measurements); }); System.out.println(measurements); } } private static PrivateHashMap parseSection(long start, long end, long loopBound, MemorySegment fileContent) { var map = new PrivateHashMap(); for (long i = start; i < end;) { long nameStart = i; int simdSearchEnd = 0; int nameLen = 0; // Vectorized Search if (i < loopBound) { do { var vec = byteVec.fromMemorySegment(fileContent, i, ByteOrder.BIG_ENDIAN); var hasSemi = vec.eq(semiColon); simdSearchEnd = hasSemi.firstTrue(); i += simdSearchEnd; nameLen += simdSearchEnd; } while (simdSearchEnd == vecLen && i < loopBound); } // Left-over search while (loopBound <= i && fileContent.get(JAVA_BYTE, i) != ';') { nameLen++; i++; } i++; // Consume ; // Copied from yemreinci. I mostly wanted to experiment the vector math, not with parsing =) double val; { boolean negative = false; if ((fileContent.get(JAVA_BYTE, i)) == '-') { negative = true; i++; } byte b; double temp; if ((b = fileContent.get(JAVA_BYTE, i + 1)) == '.') { // temperature is in either XX.X or X.X form temp = (fileContent.get(JAVA_BYTE, i) - '0') + (fileContent.get(JAVA_BYTE, i + 2) - '0') / 10.0; i += 3; } else { temp = (fileContent.get(JAVA_BYTE, i) - '0') * 10 + (b - '0') + (fileContent.get(JAVA_BYTE, i + 3) - '0') / 10.0; i += 4; } val = (negative ? -temp : temp); } i++; // Consume \n map.add(fileContent, nameStart, nameLen, val); } return map; } private static ArrayList<Section> splitFileIntoSections(long fileSize, MemorySegment fileContent) { var cpuCount = Runtime.getRuntime().availableProcessors(); var roughChunkSize = fileSize / cpuCount; ArrayList<Section> sections = new ArrayList<>(cpuCount); for (long sStart = 0; sStart < fileSize;) { var endGuess = Math.min(sStart + roughChunkSize, fileSize); for (; endGuess < fileSize && fileContent.get(JAVA_BYTE, endGuess) != '\n'; endGuess++) { } sections.add(new Section(sStart, endGuess)); sStart = endGuess + 1; } return sections; } private static class PrivateHashMap { private static final int SIZE_SHIFT = 14; public static final int SIZE = 1 << SIZE_SHIFT; public static int MASK = 0xFFFFFFFF >>> (32 - SIZE_SHIFT); public static long SHIFT_POS = 16; public static long MASK_POS = 0xFFFFFFFFFFFF0000L; public static long MASK_LEN = 0x000000000000FFFFL; // Encoding: // - Key: long // - 48 bits index, 16 bits length final long[] keys = new long[SIZE]; final Value[] values = new Value[SIZE]; private class Value { public Value(double min, double max, double sum, long count) { this.min = min; this.max = max; this.sum = sum; this.count = count; } public double min; public double max; public double sum; public long count; } // int debug_size = 0; // int debug_reprobeMax = 0; public PrivateHashMap() { } public void add(MemorySegment file, long pos, int len, double val) { int hashCode = calculateHash(file, pos, len); doAdd(file, hashCode, pos, len, val); } private static int calculateHash(MemorySegment file, long pos, int len) { if (len > 4) { return file.get(INT_UNALIGNED_BIG_ENDIAN, pos) + 31 * len; } else { int hashCode = len; int i = 0; for (; i < len; i++) { int v = file.get(JAVA_BYTE, pos + i); hashCode = 31 * hashCode + v; } return hashCode; } } private void doAdd(MemorySegment file, int hash, long pos, int len, double val) { int slot = hash & MASK; for (var probe = 0; probe < 20000; probe++) { var iSl = ((slot + probe) & MASK); var slotEntry = keys[iSl]; var emtpy = slotEntry == 0; if (emtpy) { long keyInfo = pos << SHIFT_POS | len; keys[iSl] = keyInfo; values[iSl] = new Value(val, val, val, 1); // debug_size++; return; } else if (isSameEntry(file, slotEntry, pos, len)) { var vE = values[iSl]; vE.min = Math.min(vE.min, val); vE.max = Math.max(vE.max, val); vE.sum = vE.sum + val; vE.count++; return; } else { // long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; // int keyLen = (int) (slotEntry & MASK_LEN); // System.out.println("Colliding " + new String(file.asSlice(pos,len).toArray(ValueLayout.JAVA_BYTE)) + // " with key" + new String(file.asSlice(keyPos,keyLen).toArray(ValueLayout.JAVA_BYTE)) + // " hash " + hash + " slot " + slot + "+" + probe + " at " + iSl); // debug_reprobeMax = Math.max(debug_reprobeMax, probe); } } throw new IllegalStateException("More than 20000 reprobes"); // throw new IllegalStateException("More than 100 reprobes: At " + debug_size + ""); } private boolean isSameEntry(MemorySegment file, long slotEntry, long pos, int len) { long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; int keyLen = (int) (slotEntry & MASK_LEN); var isSame = len == keyLen && isSame(file, keyPos, pos, len); return isSame; } private static boolean isSame(MemorySegment file, long i1, long i2, int len) { int i = 0; var i1len = i1 + vecLen; var i2len = i2 + vecLen; if (len < vecLen && i1len <= file.byteSize() && i2len <= file.byteSize()) { var v1 = byteVec.fromMemorySegment(file, i1, ByteOrder.nativeOrder()); var v2 = byteVec.fromMemorySegment(file, i2, ByteOrder.nativeOrder()); var isTrue = v1.compare(VectorOperators.EQ, v2, allTrue.indexInRange(0, len)); return isTrue.trueCount() == len; } while (8 < (len - i)) { var v1 = file.get(JAVA_LONG_UNALIGNED, i1 + i); var v2 = file.get(JAVA_LONG_UNALIGNED, i2 + i); if (v1 != v2) { return false; } i += 8; } while (i < len) { var v1 = file.get(JAVA_BYTE, i1 + i); var v2 = file.get(JAVA_BYTE, i2 + i); if (v1 != v2) { return false; } i++; } return true; } public void fillMerge(MemorySegment file, TreeMap<String, ResultRow> treeMap) { for (int i = 0; i < keys.length; i++) { var ji = i; long keyE = keys[ji]; if (keyE != 0) { long keyPos = (keyE & MASK_POS) >> SHIFT_POS; int keyLen = (int) (keyE & MASK_LEN); byte[] keyBytes = new byte[keyLen]; MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); var key = new String(keyBytes); var vE = values[ji]; var min = vE.min; var max = vE.max; var sum = vE.sum; var count = vE.count; treeMap.compute(key, (k, e) -> { if (e == null) { return new ResultRow(min, max, sum, count); } else { return new ResultRow(Math.min(e.min, min), Math.max(e.max, max), e.sum + sum, e.count + count); } }); } } } // public String debugPrint(MemorySegment file) { // StringBuilder b = new StringBuilder(); // for (int i = 0; i < keyValues.length / 5; i++) { // var ji = i * 5; // long keyE = keyValues[ji]; // if (keyE != 0) { // long keyPos = (keyE & MASK_POS) >> SHIFT_POS; // int keyLen = (int) (keyE & MASK_LEN); // byte[] keyBytes = new byte[keyLen]; // MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); // var key = new String(keyBytes); // var min = longBitsToDouble(keyValues[ji + 1]); // var max = longBitsToDouble(keyValues[ji + 2]); // var sum = longBitsToDouble(keyValues[ji + 3]); // var count = keyValues[ji + 4]; // b.append("{").append(key).append("@").append(ji) // .append(",").append(min) // .append(",").append(max) // .append(",").append(sum) // .append(",").append(count).append("},"); // } // } // return b.toString(); // } } record Section(long start, long end) { } private static record ResultRow(double min, double max, double sum, long count) { public String toString() { return round(min) + "/" + round(((Math.round(sum * 10.0) / 10.0) / count)) + "/" + round(max); } private double round(double value) { return Math.round(value * 10.0) / 10.0; } } ; }
gunnarmorling/1brc
src/main/java/dev/morling/onebrc/CalculateAverage_gamlerhart.java
3,704
// int keyLen = (int) (keyE & MASK_LEN);
line_comment
nl
/* * Copyright 2023 The original authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package dev.morling.onebrc; import jdk.incubator.vector.*; import java.lang.foreign.Arena; import java.lang.foreign.MemorySegment; import java.lang.foreign.ValueLayout; import java.nio.ByteOrder; import java.nio.channels.FileChannel; import java.nio.file.Path; import java.util.ArrayList; import java.util.Iterator; import java.util.TreeMap; import java.util.stream.Collector; import java.util.stream.Collectors; import static java.lang.Double.doubleToRawLongBits; import static java.lang.Double.longBitsToDouble; import static java.lang.foreign.ValueLayout.*; /** * Broad experiments in this implementation: * - Memory-Map the file with new MemorySegments * - Use SIMD/vectorized search for the semicolon and new line feeds * - Use SIMD/vectorized comparison for the 'key' * <p> * Absolute stupid things / performance left on the table * - Single Threaded! Multi threading planned. * - The hash map/table is super basic. * - Hash table implementation / hashing has no resizing and is quite basic * - Zero time spend on profiling =) * <p> * <p> * Cheats used: * - Only works with Unix line feed \n * - double parsing is only accepting XX.X and X.X * - HashMap has no resizing, check, horrible hash etc. * - Used the double parsing from yemreinci */ public class CalculateAverage_gamlerhart { private static final String FILE = "./measurements.txt"; final static VectorSpecies<Byte> byteVec = ByteVector.SPECIES_PREFERRED; final static Vector<Byte> zero = byteVec.zero(); final static int vecLen = byteVec.length(); final static Vector<Byte> semiColon = byteVec.broadcast(';'); final static VectorMask<Byte> allTrue = byteVec.maskAll(true); final static ValueLayout.OfInt INT_UNALIGNED_BIG_ENDIAN = ValueLayout.JAVA_INT_UNALIGNED.withOrder(ByteOrder.BIG_ENDIAN); public static void main(String[] args) throws Exception { try (var arena = Arena.ofShared(); FileChannel fc = FileChannel.open(Path.of(FILE))) { long fileSize = fc.size(); MemorySegment fileContent = fc.map(FileChannel.MapMode.READ_ONLY, 0, fileSize, arena); ArrayList<Section> sections = splitFileIntoSections(fileSize, fileContent); var loopBound = byteVec.loopBound(fileSize) - vecLen; var result = sections.stream() .parallel() .map(s -> { return parseSection(s.start, s.end, loopBound, fileContent); }); var measurements = new TreeMap<String, ResultRow>(); result.forEachOrdered(m -> { m.fillMerge(fileContent, measurements); }); System.out.println(measurements); } } private static PrivateHashMap parseSection(long start, long end, long loopBound, MemorySegment fileContent) { var map = new PrivateHashMap(); for (long i = start; i < end;) { long nameStart = i; int simdSearchEnd = 0; int nameLen = 0; // Vectorized Search if (i < loopBound) { do { var vec = byteVec.fromMemorySegment(fileContent, i, ByteOrder.BIG_ENDIAN); var hasSemi = vec.eq(semiColon); simdSearchEnd = hasSemi.firstTrue(); i += simdSearchEnd; nameLen += simdSearchEnd; } while (simdSearchEnd == vecLen && i < loopBound); } // Left-over search while (loopBound <= i && fileContent.get(JAVA_BYTE, i) != ';') { nameLen++; i++; } i++; // Consume ; // Copied from yemreinci. I mostly wanted to experiment the vector math, not with parsing =) double val; { boolean negative = false; if ((fileContent.get(JAVA_BYTE, i)) == '-') { negative = true; i++; } byte b; double temp; if ((b = fileContent.get(JAVA_BYTE, i + 1)) == '.') { // temperature is in either XX.X or X.X form temp = (fileContent.get(JAVA_BYTE, i) - '0') + (fileContent.get(JAVA_BYTE, i + 2) - '0') / 10.0; i += 3; } else { temp = (fileContent.get(JAVA_BYTE, i) - '0') * 10 + (b - '0') + (fileContent.get(JAVA_BYTE, i + 3) - '0') / 10.0; i += 4; } val = (negative ? -temp : temp); } i++; // Consume \n map.add(fileContent, nameStart, nameLen, val); } return map; } private static ArrayList<Section> splitFileIntoSections(long fileSize, MemorySegment fileContent) { var cpuCount = Runtime.getRuntime().availableProcessors(); var roughChunkSize = fileSize / cpuCount; ArrayList<Section> sections = new ArrayList<>(cpuCount); for (long sStart = 0; sStart < fileSize;) { var endGuess = Math.min(sStart + roughChunkSize, fileSize); for (; endGuess < fileSize && fileContent.get(JAVA_BYTE, endGuess) != '\n'; endGuess++) { } sections.add(new Section(sStart, endGuess)); sStart = endGuess + 1; } return sections; } private static class PrivateHashMap { private static final int SIZE_SHIFT = 14; public static final int SIZE = 1 << SIZE_SHIFT; public static int MASK = 0xFFFFFFFF >>> (32 - SIZE_SHIFT); public static long SHIFT_POS = 16; public static long MASK_POS = 0xFFFFFFFFFFFF0000L; public static long MASK_LEN = 0x000000000000FFFFL; // Encoding: // - Key: long // - 48 bits index, 16 bits length final long[] keys = new long[SIZE]; final Value[] values = new Value[SIZE]; private class Value { public Value(double min, double max, double sum, long count) { this.min = min; this.max = max; this.sum = sum; this.count = count; } public double min; public double max; public double sum; public long count; } // int debug_size = 0; // int debug_reprobeMax = 0; public PrivateHashMap() { } public void add(MemorySegment file, long pos, int len, double val) { int hashCode = calculateHash(file, pos, len); doAdd(file, hashCode, pos, len, val); } private static int calculateHash(MemorySegment file, long pos, int len) { if (len > 4) { return file.get(INT_UNALIGNED_BIG_ENDIAN, pos) + 31 * len; } else { int hashCode = len; int i = 0; for (; i < len; i++) { int v = file.get(JAVA_BYTE, pos + i); hashCode = 31 * hashCode + v; } return hashCode; } } private void doAdd(MemorySegment file, int hash, long pos, int len, double val) { int slot = hash & MASK; for (var probe = 0; probe < 20000; probe++) { var iSl = ((slot + probe) & MASK); var slotEntry = keys[iSl]; var emtpy = slotEntry == 0; if (emtpy) { long keyInfo = pos << SHIFT_POS | len; keys[iSl] = keyInfo; values[iSl] = new Value(val, val, val, 1); // debug_size++; return; } else if (isSameEntry(file, slotEntry, pos, len)) { var vE = values[iSl]; vE.min = Math.min(vE.min, val); vE.max = Math.max(vE.max, val); vE.sum = vE.sum + val; vE.count++; return; } else { // long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; // int keyLen = (int) (slotEntry & MASK_LEN); // System.out.println("Colliding " + new String(file.asSlice(pos,len).toArray(ValueLayout.JAVA_BYTE)) + // " with key" + new String(file.asSlice(keyPos,keyLen).toArray(ValueLayout.JAVA_BYTE)) + // " hash " + hash + " slot " + slot + "+" + probe + " at " + iSl); // debug_reprobeMax = Math.max(debug_reprobeMax, probe); } } throw new IllegalStateException("More than 20000 reprobes"); // throw new IllegalStateException("More than 100 reprobes: At " + debug_size + ""); } private boolean isSameEntry(MemorySegment file, long slotEntry, long pos, int len) { long keyPos = (slotEntry & MASK_POS) >> SHIFT_POS; int keyLen = (int) (slotEntry & MASK_LEN); var isSame = len == keyLen && isSame(file, keyPos, pos, len); return isSame; } private static boolean isSame(MemorySegment file, long i1, long i2, int len) { int i = 0; var i1len = i1 + vecLen; var i2len = i2 + vecLen; if (len < vecLen && i1len <= file.byteSize() && i2len <= file.byteSize()) { var v1 = byteVec.fromMemorySegment(file, i1, ByteOrder.nativeOrder()); var v2 = byteVec.fromMemorySegment(file, i2, ByteOrder.nativeOrder()); var isTrue = v1.compare(VectorOperators.EQ, v2, allTrue.indexInRange(0, len)); return isTrue.trueCount() == len; } while (8 < (len - i)) { var v1 = file.get(JAVA_LONG_UNALIGNED, i1 + i); var v2 = file.get(JAVA_LONG_UNALIGNED, i2 + i); if (v1 != v2) { return false; } i += 8; } while (i < len) { var v1 = file.get(JAVA_BYTE, i1 + i); var v2 = file.get(JAVA_BYTE, i2 + i); if (v1 != v2) { return false; } i++; } return true; } public void fillMerge(MemorySegment file, TreeMap<String, ResultRow> treeMap) { for (int i = 0; i < keys.length; i++) { var ji = i; long keyE = keys[ji]; if (keyE != 0) { long keyPos = (keyE & MASK_POS) >> SHIFT_POS; int keyLen = (int) (keyE & MASK_LEN); byte[] keyBytes = new byte[keyLen]; MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); var key = new String(keyBytes); var vE = values[ji]; var min = vE.min; var max = vE.max; var sum = vE.sum; var count = vE.count; treeMap.compute(key, (k, e) -> { if (e == null) { return new ResultRow(min, max, sum, count); } else { return new ResultRow(Math.min(e.min, min), Math.max(e.max, max), e.sum + sum, e.count + count); } }); } } } // public String debugPrint(MemorySegment file) { // StringBuilder b = new StringBuilder(); // for (int i = 0; i < keyValues.length / 5; i++) { // var ji = i * 5; // long keyE = keyValues[ji]; // if (keyE != 0) { // long keyPos = (keyE & MASK_POS) >> SHIFT_POS; // int keyLen<SUF> // byte[] keyBytes = new byte[keyLen]; // MemorySegment.copy(file, JAVA_BYTE, keyPos, keyBytes, 0, keyLen); // var key = new String(keyBytes); // var min = longBitsToDouble(keyValues[ji + 1]); // var max = longBitsToDouble(keyValues[ji + 2]); // var sum = longBitsToDouble(keyValues[ji + 3]); // var count = keyValues[ji + 4]; // b.append("{").append(key).append("@").append(ji) // .append(",").append(min) // .append(",").append(max) // .append(",").append(sum) // .append(",").append(count).append("},"); // } // } // return b.toString(); // } } record Section(long start, long end) { } private static record ResultRow(double min, double max, double sum, long count) { public String toString() { return round(min) + "/" + round(((Math.round(sum * 10.0) / 10.0) / count)) + "/" + round(max); } private double round(double value) { return Math.round(value * 10.0) / 10.0; } } ; }
202581_32
/* * Copyright (c) 2015, 2019 Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2015, 2018 Jason Mehrens. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at * http://www.eclipse.org/legal/epl-2.0. * * This Source Code may also be made available under the following Secondary * Licenses when the conditions for such availability set forth in the * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, * version 2 with the GNU Classpath Exception, which is available at * https://www.gnu.org/software/classpath/license.html. * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.sun.mail.util.logging; import static com.sun.mail.util.logging.LogManagerProperties.fromLogManager; import java.util.logging.*; /** * A filter used to limit log records based on a maximum generation rate. * * The duration specified is used to compute the record rate and the amount of * time the filter will reject records once the rate has been exceeded. Once the * rate is exceeded records are not allowed until the duration has elapsed. * * <p> * By default each {@code DurationFilter} is initialized using the following * LogManager configuration properties where {@code <filter-name>} refers to the * fully qualified class name of the handler. If properties are not defined, or * contain invalid values, then the specified default values are used. * * <ul> * <li>{@literal <filter-name>}.records the max number of records per duration. * A numeric long integer or a multiplication expression can be used as the * value. (defaults to {@code 1000}) * * <li>{@literal <filter-name>}.duration the number of milliseconds to suppress * log records from being published. This is also used as duration to determine * the log record rate. A numeric long integer or a multiplication expression * can be used as the value. If the {@code java.time} package is available then * an ISO-8601 duration format of {@code PnDTnHnMn.nS} can be used as the value. * The suffixes of "D", "H", "M" and "S" are for days, hours, minutes and * seconds. The suffixes must occur in order. The seconds can be specified with * a fractional component to declare milliseconds. (defaults to {@code PT15M}) * </ul> * * <p> * For example, the settings to limit {@code MailHandler} with a default * capacity to only send a maximum of two email messages every six minutes would * be as follows: * <pre> * {@code * com.sun.mail.util.logging.MailHandler.filter = com.sun.mail.util.logging.DurationFilter * com.sun.mail.util.logging.MailHandler.capacity = 1000 * com.sun.mail.util.logging.DurationFilter.records = 2L * 1000L * com.sun.mail.util.logging.DurationFilter.duration = PT6M * } * </pre> * * * @author Jason Mehrens * @since JavaMail 1.5.5 */ public class DurationFilter implements Filter { /** * The number of expected records per duration. */ private final long records; /** * The duration in milliseconds used to determine the rate. The duration is * also used as the amount of time that the filter will not allow records * when saturated. */ private final long duration; /** * The number of records seen for the current duration. This value negative * if saturated. Zero is considered saturated but is reserved for recording * the first duration. */ private long count; /** * The most recent record time seen for the current duration. */ private long peak; /** * The start time for the current duration. */ private long start; /** * Creates the filter using the default properties. */ public DurationFilter() { this.records = checkRecords(initLong(".records")); this.duration = checkDuration(initLong(".duration")); } /** * Creates the filter using the given properties. Default values are used if * any of the given values are outside the allowed range. * * @param records the number of records per duration. * @param duration the number of milliseconds to suppress log records from * being published. */ public DurationFilter(final long records, final long duration) { this.records = checkRecords(records); this.duration = checkDuration(duration); } /** * Determines if this filter is equal to another filter. * * @param obj the given object. * @return true if equal otherwise false. */ @Override public boolean equals(final Object obj) { if (this == obj) { //Avoid locks and deal with rapid state changes. return true; } if (obj == null || getClass() != obj.getClass()) { return false; } final DurationFilter other = (DurationFilter) obj; if (this.records != other.records) { return false; } if (this.duration != other.duration) { return false; } final long c; final long p; final long s; synchronized (this) { c = this.count; p = this.peak; s = this.start; } synchronized (other) { if (c != other.count || p != other.peak || s != other.start) { return false; } } return true; } /** * Determines if this filter is able to accept the maximum number of log * records for this instant in time. The result is a best-effort estimate * and should be considered out of date as soon as it is produced. This * method is designed for use in monitoring the state of this filter. * * @return true if the filter is idle; false otherwise. */ public boolean isIdle() { return test(0L, System.currentTimeMillis()); } /** * Returns a hash code value for this filter. * * @return hash code for this filter. */ @Override public int hashCode() { int hash = 3; hash = 89 * hash + (int) (this.records ^ (this.records >>> 32)); hash = 89 * hash + (int) (this.duration ^ (this.duration >>> 32)); return hash; } /** * Check if the given log record should be published. This method will * modify the internal state of this filter. * * @param record the log record to check. * @return true if allowed; false otherwise. * @throws NullPointerException if given record is null. */ @SuppressWarnings("override") //JDK-6954234 public boolean isLoggable(final LogRecord record) { return accept(record.getMillis()); } /** * Determines if this filter will accept log records for this instant in * time. The result is a best-effort estimate and should be considered out * of date as soon as it is produced. This method is designed for use in * monitoring the state of this filter. * * @return true if the filter is not saturated; false otherwise. */ public boolean isLoggable() { return test(records, System.currentTimeMillis()); } /** * Returns a string representation of this filter. The result is a * best-effort estimate and should be considered out of date as soon as it * is produced. * * @return a string representation of this filter. */ @Override public String toString() { boolean idle; boolean loggable; synchronized (this) { final long millis = System.currentTimeMillis(); idle = test(0L, millis); loggable = test(records, millis); } return getClass().getName() + "{records=" + records + ", duration=" + duration + ", idle=" + idle + ", loggable=" + loggable + '}'; } /** * Creates a copy of this filter that retains the filter settings but does * not include the current filter state. The newly create clone acts as if * it has never seen any records. * * @return a copy of this filter. * @throws CloneNotSupportedException if this filter is not allowed to be * cloned. */ @Override protected DurationFilter clone() throws CloneNotSupportedException { final DurationFilter clone = (DurationFilter) super.clone(); clone.count = 0L; //Reset the filter state. clone.peak = 0L; clone.start = 0L; return clone; } /** * Checks if this filter is not saturated or bellow a maximum rate. * * @param limit the number of records allowed to be under the rate. * @param millis the current time in milliseconds. * @return true if not saturated or bellow the rate. */ private boolean test(final long limit, final long millis) { assert limit >= 0L : limit; final long c; final long s; synchronized (this) { c = count; s = start; } if (c > 0L) { //If not saturated. if ((millis - s) >= duration || c < limit) { return true; } } else { //Subtraction is used to deal with numeric overflow. if ((millis - s) >= 0L || c == 0L) { return true; } } return false; } /** * Determines if the record is loggable by time. * * @param millis the log record milliseconds. * @return true if accepted false otherwise. */ private synchronized boolean accept(final long millis) { //Subtraction is used to deal with numeric overflow of millis. boolean allow; if (count > 0L) { //If not saturated. if ((millis - peak) > 0L) { peak = millis; //Record the new peak. } //Under the rate if the count has not been reached. if (count != records) { ++count; allow = true; } else { if ((peak - start) >= duration) { count = 1L; //Start a new duration. start = peak; allow = true; } else { count = -1L; //Saturate for the duration. start = peak + duration; allow = false; } } } else { //If the saturation period has expired or this is the first record //then start a new duration and allow records. if ((millis - start) >= 0L || count == 0L) { count = 1L; start = millis; peak = millis; allow = true; } else { allow = false; //Remain in a saturated state. } } return allow; } /** * Reads a long value or multiplication expression from the LogManager. If * the value can not be parsed or is not defined then Long.MIN_VALUE is * returned. * * @param suffix a dot character followed by the key name. * @return a long value or Long.MIN_VALUE if unable to parse or undefined. * @throws NullPointerException if suffix is null. */ private long initLong(final String suffix) { long result = 0L; final String p = getClass().getName(); String value = fromLogManager(p.concat(suffix)); if (value != null && value.length() != 0) { value = value.trim(); if (isTimeEntry(suffix, value)) { try { result = LogManagerProperties.parseDurationToMillis(value); } catch (final RuntimeException ignore) { } catch (final Exception ignore) { } catch (final LinkageError ignore) { } } if (result == 0L) { //Zero is invalid. try { result = 1L; for (String s : tokenizeLongs(value)) { if (s.endsWith("L") || s.endsWith("l")) { s = s.substring(0, s.length() - 1); } result = multiplyExact(result, Long.parseLong(s)); } } catch (final RuntimeException ignore) { result = Long.MIN_VALUE; } } } else { result = Long.MIN_VALUE; } return result; } /** * Determines if the given suffix can be a time unit and the value is * encoded as an ISO ISO-8601 duration format. * * @param suffix the suffix property. * @param value the value of the property. * @return true if the entry is a time entry. * @throws IndexOutOfBoundsException if value is empty. * @throws NullPointerException if either argument is null. */ private boolean isTimeEntry(final String suffix, final String value) { return (value.charAt(0) == 'P' || value.charAt(0) == 'p') && suffix.equals(".duration"); } /** * Parse any long value or multiplication expressions into tokens. * * @param value the expression or value. * @return an array of long tokens, never empty. * @throws NullPointerException if the given value is null. * @throws NumberFormatException if the expression is invalid. */ private static String[] tokenizeLongs(final String value) { String[] e; final int i = value.indexOf('*'); if (i > -1 && (e = value.split("\\s*\\*\\s*")).length != 0) { if (i == 0 || value.charAt(value.length() - 1) == '*') { throw new NumberFormatException(value); } if (e.length == 1) { throw new NumberFormatException(e[0]); } } else { e = new String[]{value}; } return e; } /** * Multiply and check for overflow. This can be replaced with * {@code java.lang.Math.multiplyExact} when Jakarta Mail requires JDK 8. * * @param x the first value. * @param y the second value. * @return x times y. * @throws ArithmeticException if overflow is detected. */ private static long multiplyExact(final long x, final long y) { long r = x * y; if (((Math.abs(x) | Math.abs(y)) >>> 31L != 0L)) { if (((y != 0L) && (r / y != x)) || (x == Long.MIN_VALUE && y == -1L)) { throw new ArithmeticException(); } } return r; } /** * Converts record count to a valid record count. If the value is out of * bounds then the default record count is used. * * @param records the record count. * @return a valid number of record count. */ private static long checkRecords(final long records) { return records > 0L ? records : 1000L; } /** * Converts the duration to a valid duration. If the value is out of bounds * then the default duration is used. * * @param duration the duration to check. * @return a valid duration. */ private static long checkDuration(final long duration) { return duration > 0L ? duration : 15L * 60L * 1000L; } }
M66B/FairEmail
app/src/main/java/com/sun/mail/util/logging/DurationFilter.java
4,080
//Zero is invalid.
line_comment
nl
/* * Copyright (c) 2015, 2019 Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2015, 2018 Jason Mehrens. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0, which is available at * http://www.eclipse.org/legal/epl-2.0. * * This Source Code may also be made available under the following Secondary * Licenses when the conditions for such availability set forth in the * Eclipse Public License v. 2.0 are satisfied: GNU General Public License, * version 2 with the GNU Classpath Exception, which is available at * https://www.gnu.org/software/classpath/license.html. * * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 */ package com.sun.mail.util.logging; import static com.sun.mail.util.logging.LogManagerProperties.fromLogManager; import java.util.logging.*; /** * A filter used to limit log records based on a maximum generation rate. * * The duration specified is used to compute the record rate and the amount of * time the filter will reject records once the rate has been exceeded. Once the * rate is exceeded records are not allowed until the duration has elapsed. * * <p> * By default each {@code DurationFilter} is initialized using the following * LogManager configuration properties where {@code <filter-name>} refers to the * fully qualified class name of the handler. If properties are not defined, or * contain invalid values, then the specified default values are used. * * <ul> * <li>{@literal <filter-name>}.records the max number of records per duration. * A numeric long integer or a multiplication expression can be used as the * value. (defaults to {@code 1000}) * * <li>{@literal <filter-name>}.duration the number of milliseconds to suppress * log records from being published. This is also used as duration to determine * the log record rate. A numeric long integer or a multiplication expression * can be used as the value. If the {@code java.time} package is available then * an ISO-8601 duration format of {@code PnDTnHnMn.nS} can be used as the value. * The suffixes of "D", "H", "M" and "S" are for days, hours, minutes and * seconds. The suffixes must occur in order. The seconds can be specified with * a fractional component to declare milliseconds. (defaults to {@code PT15M}) * </ul> * * <p> * For example, the settings to limit {@code MailHandler} with a default * capacity to only send a maximum of two email messages every six minutes would * be as follows: * <pre> * {@code * com.sun.mail.util.logging.MailHandler.filter = com.sun.mail.util.logging.DurationFilter * com.sun.mail.util.logging.MailHandler.capacity = 1000 * com.sun.mail.util.logging.DurationFilter.records = 2L * 1000L * com.sun.mail.util.logging.DurationFilter.duration = PT6M * } * </pre> * * * @author Jason Mehrens * @since JavaMail 1.5.5 */ public class DurationFilter implements Filter { /** * The number of expected records per duration. */ private final long records; /** * The duration in milliseconds used to determine the rate. The duration is * also used as the amount of time that the filter will not allow records * when saturated. */ private final long duration; /** * The number of records seen for the current duration. This value negative * if saturated. Zero is considered saturated but is reserved for recording * the first duration. */ private long count; /** * The most recent record time seen for the current duration. */ private long peak; /** * The start time for the current duration. */ private long start; /** * Creates the filter using the default properties. */ public DurationFilter() { this.records = checkRecords(initLong(".records")); this.duration = checkDuration(initLong(".duration")); } /** * Creates the filter using the given properties. Default values are used if * any of the given values are outside the allowed range. * * @param records the number of records per duration. * @param duration the number of milliseconds to suppress log records from * being published. */ public DurationFilter(final long records, final long duration) { this.records = checkRecords(records); this.duration = checkDuration(duration); } /** * Determines if this filter is equal to another filter. * * @param obj the given object. * @return true if equal otherwise false. */ @Override public boolean equals(final Object obj) { if (this == obj) { //Avoid locks and deal with rapid state changes. return true; } if (obj == null || getClass() != obj.getClass()) { return false; } final DurationFilter other = (DurationFilter) obj; if (this.records != other.records) { return false; } if (this.duration != other.duration) { return false; } final long c; final long p; final long s; synchronized (this) { c = this.count; p = this.peak; s = this.start; } synchronized (other) { if (c != other.count || p != other.peak || s != other.start) { return false; } } return true; } /** * Determines if this filter is able to accept the maximum number of log * records for this instant in time. The result is a best-effort estimate * and should be considered out of date as soon as it is produced. This * method is designed for use in monitoring the state of this filter. * * @return true if the filter is idle; false otherwise. */ public boolean isIdle() { return test(0L, System.currentTimeMillis()); } /** * Returns a hash code value for this filter. * * @return hash code for this filter. */ @Override public int hashCode() { int hash = 3; hash = 89 * hash + (int) (this.records ^ (this.records >>> 32)); hash = 89 * hash + (int) (this.duration ^ (this.duration >>> 32)); return hash; } /** * Check if the given log record should be published. This method will * modify the internal state of this filter. * * @param record the log record to check. * @return true if allowed; false otherwise. * @throws NullPointerException if given record is null. */ @SuppressWarnings("override") //JDK-6954234 public boolean isLoggable(final LogRecord record) { return accept(record.getMillis()); } /** * Determines if this filter will accept log records for this instant in * time. The result is a best-effort estimate and should be considered out * of date as soon as it is produced. This method is designed for use in * monitoring the state of this filter. * * @return true if the filter is not saturated; false otherwise. */ public boolean isLoggable() { return test(records, System.currentTimeMillis()); } /** * Returns a string representation of this filter. The result is a * best-effort estimate and should be considered out of date as soon as it * is produced. * * @return a string representation of this filter. */ @Override public String toString() { boolean idle; boolean loggable; synchronized (this) { final long millis = System.currentTimeMillis(); idle = test(0L, millis); loggable = test(records, millis); } return getClass().getName() + "{records=" + records + ", duration=" + duration + ", idle=" + idle + ", loggable=" + loggable + '}'; } /** * Creates a copy of this filter that retains the filter settings but does * not include the current filter state. The newly create clone acts as if * it has never seen any records. * * @return a copy of this filter. * @throws CloneNotSupportedException if this filter is not allowed to be * cloned. */ @Override protected DurationFilter clone() throws CloneNotSupportedException { final DurationFilter clone = (DurationFilter) super.clone(); clone.count = 0L; //Reset the filter state. clone.peak = 0L; clone.start = 0L; return clone; } /** * Checks if this filter is not saturated or bellow a maximum rate. * * @param limit the number of records allowed to be under the rate. * @param millis the current time in milliseconds. * @return true if not saturated or bellow the rate. */ private boolean test(final long limit, final long millis) { assert limit >= 0L : limit; final long c; final long s; synchronized (this) { c = count; s = start; } if (c > 0L) { //If not saturated. if ((millis - s) >= duration || c < limit) { return true; } } else { //Subtraction is used to deal with numeric overflow. if ((millis - s) >= 0L || c == 0L) { return true; } } return false; } /** * Determines if the record is loggable by time. * * @param millis the log record milliseconds. * @return true if accepted false otherwise. */ private synchronized boolean accept(final long millis) { //Subtraction is used to deal with numeric overflow of millis. boolean allow; if (count > 0L) { //If not saturated. if ((millis - peak) > 0L) { peak = millis; //Record the new peak. } //Under the rate if the count has not been reached. if (count != records) { ++count; allow = true; } else { if ((peak - start) >= duration) { count = 1L; //Start a new duration. start = peak; allow = true; } else { count = -1L; //Saturate for the duration. start = peak + duration; allow = false; } } } else { //If the saturation period has expired or this is the first record //then start a new duration and allow records. if ((millis - start) >= 0L || count == 0L) { count = 1L; start = millis; peak = millis; allow = true; } else { allow = false; //Remain in a saturated state. } } return allow; } /** * Reads a long value or multiplication expression from the LogManager. If * the value can not be parsed or is not defined then Long.MIN_VALUE is * returned. * * @param suffix a dot character followed by the key name. * @return a long value or Long.MIN_VALUE if unable to parse or undefined. * @throws NullPointerException if suffix is null. */ private long initLong(final String suffix) { long result = 0L; final String p = getClass().getName(); String value = fromLogManager(p.concat(suffix)); if (value != null && value.length() != 0) { value = value.trim(); if (isTimeEntry(suffix, value)) { try { result = LogManagerProperties.parseDurationToMillis(value); } catch (final RuntimeException ignore) { } catch (final Exception ignore) { } catch (final LinkageError ignore) { } } if (result == 0L) { //Zero is<SUF> try { result = 1L; for (String s : tokenizeLongs(value)) { if (s.endsWith("L") || s.endsWith("l")) { s = s.substring(0, s.length() - 1); } result = multiplyExact(result, Long.parseLong(s)); } } catch (final RuntimeException ignore) { result = Long.MIN_VALUE; } } } else { result = Long.MIN_VALUE; } return result; } /** * Determines if the given suffix can be a time unit and the value is * encoded as an ISO ISO-8601 duration format. * * @param suffix the suffix property. * @param value the value of the property. * @return true if the entry is a time entry. * @throws IndexOutOfBoundsException if value is empty. * @throws NullPointerException if either argument is null. */ private boolean isTimeEntry(final String suffix, final String value) { return (value.charAt(0) == 'P' || value.charAt(0) == 'p') && suffix.equals(".duration"); } /** * Parse any long value or multiplication expressions into tokens. * * @param value the expression or value. * @return an array of long tokens, never empty. * @throws NullPointerException if the given value is null. * @throws NumberFormatException if the expression is invalid. */ private static String[] tokenizeLongs(final String value) { String[] e; final int i = value.indexOf('*'); if (i > -1 && (e = value.split("\\s*\\*\\s*")).length != 0) { if (i == 0 || value.charAt(value.length() - 1) == '*') { throw new NumberFormatException(value); } if (e.length == 1) { throw new NumberFormatException(e[0]); } } else { e = new String[]{value}; } return e; } /** * Multiply and check for overflow. This can be replaced with * {@code java.lang.Math.multiplyExact} when Jakarta Mail requires JDK 8. * * @param x the first value. * @param y the second value. * @return x times y. * @throws ArithmeticException if overflow is detected. */ private static long multiplyExact(final long x, final long y) { long r = x * y; if (((Math.abs(x) | Math.abs(y)) >>> 31L != 0L)) { if (((y != 0L) && (r / y != x)) || (x == Long.MIN_VALUE && y == -1L)) { throw new ArithmeticException(); } } return r; } /** * Converts record count to a valid record count. If the value is out of * bounds then the default record count is used. * * @param records the record count. * @return a valid number of record count. */ private static long checkRecords(final long records) { return records > 0L ? records : 1000L; } /** * Converts the duration to a valid duration. If the value is out of bounds * then the default duration is used. * * @param duration the duration to check. * @return a valid duration. */ private static long checkDuration(final long duration) { return duration > 0L ? duration : 15L * 60L * 1000L; } }
202587_30
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.netbeans.modules.properties; import java.io.ByteArrayOutputStream; import java.io.InputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.Iterator; import java.util.Set; import java.util.TreeSet; import java.util.logging.Logger; import org.openide.filesystems.FileLock; import org.openide.filesystems.FileObject; import org.openide.loaders.MultiDataObject; import org.openide.nodes.Children; import org.openide.nodes.CookieSet; import org.openide.nodes.Node; import org.openide.NotifyDescriptor; import org.openide.DialogDisplayer; import org.openide.filesystems.FileUtil; import org.openide.util.HelpCtx; import org.openide.util.NbBundle; import static java.util.logging.Level.FINER; import org.openide.filesystems.FileChangeAdapter; import org.openide.filesystems.FileChangeListener; import org.openide.filesystems.FileEvent; import org.openide.util.WeakListeners; /** * Item in a set of properties files represented by a single * <code>PropertiesDataObject</code>. * * @see PropertiesDataLoader#createPrimaryEntry * @see PropertiesDataLoader#createSecondaryEntry */ public class PropertiesFileEntry extends PresentableFileEntry implements CookieSet.Factory { static final Logger LOG = Logger.getLogger(PropertiesFileEntry.class.getName()); /** Basic name of bundle .properties file. */ private String basicName; /** Structure handler for .properties file represented by this instance. */ private transient StructHandler propStruct; /** Editor support for this entry. */ private transient PropertiesEditorSupport editorSupport; /** This object is used for marking all undoable edits performed as one atomic undoable action. */ transient Object atomicUndoRedoFlag; /** Generated serial version UID. */ static final long serialVersionUID = -3882240297814143015L; private final FileChangeAdapter list; private FileChangeListener weakList; /** * Creates a new <code>PropertiesFileEntry</code>. * * @param obj data object this entry belongs to * @param file file object for this entry */ PropertiesFileEntry(MultiDataObject obj, FileObject file) { super(obj, file); if (LOG.isLoggable(FINER)) { LOG.finer("new PropertiesFileEntry(<MultiDataObject>, " //NOI18N + FileUtil.getFileDisplayName(file) + ')'); LOG.finer(" - new PresentableFileEntry(<MultiDataObject>, "//NOI18N + FileUtil.getFileDisplayName(file) + ')'); } FileObject fo = getDataObject().getPrimaryFile(); if (fo == null) // primary file not init'ed yet => I'm the primary entry basicName = getFile().getName(); else basicName = fo.getName(); list = new FileChangeAdapter() { @Override public void fileChanged (FileEvent fe) { getHandler().autoParse(); } @Override public void fileDeleted (FileEvent fe) { detachListener(); } }; attachListener(file); getCookieSet().add(PropertiesEditorSupport.class, this); } /** Copies entry to folder. Overrides superclass method. * @param folder folder where copy * @param suffix suffix to use * @exception IOException when error happens */ @Override public FileObject copy(FileObject folder, String suffix) throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("copy(" //NOI18N + FileUtil.getFileDisplayName(folder) + ", " //NOI18N + (suffix != null ? '"' + suffix + '"' : "<null>")//NOI18N + ')'); } String pasteSuffix = ((PropertiesDataObject)getDataObject()).getPasteSuffix(); if(pasteSuffix == null) return super.copy(folder, suffix); FileObject fileObject = getFile(); String basicName = getDataObject().getPrimaryFile().getName(); String newName = basicName + pasteSuffix + Util.getLocaleSuffix(this); return fileObject.copy(folder, newName, fileObject.getExt()); } /** Deletes file. Overrides superclass method. */ @Override public void delete() throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("delete()"); //NOI18N } getHandler().stopParsing(); detachListener(); try { super.delete(); } finally { // Sets back parsing flag. getHandler().allowParsing(); } } /** Moves entry to folder. Overrides superclass method. * @param folder folder where copy * @param suffix suffix to use * @exception IOException when error happens */ @Override public FileObject move(FileObject folder, String suffix) throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("move(" //NOI18N + FileUtil.getFileDisplayName(folder) + ", " //NOI18N + (suffix != null ? '"' + suffix + '"' : "<null>")//NOI18N + ')'); } String pasteSuffix = ((PropertiesDataObject)getDataObject()).getPasteSuffix(); if(pasteSuffix == null) return super.move(folder, suffix); boolean wasLocked = isLocked(); FileObject fileObject = getFile(); FileLock lock = takeLock (); try { String basicName = getDataObject().getPrimaryFile().getName(); String newName = basicName + pasteSuffix + Util.getLocaleSuffix(this); detachListener(); FileObject fo = fileObject.move (lock, folder, newName, fileObject.getExt()); attachListener(fo); return fo; } finally { if (!wasLocked) { lock.releaseLock (); } } } /** Implements <code>CookieSet.Factory</code> interface method. */ @SuppressWarnings("unchecked") public <T extends Node.Cookie> T createCookie(Class<T> clazz) { if (clazz.isAssignableFrom(PropertiesEditorSupport.class)) { return (T) getPropertiesEditor(); } else { return null; } } /** Creates a node delegate for this entry. Implements superclass abstract method. */ protected Node createNodeDelegate() { return new PropertiesLocaleNode(this); } /** Gets children for this file entry. */ public Children getChildren() { return new PropKeysChildren(); } /** Gets struct handler for this entry. * @return <StructHanlder</code> for this entry */ public StructHandler getHandler() { if (propStruct == null) { propStruct = new StructHandler(this); } return propStruct; } /** Deserialization. */ private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); } /** Gets editor support for this entry. * @return <code>PropertiesEditorSupport</code> instance for this entry */ protected PropertiesEditorSupport getPropertiesEditor() { // Hack to ensure open support is created. // PENDING has to be made finer. // getDataObject().getCookie(PropertiesOpen.class); synchronized(this) { if(editorSupport == null) editorSupport = new PropertiesEditorSupport(this); } return editorSupport; } /** Renames underlying fileobject. This implementation returns the same file. * Overrides superclass method. * * @param name new base name of the bundle * @return file object with renamed file */ @Override public FileObject rename (String name) throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("rename(" + name + ')'); //NOI18N } if (!getFile().getName().startsWith(basicName)) throw new IllegalStateException("Resource Bundles: error in Properties loader/rename."); // NOI18N detachListener(); FileObject fo = super.rename(name + getFile().getName().substring(basicName.length())); attachListener(fo); basicName = name; return fo; } /** Renames underlying fileobject. This implementation returns the same file. * Overrides superclass method. * * @param name full name of the file represented by this entry * @return file object with renamed file */ @Override public FileObject renameEntry (String name) throws IOException { if (!getFile().getName().startsWith(basicName)) throw new IllegalStateException("Resource Bundles: error in Properties loader / rename"); // NOI18N if (basicName.equals(getFile().getName())) { // primary entry - can not rename NotifyDescriptor.Message msg = new NotifyDescriptor.Message( NbBundle.getBundle(PropertiesDataLoader.class).getString("MSG_AttemptToRenamePrimaryFile"), NotifyDescriptor.ERROR_MESSAGE); DialogDisplayer.getDefault().notify(msg); return getFile(); } FileObject fo = super.rename(name); // to notify the bundle structure that name of one file was changed ((PropertiesDataObject)getDataObject()).getBundleStructure().notifyOneFileChanged(getHandler()); return fo; } @Override public FileObject createFromTemplate (FileObject folder, String name) throws IOException { if (!getFile().getName().startsWith(basicName)) throw new IllegalStateException("Resource Bundles: error in Properties createFromTemplate"); // NOI18N String suffix = getFile ().getName ().substring (basicName.length ()); String nuename = name + suffix; String ext = getFile ().getExt (); FileObject existing = folder.getFileObject (nuename, ext); if (existing == null) { return super.createFromTemplate (folder, nuename); } else { // Append new content. Used to ask you whether the leave the old // file alone, or overwrite it with the new file, or append the new // content; but it can just cause deadlocks (#38599) to try to prompt // the user for anything from inside a Datasystems method, so don't // bother. Appending is the safest option; redundant stuff can always // be cleaned up manually. { // avoiding reindenting code byte[] originalData; byte[] buf = new byte[4096]; int count; FileLock lock = existing.lock (); try { InputStream is = existing.getInputStream (); try { ByteArrayOutputStream baos = new ByteArrayOutputStream ((int) existing.getSize ()); try { while ((count = is.read (buf)) != -1) { baos.write (buf, 0, count); } } finally { originalData = baos.toByteArray (); baos.close (); } } finally { is.close (); } existing.delete (lock); } finally { lock.releaseLock (); } FileObject nue = folder.createData (nuename, ext); lock = nue.lock (); try { OutputStream os = nue.getOutputStream (lock); try { os.write (originalData); InputStream is = getFile ().getInputStream (); try { while ((count = is.read (buf)) != -1) { os.write (buf, 0, count); } } finally { is.close (); } } finally { os.close (); } } finally { lock.releaseLock (); } // Does not appear to have any effect: // ((PropertiesDataObject) getDataObject ()).getBundleStructure (). // notifyOneFileChanged (getHandler ()); return nue; } } } /** Whether the object may be deleted. Implemenst superclass abstract method. * @return <code>true</code> if it may (primary file can't be deleted) */ public boolean isDeleteAllowed() { // PENDING - better implementation : don't allow deleting Bunlde_en when Bundle_en_US exists return (getFile ().canWrite ()) && (!basicName.equals(getFile().getName())); } /** Whether the object may be copied. Implements superclass abstract method. * @return <code>true</code> if it may */ public boolean isCopyAllowed() { return true; } // [PENDING] copy should be overridden because e.g. copy and then paste // to the same folder creates a new locale named "1"! (I.e. "foo_1.properties") /** Indicates whether the object can be moved. Implements superclass abstract method. * @return <code>true</code> if the object can be moved */ public boolean isMoveAllowed() { return (getFile().canWrite()) && (getDataObject().getPrimaryEntry() != this); } /** Getter for rename action. Implements superclass abstract method. * @return true if the object can be renamed */ public boolean isRenameAllowed () { return getFile ().canWrite (); } /** Help context for this object. Implements superclass abstract method. * @return help context */ public HelpCtx getHelpCtx() { return new HelpCtx(Util.HELP_ID_CREATING); } private void attachListener (FileObject fo) { fo.addFileChangeListener(weakList = WeakListeners.create(FileChangeListener.class, list, fo)); } private void detachListener () { FileObject fo = getFile(); fo.removeFileChangeListener(weakList); weakList = null; } /** Children of a node representing single properties file. * Contains nodes representing individual properties (key-value pairs with comments). */ private class PropKeysChildren extends Children.Keys<String> { /** Listens to changes on the property bundle structure. */ private PropertyBundleListener bundleListener = null; /** Constructor. */ PropKeysChildren() { super(); } /** Sets all keys in the correct order. Calls <code>setKeys</code>. Helper method. * @see org.openide.nodes.Children.Keys#setKeys(java.util.Collection) */ private void mySetKeys() { // Use TreeSet because its iterator iterates in ascending order. Set<String> keys = new TreeSet<String>(new KeyComparator()); PropertiesStructure propStructure = getHandler().getStructure(); if (propStructure != null) { synchronized(propStructure.getParentBundleStructure()) { synchronized(propStructure.getParent()) { for (Iterator<Element.ItemElem> iterator = propStructure.allItems(); iterator.hasNext(); ) { Element.ItemElem item = iterator.next(); if (item != null && item.getKey() != null) { keys.add(item.getKey()); } } } } } setKeys(keys); } /** Called to notify that the children has been asked for children * after and that they should set its keys. Overrides superclass method. */ @Override protected void addNotify () { mySetKeys(); bundleListener = new PropertyBundleListener () { public void bundleChanged(PropertyBundleEvent evt) { int changeType = evt.getChangeType(); if(changeType == PropertyBundleEvent.CHANGE_STRUCT || changeType == PropertyBundleEvent.CHANGE_ALL) { mySetKeys(); } else if(changeType == PropertyBundleEvent.CHANGE_FILE && evt.getEntryName().equals(getFile().getName())) { // File underlying this entry changed. mySetKeys(); } } }; // End of annonymous class. bundleStructure().addPropertyBundleListener(bundleListener); } /** Called to notify that the children has lost all of its references to * its nodes associated to keys and that the keys could be cleared without * affecting any nodes (because nobody listens to that nodes). Overrides superclass method. */ @Override protected void removeNotify () { bundleStructure().removePropertyBundleListener(bundleListener); setKeys(new ArrayList<String>()); } /** Create nodes. Implements superclass abstract method. */ protected Node[] createNodes (String itemKey) { return new Node[] { new KeyNode(getHandler().getStructure(), itemKey) }; } /** Model accessor method. */ private BundleStructure bundleStructure() { return ((PropertiesDataObject)PropertiesFileEntry.this.getDataObject()).getBundleStructure(); } } // End of inner class PropKeysChildren. }
apache/netbeans
ide/properties/src/org/netbeans/modules/properties/PropertiesFileEntry.java
4,334
// avoiding reindenting code
line_comment
nl
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.netbeans.modules.properties; import java.io.ByteArrayOutputStream; import java.io.InputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.OutputStream; import java.util.ArrayList; import java.util.Iterator; import java.util.Set; import java.util.TreeSet; import java.util.logging.Logger; import org.openide.filesystems.FileLock; import org.openide.filesystems.FileObject; import org.openide.loaders.MultiDataObject; import org.openide.nodes.Children; import org.openide.nodes.CookieSet; import org.openide.nodes.Node; import org.openide.NotifyDescriptor; import org.openide.DialogDisplayer; import org.openide.filesystems.FileUtil; import org.openide.util.HelpCtx; import org.openide.util.NbBundle; import static java.util.logging.Level.FINER; import org.openide.filesystems.FileChangeAdapter; import org.openide.filesystems.FileChangeListener; import org.openide.filesystems.FileEvent; import org.openide.util.WeakListeners; /** * Item in a set of properties files represented by a single * <code>PropertiesDataObject</code>. * * @see PropertiesDataLoader#createPrimaryEntry * @see PropertiesDataLoader#createSecondaryEntry */ public class PropertiesFileEntry extends PresentableFileEntry implements CookieSet.Factory { static final Logger LOG = Logger.getLogger(PropertiesFileEntry.class.getName()); /** Basic name of bundle .properties file. */ private String basicName; /** Structure handler for .properties file represented by this instance. */ private transient StructHandler propStruct; /** Editor support for this entry. */ private transient PropertiesEditorSupport editorSupport; /** This object is used for marking all undoable edits performed as one atomic undoable action. */ transient Object atomicUndoRedoFlag; /** Generated serial version UID. */ static final long serialVersionUID = -3882240297814143015L; private final FileChangeAdapter list; private FileChangeListener weakList; /** * Creates a new <code>PropertiesFileEntry</code>. * * @param obj data object this entry belongs to * @param file file object for this entry */ PropertiesFileEntry(MultiDataObject obj, FileObject file) { super(obj, file); if (LOG.isLoggable(FINER)) { LOG.finer("new PropertiesFileEntry(<MultiDataObject>, " //NOI18N + FileUtil.getFileDisplayName(file) + ')'); LOG.finer(" - new PresentableFileEntry(<MultiDataObject>, "//NOI18N + FileUtil.getFileDisplayName(file) + ')'); } FileObject fo = getDataObject().getPrimaryFile(); if (fo == null) // primary file not init'ed yet => I'm the primary entry basicName = getFile().getName(); else basicName = fo.getName(); list = new FileChangeAdapter() { @Override public void fileChanged (FileEvent fe) { getHandler().autoParse(); } @Override public void fileDeleted (FileEvent fe) { detachListener(); } }; attachListener(file); getCookieSet().add(PropertiesEditorSupport.class, this); } /** Copies entry to folder. Overrides superclass method. * @param folder folder where copy * @param suffix suffix to use * @exception IOException when error happens */ @Override public FileObject copy(FileObject folder, String suffix) throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("copy(" //NOI18N + FileUtil.getFileDisplayName(folder) + ", " //NOI18N + (suffix != null ? '"' + suffix + '"' : "<null>")//NOI18N + ')'); } String pasteSuffix = ((PropertiesDataObject)getDataObject()).getPasteSuffix(); if(pasteSuffix == null) return super.copy(folder, suffix); FileObject fileObject = getFile(); String basicName = getDataObject().getPrimaryFile().getName(); String newName = basicName + pasteSuffix + Util.getLocaleSuffix(this); return fileObject.copy(folder, newName, fileObject.getExt()); } /** Deletes file. Overrides superclass method. */ @Override public void delete() throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("delete()"); //NOI18N } getHandler().stopParsing(); detachListener(); try { super.delete(); } finally { // Sets back parsing flag. getHandler().allowParsing(); } } /** Moves entry to folder. Overrides superclass method. * @param folder folder where copy * @param suffix suffix to use * @exception IOException when error happens */ @Override public FileObject move(FileObject folder, String suffix) throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("move(" //NOI18N + FileUtil.getFileDisplayName(folder) + ", " //NOI18N + (suffix != null ? '"' + suffix + '"' : "<null>")//NOI18N + ')'); } String pasteSuffix = ((PropertiesDataObject)getDataObject()).getPasteSuffix(); if(pasteSuffix == null) return super.move(folder, suffix); boolean wasLocked = isLocked(); FileObject fileObject = getFile(); FileLock lock = takeLock (); try { String basicName = getDataObject().getPrimaryFile().getName(); String newName = basicName + pasteSuffix + Util.getLocaleSuffix(this); detachListener(); FileObject fo = fileObject.move (lock, folder, newName, fileObject.getExt()); attachListener(fo); return fo; } finally { if (!wasLocked) { lock.releaseLock (); } } } /** Implements <code>CookieSet.Factory</code> interface method. */ @SuppressWarnings("unchecked") public <T extends Node.Cookie> T createCookie(Class<T> clazz) { if (clazz.isAssignableFrom(PropertiesEditorSupport.class)) { return (T) getPropertiesEditor(); } else { return null; } } /** Creates a node delegate for this entry. Implements superclass abstract method. */ protected Node createNodeDelegate() { return new PropertiesLocaleNode(this); } /** Gets children for this file entry. */ public Children getChildren() { return new PropKeysChildren(); } /** Gets struct handler for this entry. * @return <StructHanlder</code> for this entry */ public StructHandler getHandler() { if (propStruct == null) { propStruct = new StructHandler(this); } return propStruct; } /** Deserialization. */ private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException { in.defaultReadObject(); } /** Gets editor support for this entry. * @return <code>PropertiesEditorSupport</code> instance for this entry */ protected PropertiesEditorSupport getPropertiesEditor() { // Hack to ensure open support is created. // PENDING has to be made finer. // getDataObject().getCookie(PropertiesOpen.class); synchronized(this) { if(editorSupport == null) editorSupport = new PropertiesEditorSupport(this); } return editorSupport; } /** Renames underlying fileobject. This implementation returns the same file. * Overrides superclass method. * * @param name new base name of the bundle * @return file object with renamed file */ @Override public FileObject rename (String name) throws IOException { if (LOG.isLoggable(FINER)) { LOG.finer("rename(" + name + ')'); //NOI18N } if (!getFile().getName().startsWith(basicName)) throw new IllegalStateException("Resource Bundles: error in Properties loader/rename."); // NOI18N detachListener(); FileObject fo = super.rename(name + getFile().getName().substring(basicName.length())); attachListener(fo); basicName = name; return fo; } /** Renames underlying fileobject. This implementation returns the same file. * Overrides superclass method. * * @param name full name of the file represented by this entry * @return file object with renamed file */ @Override public FileObject renameEntry (String name) throws IOException { if (!getFile().getName().startsWith(basicName)) throw new IllegalStateException("Resource Bundles: error in Properties loader / rename"); // NOI18N if (basicName.equals(getFile().getName())) { // primary entry - can not rename NotifyDescriptor.Message msg = new NotifyDescriptor.Message( NbBundle.getBundle(PropertiesDataLoader.class).getString("MSG_AttemptToRenamePrimaryFile"), NotifyDescriptor.ERROR_MESSAGE); DialogDisplayer.getDefault().notify(msg); return getFile(); } FileObject fo = super.rename(name); // to notify the bundle structure that name of one file was changed ((PropertiesDataObject)getDataObject()).getBundleStructure().notifyOneFileChanged(getHandler()); return fo; } @Override public FileObject createFromTemplate (FileObject folder, String name) throws IOException { if (!getFile().getName().startsWith(basicName)) throw new IllegalStateException("Resource Bundles: error in Properties createFromTemplate"); // NOI18N String suffix = getFile ().getName ().substring (basicName.length ()); String nuename = name + suffix; String ext = getFile ().getExt (); FileObject existing = folder.getFileObject (nuename, ext); if (existing == null) { return super.createFromTemplate (folder, nuename); } else { // Append new content. Used to ask you whether the leave the old // file alone, or overwrite it with the new file, or append the new // content; but it can just cause deadlocks (#38599) to try to prompt // the user for anything from inside a Datasystems method, so don't // bother. Appending is the safest option; redundant stuff can always // be cleaned up manually. { // avoiding reindenting<SUF> byte[] originalData; byte[] buf = new byte[4096]; int count; FileLock lock = existing.lock (); try { InputStream is = existing.getInputStream (); try { ByteArrayOutputStream baos = new ByteArrayOutputStream ((int) existing.getSize ()); try { while ((count = is.read (buf)) != -1) { baos.write (buf, 0, count); } } finally { originalData = baos.toByteArray (); baos.close (); } } finally { is.close (); } existing.delete (lock); } finally { lock.releaseLock (); } FileObject nue = folder.createData (nuename, ext); lock = nue.lock (); try { OutputStream os = nue.getOutputStream (lock); try { os.write (originalData); InputStream is = getFile ().getInputStream (); try { while ((count = is.read (buf)) != -1) { os.write (buf, 0, count); } } finally { is.close (); } } finally { os.close (); } } finally { lock.releaseLock (); } // Does not appear to have any effect: // ((PropertiesDataObject) getDataObject ()).getBundleStructure (). // notifyOneFileChanged (getHandler ()); return nue; } } } /** Whether the object may be deleted. Implemenst superclass abstract method. * @return <code>true</code> if it may (primary file can't be deleted) */ public boolean isDeleteAllowed() { // PENDING - better implementation : don't allow deleting Bunlde_en when Bundle_en_US exists return (getFile ().canWrite ()) && (!basicName.equals(getFile().getName())); } /** Whether the object may be copied. Implements superclass abstract method. * @return <code>true</code> if it may */ public boolean isCopyAllowed() { return true; } // [PENDING] copy should be overridden because e.g. copy and then paste // to the same folder creates a new locale named "1"! (I.e. "foo_1.properties") /** Indicates whether the object can be moved. Implements superclass abstract method. * @return <code>true</code> if the object can be moved */ public boolean isMoveAllowed() { return (getFile().canWrite()) && (getDataObject().getPrimaryEntry() != this); } /** Getter for rename action. Implements superclass abstract method. * @return true if the object can be renamed */ public boolean isRenameAllowed () { return getFile ().canWrite (); } /** Help context for this object. Implements superclass abstract method. * @return help context */ public HelpCtx getHelpCtx() { return new HelpCtx(Util.HELP_ID_CREATING); } private void attachListener (FileObject fo) { fo.addFileChangeListener(weakList = WeakListeners.create(FileChangeListener.class, list, fo)); } private void detachListener () { FileObject fo = getFile(); fo.removeFileChangeListener(weakList); weakList = null; } /** Children of a node representing single properties file. * Contains nodes representing individual properties (key-value pairs with comments). */ private class PropKeysChildren extends Children.Keys<String> { /** Listens to changes on the property bundle structure. */ private PropertyBundleListener bundleListener = null; /** Constructor. */ PropKeysChildren() { super(); } /** Sets all keys in the correct order. Calls <code>setKeys</code>. Helper method. * @see org.openide.nodes.Children.Keys#setKeys(java.util.Collection) */ private void mySetKeys() { // Use TreeSet because its iterator iterates in ascending order. Set<String> keys = new TreeSet<String>(new KeyComparator()); PropertiesStructure propStructure = getHandler().getStructure(); if (propStructure != null) { synchronized(propStructure.getParentBundleStructure()) { synchronized(propStructure.getParent()) { for (Iterator<Element.ItemElem> iterator = propStructure.allItems(); iterator.hasNext(); ) { Element.ItemElem item = iterator.next(); if (item != null && item.getKey() != null) { keys.add(item.getKey()); } } } } } setKeys(keys); } /** Called to notify that the children has been asked for children * after and that they should set its keys. Overrides superclass method. */ @Override protected void addNotify () { mySetKeys(); bundleListener = new PropertyBundleListener () { public void bundleChanged(PropertyBundleEvent evt) { int changeType = evt.getChangeType(); if(changeType == PropertyBundleEvent.CHANGE_STRUCT || changeType == PropertyBundleEvent.CHANGE_ALL) { mySetKeys(); } else if(changeType == PropertyBundleEvent.CHANGE_FILE && evt.getEntryName().equals(getFile().getName())) { // File underlying this entry changed. mySetKeys(); } } }; // End of annonymous class. bundleStructure().addPropertyBundleListener(bundleListener); } /** Called to notify that the children has lost all of its references to * its nodes associated to keys and that the keys could be cleared without * affecting any nodes (because nobody listens to that nodes). Overrides superclass method. */ @Override protected void removeNotify () { bundleStructure().removePropertyBundleListener(bundleListener); setKeys(new ArrayList<String>()); } /** Create nodes. Implements superclass abstract method. */ protected Node[] createNodes (String itemKey) { return new Node[] { new KeyNode(getHandler().getStructure(), itemKey) }; } /** Model accessor method. */ private BundleStructure bundleStructure() { return ((PropertiesDataObject)PropertiesFileEntry.this.getDataObject()).getBundleStructure(); } } // End of inner class PropKeysChildren. }