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
204021_3
package com.alipay.util.httpClient; import org.apache.commons.httpclient.NameValuePair; /* * *类名:HttpRequest *功能:Http请求对象的封装 *详细:封装Http请求 *版本:3.3 *日期:2011-08-17 *说明: *以下代码只是为了方便商户测试而提供的样例代码,商户可以根据自己网站的需要,按照技术文档编写,并非一定要使用该代码。 *该代码仅供学习和研究支付宝接口使用,只是提供一个参考。 */ public class HttpRequest { /** HTTP GET method */ public static final String METHOD_GET = "GET"; /** HTTP POST method */ public static final String METHOD_POST = "POST"; /** * 待请求的url */ private String url = null; /** * 默认的请求方式 */ private String method = METHOD_POST; private int timeout = 0; private int connectionTimeout = 0; /** * Post方式请求时组装好的参数值对 */ private NameValuePair[] parameters = null; /** * Get方式请求时对应的参数 */ private String queryString = null; /** * 默认的请求编码方式 */ private String charset = "GBK"; /** * 请求发起方的ip地址 */ private String clientIp; /** * 请求返回的方式 */ private HttpResultType resultType = HttpResultType.BYTES; public HttpRequest(HttpResultType resultType) { super(); this.resultType = resultType; } /** * @return Returns the clientIp. */ public String getClientIp() { return clientIp; } /** * @param clientIp The clientIp to set. */ public void setClientIp(String clientIp) { this.clientIp = clientIp; } public NameValuePair[] getParameters() { return parameters; } public void setParameters(NameValuePair[] parameters) { this.parameters = parameters; } public String getQueryString() { return queryString; } public void setQueryString(String queryString) { this.queryString = queryString; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getMethod() { return method; } public void setMethod(String method) { this.method = method; } public int getConnectionTimeout() { return connectionTimeout; } public void setConnectionTimeout(int connectionTimeout) { this.connectionTimeout = connectionTimeout; } public int getTimeout() { return timeout; } public void setTimeout(int timeout) { this.timeout = timeout; } /** * @return Returns the charset. */ public String getCharset() { return charset; } /** * @param charset The charset to set. */ public void setCharset(String charset) { this.charset = charset; } public HttpResultType getResultType() { return resultType; } public void setResultType(HttpResultType resultType) { this.resultType = resultType; } }
marquisthunder/newarch
kaas/kaas-pay/src/main/java/com/alipay/util/httpClient/HttpRequest.java
916
/** * 待请求的url */
block_comment
nl
package com.alipay.util.httpClient; import org.apache.commons.httpclient.NameValuePair; /* * *类名:HttpRequest *功能:Http请求对象的封装 *详细:封装Http请求 *版本:3.3 *日期:2011-08-17 *说明: *以下代码只是为了方便商户测试而提供的样例代码,商户可以根据自己网站的需要,按照技术文档编写,并非一定要使用该代码。 *该代码仅供学习和研究支付宝接口使用,只是提供一个参考。 */ public class HttpRequest { /** HTTP GET method */ public static final String METHOD_GET = "GET"; /** HTTP POST method */ public static final String METHOD_POST = "POST"; /** * 待请求的url <SUF>*/ private String url = null; /** * 默认的请求方式 */ private String method = METHOD_POST; private int timeout = 0; private int connectionTimeout = 0; /** * Post方式请求时组装好的参数值对 */ private NameValuePair[] parameters = null; /** * Get方式请求时对应的参数 */ private String queryString = null; /** * 默认的请求编码方式 */ private String charset = "GBK"; /** * 请求发起方的ip地址 */ private String clientIp; /** * 请求返回的方式 */ private HttpResultType resultType = HttpResultType.BYTES; public HttpRequest(HttpResultType resultType) { super(); this.resultType = resultType; } /** * @return Returns the clientIp. */ public String getClientIp() { return clientIp; } /** * @param clientIp The clientIp to set. */ public void setClientIp(String clientIp) { this.clientIp = clientIp; } public NameValuePair[] getParameters() { return parameters; } public void setParameters(NameValuePair[] parameters) { this.parameters = parameters; } public String getQueryString() { return queryString; } public void setQueryString(String queryString) { this.queryString = queryString; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public String getMethod() { return method; } public void setMethod(String method) { this.method = method; } public int getConnectionTimeout() { return connectionTimeout; } public void setConnectionTimeout(int connectionTimeout) { this.connectionTimeout = connectionTimeout; } public int getTimeout() { return timeout; } public void setTimeout(int timeout) { this.timeout = timeout; } /** * @return Returns the charset. */ public String getCharset() { return charset; } /** * @param charset The charset to set. */ public void setCharset(String charset) { this.charset = charset; } public HttpResultType getResultType() { return resultType; } public void setResultType(HttpResultType resultType) { this.resultType = resultType; } }
204097_0
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de // examengegevens pas aan te maken op batch generatie moment, niet op // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch komt niet meer overeen met de schakeltest batch, aangezien de // examenmeldingen niet door de BRON controller worden aangemaakt. createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/vavo/ProefgevallenBveVAVOBatch2Test.java
5,590
// je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou<SUF> // examengegevens pas aan te maken op batch generatie moment, niet op // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch komt niet meer overeen met de schakeltest batch, aangezien de // examenmeldingen niet door de BRON controller worden aangemaakt. createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
204097_1
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de // examengegevens pas aan te maken op batch generatie moment, niet op // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch komt niet meer overeen met de schakeltest batch, aangezien de // examenmeldingen niet door de BRON controller worden aangemaakt. createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/vavo/ProefgevallenBveVAVOBatch2Test.java
5,590
// examengegevens pas aan te maken op batch generatie moment, niet op
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de // examengegevens pas<SUF> // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch komt niet meer overeen met de schakeltest batch, aangezien de // examenmeldingen niet door de BRON controller worden aangemaakt. createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
204097_2
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de // examengegevens pas aan te maken op batch generatie moment, niet op // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch komt niet meer overeen met de schakeltest batch, aangezien de // examenmeldingen niet door de BRON controller worden aangemaakt. createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/vavo/ProefgevallenBveVAVOBatch2Test.java
5,590
// deze batch komt niet meer overeen met de schakeltest batch, aangezien de
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de // examengegevens pas aan te maken op batch generatie moment, niet op // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch<SUF> // examenmeldingen niet door de BRON controller worden aangemaakt. createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
204097_3
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de // examengegevens pas aan te maken op batch generatie moment, niet op // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch komt niet meer overeen met de schakeltest batch, aangezien de // examenmeldingen niet door de BRON controller worden aangemaakt. createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/vavo/ProefgevallenBveVAVOBatch2Test.java
5,590
// examenmeldingen niet door de BRON controller worden aangemaakt.
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Arrays; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.PersoonsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import org.junit.Test; public class ProefgevallenBveVAVOBatch2Test extends ProefgevallenBveVAVO { @Test public void proefgeval8() throws Exception { createGeval8(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2002")); assertThat(melding.getSofinummer(), is("210000697")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910716"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval8() throws Exception { getDeelnemer2002(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval9() throws Exception { createGeval9(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2003")); assertThat(melding.getSofinummer(), is("210000028")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910503"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval9() throws Exception { getDeelnemer2003(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2004")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is("100320254")); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910701"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval10() throws Exception { getDeelnemer2004(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2005")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910505"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMVIJF")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMVIJF")); assertThat(personalia.getStraatnaam(), is("kemkensberg")); assertThat(personalia.getHuisnummer(), is(2)); assertThat(personalia.getPlaatsnaam(), is("Groningen")); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval11() throws Exception { getDeelnemer2005(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2006")); assertThat(melding.getSofinummer(), is((String) null)); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910702"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is((String) null)); assertThat(melding.getLand(), is("6030")); assertThat(melding.getMeldingen().size(), is(2)); PersoonsgegevensRecord personalia = melding.getMeldingen().get(0); assertThat(personalia.getRecordType(), is(BRONConstants.BVE_AANLEVERING_PERSOONSGEGEVENS)); assertThat(personalia.getAchternaam(), is("ACHTERNAAMTWEEENVIJFTIG")); assertThat(personalia.getAlleVoornamen(), is("VOORNAAMTWEEENVIJFTIG")); assertThat(personalia.getStraatnaam(), is("")); assertThat(personalia.getPlaatsnaam(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(1); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval12() throws Exception { getDeelnemer2006(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval13() throws Exception { createGeval13(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2007")); assertThat(melding.getSofinummer(), is("210000089")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910507"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(true)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval13() throws Exception { getDeelnemer2007(); addChange(verbintenis, "status", null, Definitief); } @Test public void proefgeval14() throws Exception { createGeval14(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); // je zou 305, 330, 331, 332 verwachten, maar we hebben besloten om de // examengegevens pas aan te maken op batch generatie moment, niet op // wijzigingsmoment. assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5370")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval14() throws Exception { getDeelnemer2014(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval15() throws Exception { createGeval15(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2015")); assertThat(melding.getSofinummer(), is("210000168")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910515"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(Arrays.asList(305, 330))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval15() throws Exception { getDeelnemer2015(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval16() throws Exception { createGeval16(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2016")); assertThat(melding.getSofinummer(), is("210000181")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910516"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(getRecordTypes(melding), is(equalTo(Arrays.asList(305, 330)))); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval16() throws Exception { getDeelnemer2016(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); addChange(verbintenis, "status", null, Definitief); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void bveVAVOBatch2() throws Exception { // deze batch komt niet meer overeen met de schakeltest batch, aangezien de // examenmeldingen niet<SUF> createGeval8(); createGeval9(); createGeval10(); createGeval11(); createGeval12(); createGeval13(); createGeval14(); createGeval15(); createGeval16(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(2); batchBVE.getAanleverpunt().setNummer(1); assertThat(batchBVE.getAantalMeldingen(), is(9)); assertThat(getRecordTypesFromBatch(), is(equalTo(Arrays.asList(305, 330, 305, 330, 305, 330, 305, 310, 330, 305, 310, 330, 305, 330, 305, 330, 305, 330, 305, 330)))); assertThat(batchBVE.getAantalRecords(), is(21)); writeBronBatch(batchBVE); } }
204103_0
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Date; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveVAVOBatch3Test extends ProefgevallenBveVAVO { @Test public void proefgeval17() throws Exception { createGeval17(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2008")); assertThat(melding.getSofinummer(), is("210000090")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910508"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is(asDate(20090101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval17() throws Exception { getDeelnemer2008(); verbintenis.setEinddatum(asDate(20090101)); verbintenis.setStatus(Beeindigd); addChange(verbintenis, "einddatum", null, verbintenis.getEinddatum()); addChange(verbintenis, "status", Definitief, Beeindigd); } @Test public void proefgeval18() throws Exception { createGeval18(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20090731))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval18() throws Exception { getDeelnemer2009(); Date vorige = verbintenis.getGeplandeEinddatum(); Date nieuwe = asDate(20090731); verbintenis.setGeplandeEinddatum(nieuwe); addChange(verbintenis, "geplandeEinddatum", vorige, nieuwe); } @Test public void proefgeval19() throws Exception { createGeval19(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080801))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval19() throws Exception { getDeelnemer2010(); Date vorige = verbintenis.getBegindatum(); Date nieuwe = asDate(20080801); verbintenis.setBegindatum(nieuwe); addChange(verbintenis, "begindatum", vorige, nieuwe); } @Test public void proefgeval20() throws Exception { createGeval20(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(20)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval20() throws Exception { getDeelnemer2011(); int vorige = verbintenis.getContacturenPerWeek().setScale(0, RoundingMode.HALF_UP).intValue(); int nieuwe = 20; verbintenis.setContacturenPerWeek(BigDecimal.valueOf(nieuwe)); addChange(verbintenis, "contacturenPerWeek", vorige, nieuwe); } @Test public void proefgeval21() throws Exception { createGeval21(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Verwijdering)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval21() throws Exception { getDeelnemer2012(); VerbintenisStatus vorige = verbintenis.getStatus(); VerbintenisStatus nieuwe = VerbintenisStatus.Afgemeld; verbintenis.setStatus(nieuwe); addChange(verbintenis, "status", vorige, nieuwe); } @Test public void proefgeval22() throws Exception { createGeval22(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval22() throws Exception { getDeelnemer2013(); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval23() throws Exception { createGeval23(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval23() throws Exception { getDeelnemer2014(); // voor vakmelding hack deelnemer.setId(new Long(2014)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval24() throws Exception { createGeval24(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval24() throws Exception { getDeelnemer2015(); // voor vakmelding hack deelnemer.setId(new Long(2015)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval25() throws Exception { createGeval25(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval25() throws Exception { getDeelnemer2016_testgeval25(); // voor vakmelding hack deelnemer.setId(new Long(2016)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", examen.getExamenstatus(), null); } @Test public void bveVAVOBatch3() throws Exception { createGeval17(); createGeval18(); createGeval19(); createGeval20(); createGeval21(); createGeval22(); createGeval23(); createGeval24(); createGeval25(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(5); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("25PZ"); // assertThat(batchBVE.getBrinNummer(), is("25PZ")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.VAVO)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(5)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(5)); assertThat(batchBVE.getAantalRecords(), is(11)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/vavo/ProefgevallenBveVAVOBatch3Test.java
4,371
// voor vakmelding hack
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Date; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveVAVOBatch3Test extends ProefgevallenBveVAVO { @Test public void proefgeval17() throws Exception { createGeval17(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2008")); assertThat(melding.getSofinummer(), is("210000090")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910508"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is(asDate(20090101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval17() throws Exception { getDeelnemer2008(); verbintenis.setEinddatum(asDate(20090101)); verbintenis.setStatus(Beeindigd); addChange(verbintenis, "einddatum", null, verbintenis.getEinddatum()); addChange(verbintenis, "status", Definitief, Beeindigd); } @Test public void proefgeval18() throws Exception { createGeval18(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20090731))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval18() throws Exception { getDeelnemer2009(); Date vorige = verbintenis.getGeplandeEinddatum(); Date nieuwe = asDate(20090731); verbintenis.setGeplandeEinddatum(nieuwe); addChange(verbintenis, "geplandeEinddatum", vorige, nieuwe); } @Test public void proefgeval19() throws Exception { createGeval19(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080801))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval19() throws Exception { getDeelnemer2010(); Date vorige = verbintenis.getBegindatum(); Date nieuwe = asDate(20080801); verbintenis.setBegindatum(nieuwe); addChange(verbintenis, "begindatum", vorige, nieuwe); } @Test public void proefgeval20() throws Exception { createGeval20(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(20)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval20() throws Exception { getDeelnemer2011(); int vorige = verbintenis.getContacturenPerWeek().setScale(0, RoundingMode.HALF_UP).intValue(); int nieuwe = 20; verbintenis.setContacturenPerWeek(BigDecimal.valueOf(nieuwe)); addChange(verbintenis, "contacturenPerWeek", vorige, nieuwe); } @Test public void proefgeval21() throws Exception { createGeval21(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Verwijdering)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval21() throws Exception { getDeelnemer2012(); VerbintenisStatus vorige = verbintenis.getStatus(); VerbintenisStatus nieuwe = VerbintenisStatus.Afgemeld; verbintenis.setStatus(nieuwe); addChange(verbintenis, "status", vorige, nieuwe); } @Test public void proefgeval22() throws Exception { createGeval22(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval22() throws Exception { getDeelnemer2013(); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval23() throws Exception { createGeval23(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval23() throws Exception { getDeelnemer2014(); // voor vakmelding<SUF> deelnemer.setId(new Long(2014)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval24() throws Exception { createGeval24(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval24() throws Exception { getDeelnemer2015(); // voor vakmelding hack deelnemer.setId(new Long(2015)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval25() throws Exception { createGeval25(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval25() throws Exception { getDeelnemer2016_testgeval25(); // voor vakmelding hack deelnemer.setId(new Long(2016)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", examen.getExamenstatus(), null); } @Test public void bveVAVOBatch3() throws Exception { createGeval17(); createGeval18(); createGeval19(); createGeval20(); createGeval21(); createGeval22(); createGeval23(); createGeval24(); createGeval25(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(5); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("25PZ"); // assertThat(batchBVE.getBrinNummer(), is("25PZ")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.VAVO)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(5)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(5)); assertThat(batchBVE.getAantalRecords(), is(11)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
204103_1
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Date; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveVAVOBatch3Test extends ProefgevallenBveVAVO { @Test public void proefgeval17() throws Exception { createGeval17(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2008")); assertThat(melding.getSofinummer(), is("210000090")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910508"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is(asDate(20090101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval17() throws Exception { getDeelnemer2008(); verbintenis.setEinddatum(asDate(20090101)); verbintenis.setStatus(Beeindigd); addChange(verbintenis, "einddatum", null, verbintenis.getEinddatum()); addChange(verbintenis, "status", Definitief, Beeindigd); } @Test public void proefgeval18() throws Exception { createGeval18(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20090731))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval18() throws Exception { getDeelnemer2009(); Date vorige = verbintenis.getGeplandeEinddatum(); Date nieuwe = asDate(20090731); verbintenis.setGeplandeEinddatum(nieuwe); addChange(verbintenis, "geplandeEinddatum", vorige, nieuwe); } @Test public void proefgeval19() throws Exception { createGeval19(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080801))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval19() throws Exception { getDeelnemer2010(); Date vorige = verbintenis.getBegindatum(); Date nieuwe = asDate(20080801); verbintenis.setBegindatum(nieuwe); addChange(verbintenis, "begindatum", vorige, nieuwe); } @Test public void proefgeval20() throws Exception { createGeval20(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(20)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval20() throws Exception { getDeelnemer2011(); int vorige = verbintenis.getContacturenPerWeek().setScale(0, RoundingMode.HALF_UP).intValue(); int nieuwe = 20; verbintenis.setContacturenPerWeek(BigDecimal.valueOf(nieuwe)); addChange(verbintenis, "contacturenPerWeek", vorige, nieuwe); } @Test public void proefgeval21() throws Exception { createGeval21(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Verwijdering)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval21() throws Exception { getDeelnemer2012(); VerbintenisStatus vorige = verbintenis.getStatus(); VerbintenisStatus nieuwe = VerbintenisStatus.Afgemeld; verbintenis.setStatus(nieuwe); addChange(verbintenis, "status", vorige, nieuwe); } @Test public void proefgeval22() throws Exception { createGeval22(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval22() throws Exception { getDeelnemer2013(); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval23() throws Exception { createGeval23(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval23() throws Exception { getDeelnemer2014(); // voor vakmelding hack deelnemer.setId(new Long(2014)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval24() throws Exception { createGeval24(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval24() throws Exception { getDeelnemer2015(); // voor vakmelding hack deelnemer.setId(new Long(2015)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval25() throws Exception { createGeval25(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval25() throws Exception { getDeelnemer2016_testgeval25(); // voor vakmelding hack deelnemer.setId(new Long(2016)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", examen.getExamenstatus(), null); } @Test public void bveVAVOBatch3() throws Exception { createGeval17(); createGeval18(); createGeval19(); createGeval20(); createGeval21(); createGeval22(); createGeval23(); createGeval24(); createGeval25(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(5); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("25PZ"); // assertThat(batchBVE.getBrinNummer(), is("25PZ")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.VAVO)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(5)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(5)); assertThat(batchBVE.getAantalRecords(), is(11)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/vavo/ProefgevallenBveVAVOBatch3Test.java
4,371
// voor vakmelding hack
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Date; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveVAVOBatch3Test extends ProefgevallenBveVAVO { @Test public void proefgeval17() throws Exception { createGeval17(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2008")); assertThat(melding.getSofinummer(), is("210000090")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910508"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is(asDate(20090101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval17() throws Exception { getDeelnemer2008(); verbintenis.setEinddatum(asDate(20090101)); verbintenis.setStatus(Beeindigd); addChange(verbintenis, "einddatum", null, verbintenis.getEinddatum()); addChange(verbintenis, "status", Definitief, Beeindigd); } @Test public void proefgeval18() throws Exception { createGeval18(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20090731))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval18() throws Exception { getDeelnemer2009(); Date vorige = verbintenis.getGeplandeEinddatum(); Date nieuwe = asDate(20090731); verbintenis.setGeplandeEinddatum(nieuwe); addChange(verbintenis, "geplandeEinddatum", vorige, nieuwe); } @Test public void proefgeval19() throws Exception { createGeval19(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080801))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval19() throws Exception { getDeelnemer2010(); Date vorige = verbintenis.getBegindatum(); Date nieuwe = asDate(20080801); verbintenis.setBegindatum(nieuwe); addChange(verbintenis, "begindatum", vorige, nieuwe); } @Test public void proefgeval20() throws Exception { createGeval20(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(20)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval20() throws Exception { getDeelnemer2011(); int vorige = verbintenis.getContacturenPerWeek().setScale(0, RoundingMode.HALF_UP).intValue(); int nieuwe = 20; verbintenis.setContacturenPerWeek(BigDecimal.valueOf(nieuwe)); addChange(verbintenis, "contacturenPerWeek", vorige, nieuwe); } @Test public void proefgeval21() throws Exception { createGeval21(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Verwijdering)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval21() throws Exception { getDeelnemer2012(); VerbintenisStatus vorige = verbintenis.getStatus(); VerbintenisStatus nieuwe = VerbintenisStatus.Afgemeld; verbintenis.setStatus(nieuwe); addChange(verbintenis, "status", vorige, nieuwe); } @Test public void proefgeval22() throws Exception { createGeval22(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval22() throws Exception { getDeelnemer2013(); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval23() throws Exception { createGeval23(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval23() throws Exception { getDeelnemer2014(); // voor vakmelding hack deelnemer.setId(new Long(2014)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval24() throws Exception { createGeval24(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval24() throws Exception { getDeelnemer2015(); // voor vakmelding<SUF> deelnemer.setId(new Long(2015)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval25() throws Exception { createGeval25(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval25() throws Exception { getDeelnemer2016_testgeval25(); // voor vakmelding hack deelnemer.setId(new Long(2016)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", examen.getExamenstatus(), null); } @Test public void bveVAVOBatch3() throws Exception { createGeval17(); createGeval18(); createGeval19(); createGeval20(); createGeval21(); createGeval22(); createGeval23(); createGeval24(); createGeval25(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(5); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("25PZ"); // assertThat(batchBVE.getBrinNummer(), is("25PZ")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.VAVO)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(5)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(5)); assertThat(batchBVE.getAantalRecords(), is(11)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
204103_2
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Date; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveVAVOBatch3Test extends ProefgevallenBveVAVO { @Test public void proefgeval17() throws Exception { createGeval17(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2008")); assertThat(melding.getSofinummer(), is("210000090")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910508"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is(asDate(20090101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval17() throws Exception { getDeelnemer2008(); verbintenis.setEinddatum(asDate(20090101)); verbintenis.setStatus(Beeindigd); addChange(verbintenis, "einddatum", null, verbintenis.getEinddatum()); addChange(verbintenis, "status", Definitief, Beeindigd); } @Test public void proefgeval18() throws Exception { createGeval18(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20090731))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval18() throws Exception { getDeelnemer2009(); Date vorige = verbintenis.getGeplandeEinddatum(); Date nieuwe = asDate(20090731); verbintenis.setGeplandeEinddatum(nieuwe); addChange(verbintenis, "geplandeEinddatum", vorige, nieuwe); } @Test public void proefgeval19() throws Exception { createGeval19(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080801))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval19() throws Exception { getDeelnemer2010(); Date vorige = verbintenis.getBegindatum(); Date nieuwe = asDate(20080801); verbintenis.setBegindatum(nieuwe); addChange(verbintenis, "begindatum", vorige, nieuwe); } @Test public void proefgeval20() throws Exception { createGeval20(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(20)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval20() throws Exception { getDeelnemer2011(); int vorige = verbintenis.getContacturenPerWeek().setScale(0, RoundingMode.HALF_UP).intValue(); int nieuwe = 20; verbintenis.setContacturenPerWeek(BigDecimal.valueOf(nieuwe)); addChange(verbintenis, "contacturenPerWeek", vorige, nieuwe); } @Test public void proefgeval21() throws Exception { createGeval21(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Verwijdering)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval21() throws Exception { getDeelnemer2012(); VerbintenisStatus vorige = verbintenis.getStatus(); VerbintenisStatus nieuwe = VerbintenisStatus.Afgemeld; verbintenis.setStatus(nieuwe); addChange(verbintenis, "status", vorige, nieuwe); } @Test public void proefgeval22() throws Exception { createGeval22(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval22() throws Exception { getDeelnemer2013(); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval23() throws Exception { createGeval23(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval23() throws Exception { getDeelnemer2014(); // voor vakmelding hack deelnemer.setId(new Long(2014)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval24() throws Exception { createGeval24(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval24() throws Exception { getDeelnemer2015(); // voor vakmelding hack deelnemer.setId(new Long(2015)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval25() throws Exception { createGeval25(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval25() throws Exception { getDeelnemer2016_testgeval25(); // voor vakmelding hack deelnemer.setId(new Long(2016)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", examen.getExamenstatus(), null); } @Test public void bveVAVOBatch3() throws Exception { createGeval17(); createGeval18(); createGeval19(); createGeval20(); createGeval21(); createGeval22(); createGeval23(); createGeval24(); createGeval25(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(5); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("25PZ"); // assertThat(batchBVE.getBrinNummer(), is("25PZ")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.VAVO)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(5)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(5)); assertThat(batchBVE.getAantalRecords(), is(11)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/vavo/ProefgevallenBveVAVOBatch3Test.java
4,371
// voor vakmelding hack
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.vavo; import static nl.topicus.cobra.types.personalia.Geslacht.*; import static nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding.*; import static nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie.*; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.math.BigDecimal; import java.math.RoundingMode; import java.util.Date; import nl.topicus.eduarte.entities.examen.Examendeelname; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.vavo.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveVAVOBatch3Test extends ProefgevallenBveVAVO { @Test public void proefgeval17() throws Exception { createGeval17(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2008")); assertThat(melding.getSofinummer(), is("210000090")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910508"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(1)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is(asDate(20090101))); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); } private void createGeval17() throws Exception { getDeelnemer2008(); verbintenis.setEinddatum(asDate(20090101)); verbintenis.setStatus(Beeindigd); addChange(verbintenis, "einddatum", null, verbintenis.getEinddatum()); addChange(verbintenis, "status", Definitief, Beeindigd); } @Test public void proefgeval18() throws Exception { createGeval18(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20090731))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval18() throws Exception { getDeelnemer2009(); Date vorige = verbintenis.getGeplandeEinddatum(); Date nieuwe = asDate(20090731); verbintenis.setGeplandeEinddatum(nieuwe); addChange(verbintenis, "geplandeEinddatum", vorige, nieuwe); } @Test public void proefgeval19() throws Exception { createGeval19(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080801))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval19() throws Exception { getDeelnemer2010(); Date vorige = verbintenis.getBegindatum(); Date nieuwe = asDate(20080801); verbintenis.setBegindatum(nieuwe); addChange(verbintenis, "begindatum", vorige, nieuwe); } @Test public void proefgeval20() throws Exception { createGeval20(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Aanpassing)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5150")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertNull(inschrijving.getWerkelijkeDatumUitschrijving()); assertThat(inschrijving.getHoogsteVooropleiding(), is(HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(20)); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval20() throws Exception { getDeelnemer2011(); int vorige = verbintenis.getContacturenPerWeek().setScale(0, RoundingMode.HALF_UP).intValue(); int nieuwe = 20; verbintenis.setContacturenPerWeek(BigDecimal.valueOf(nieuwe)); addChange(verbintenis, "contacturenPerWeek", vorige, nieuwe); } @Test public void proefgeval21() throws Exception { createGeval21(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("2012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getGeslacht(), is(Man)); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getLand(), is((String) null)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_VAVO_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(Verwijdering)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(melding.getMeldingen().size(), is(1)); } private void createGeval21() throws Exception { getDeelnemer2012(); VerbintenisStatus vorige = verbintenis.getStatus(); VerbintenisStatus nieuwe = VerbintenisStatus.Afgemeld; verbintenis.setStatus(nieuwe); addChange(verbintenis, "status", vorige, nieuwe); } @Test public void proefgeval22() throws Exception { createGeval22(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval22() throws Exception { getDeelnemer2013(); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval23() throws Exception { createGeval23(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval23() throws Exception { getDeelnemer2014(); // voor vakmelding hack deelnemer.setId(new Long(2014)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval24() throws Exception { createGeval24(); Examendeelname examen1 = verbintenis.getExamendeelnames().get(0); Examendeelname examen2 = verbintenis.getExamendeelnames().get(1); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen1.isGewijzigd(), is(false)); assertThat(examen2.isGewijzigd(), is(true)); } private void createGeval24() throws Exception { getDeelnemer2015(); // voor vakmelding hack deelnemer.setId(new Long(2015)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", null, examen.getExamenstatus()); } @Test public void proefgeval25() throws Exception { createGeval25(); Examendeelname examen = verbintenis.getExamendeelnames().get(0); assertThat(examen.isGewijzigd(), is(false)); controller.save(); assertThat(getEersteMelding(), is(nullValue())); assertThat(examen.isGewijzigd(), is(true)); } private void createGeval25() throws Exception { getDeelnemer2016_testgeval25(); // voor vakmelding<SUF> deelnemer.setId(new Long(2016)); Examendeelname examen = addExamendeelname(verbintenis, 20090110); examen.setExamenstatus(getCertificaten()); addChange(examen, "examenstatus", examen.getExamenstatus(), null); } @Test public void bveVAVOBatch3() throws Exception { createGeval17(); createGeval18(); createGeval19(); createGeval20(); createGeval21(); createGeval22(); createGeval23(); createGeval24(); createGeval25(); batchBVE = maakBronVAVOBatch(); batchBVE.setBatchNummer(5); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("25PZ"); // assertThat(batchBVE.getBrinNummer(), is("25PZ")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.VAVO)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(5)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(5)); assertThat(batchBVE.getAantalRecords(), is(11)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
204110_0
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde, // vandaar alleen hier getest InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande vakgegevensmelding is voor alle records in deze batch // hetzelfde, vandaar alleen hier getest VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/educatie/ProefgevallenBveEDBatch1Test.java
5,203
// onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde,
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding<SUF> // vandaar alleen hier getest InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande vakgegevensmelding is voor alle records in deze batch // hetzelfde, vandaar alleen hier getest VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
204110_1
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde, // vandaar alleen hier getest InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande vakgegevensmelding is voor alle records in deze batch // hetzelfde, vandaar alleen hier getest VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/educatie/ProefgevallenBveEDBatch1Test.java
5,203
// vandaar alleen hier getest
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde, // vandaar alleen<SUF> InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande vakgegevensmelding is voor alle records in deze batch // hetzelfde, vandaar alleen hier getest VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
204110_2
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde, // vandaar alleen hier getest InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande vakgegevensmelding is voor alle records in deze batch // hetzelfde, vandaar alleen hier getest VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/educatie/ProefgevallenBveEDBatch1Test.java
5,203
// ook onderstaande vakgegevensmelding is voor alle records in deze batch
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde, // vandaar alleen hier getest InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande<SUF> // hetzelfde, vandaar alleen hier getest VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
204110_3
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde, // vandaar alleen hier getest InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande vakgegevensmelding is voor alle records in deze batch // hetzelfde, vandaar alleen hier getest VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
topicusonderwijs/tribe-krd-opensource
eduarte/module-krd/src/test/java/nl/topicus/eduarte/krd/bron/schakeltest/bve/aanlevering/educatie/ProefgevallenBveEDBatch1Test.java
5,203
// hetzelfde, vandaar alleen hier getest
line_comment
nl
package nl.topicus.eduarte.krd.bron.schakeltest.bve.aanlevering.educatie; import static org.hamcrest.CoreMatchers.*; import static org.junit.Assert.*; import java.util.Date; import nl.topicus.cobra.types.personalia.Geslacht; import nl.topicus.eduarte.entities.inschrijving.Verbintenis.VerbintenisStatus; import nl.topicus.eduarte.krd.entities.bron.meldingen.aanlevering.BronAanleverMelding; import nl.topicus.onderwijs.duo.bron.BRONConstants; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.InschrijvingsgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.batches.pve_9_9.aanlevering.ed.VakgegevensRecord; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.HoogsteVooropleiding; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.Sectordeel; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.SoortMutatie; import nl.topicus.onderwijs.duo.bron.bve.waardelijsten.VerantwoordelijkeAanleverbestand; import nl.topicus.onderwijs.duo.bron.data.types.Datum; import nl.topicus.onderwijs.duo.bron.data.waardelijsten.BestandSoort; import org.junit.Test; public class ProefgevallenBveEDBatch1Test extends ProefgevallenBveED { @Test public void proefgeval01() throws Exception { createGeval01(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3001")); assertThat(melding.getSofinummer(), is("210000004")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910501"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); // onderstaande inschrijvingsmelding is voor alle records in deze batch hetzelfde, // vandaar alleen hier getest InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); assertThat(inschrijving.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(inschrijving.getInschrijvingsvolgnummer(), is("1")); assertThat(inschrijving.getGevolgdeOpleiding(), is("5511")); assertThat(inschrijving.getDatumInschrijving(), is(asDate(20080101))); assertThat(inschrijving.getGeplandeDatumUitschrijving(), is(asDate(20100101))); assertThat(inschrijving.getWerkelijkeDatumUitschrijving(), is((Date) null)); assertThat(inschrijving.getHoogsteVooropleiding(), is(HoogsteVooropleiding.HAVO)); assertThat(inschrijving.getIndicatieNieuwkomer(), is(false)); assertThat(inschrijving.getContacturenPerWeek(), is(10)); // ook onderstaande vakgegevensmelding is voor alle records in deze batch // hetzelfde, vandaar<SUF> VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval01() throws Exception { getDeelnemer3001(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval02() throws Exception { createGeval02(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3009")); assertThat(melding.getSofinummer(), is("210000107")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910509"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval02() throws Exception { getDeelnemer3009(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval03() throws Exception { createGeval03(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3010")); assertThat(melding.getSofinummer(), is("210000119")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910510"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval03() throws Exception { getDeelnemer3010(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval04() throws Exception { createGeval04(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3011")); assertThat(melding.getSofinummer(), is("210000120")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910511"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval04() throws Exception { getDeelnemer3011(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval05() throws Exception { createGeval05(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3012")); assertThat(melding.getSofinummer(), is("210000132")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910512"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval05() throws Exception { getDeelnemer3012(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval06() throws Exception { createGeval06(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3013")); assertThat(melding.getSofinummer(), is("210000144")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910513"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval06() throws Exception { getDeelnemer3013(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval07() throws Exception { createGeval07(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3014")); assertThat(melding.getSofinummer(), is("210000156")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910514"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval07() throws Exception { getDeelnemer3014(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval08() throws Exception { createGeval08(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3017")); assertThat(melding.getSofinummer(), is("210000193")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910517"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval08() throws Exception { getDeelnemer3017(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval09() throws Exception { createGeval09(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3018")); assertThat(melding.getSofinummer(), is("210000211")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910518"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval09() throws Exception { getDeelnemer3018(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval10() throws Exception { createGeval10(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3020")); assertThat(melding.getSofinummer(), is("210000235")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910520"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); InschrijvingsgegevensRecord inschrijving = melding.getMeldingen().get(0); assertThat(inschrijving.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_INSCHRIJFGEGEVENS)); } private void createGeval10() throws Exception { getDeelnemer3020(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval11() throws Exception { createGeval11(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3021")); assertThat(melding.getSofinummer(), is("210000259")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910521"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); assertThat(melding.getMeldingen().size(), is(2)); } private void createGeval11() throws Exception { getDeelnemer3021(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void proefgeval12() throws Exception { createGeval12(); controller.save(); BronAanleverMelding melding = getEersteMelding(); assertThat(melding.getLeerlingnummer(), is("3025")); assertThat(melding.getSofinummer(), is("210000302")); assertThat(melding.getOnderwijsnummer(), is((String) null)); assertThat(melding.getGeboortedatum(), is(Datum.valueOf("19910525"))); assertThat(melding.getPostcodeVolgensInstelling(), is("9722TB")); assertThat(melding.getGeslacht(), is(Geslacht.Man)); assertThat(melding.getLand(), is((String) null)); VakgegevensRecord vakgegevens = melding.getMeldingen().get(1); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(1)); assertThat(vakgegevens.getVak(), is("0310")); vakgegevens = melding.getMeldingen().get(2); assertThat(vakgegevens.getRecordType(), is(BRONConstants.BVE_AANLEVERING_ED_VAKGEGEVENS)); assertThat(vakgegevens.getSoortMutatie(), is(SoortMutatie.Toevoeging)); assertThat(vakgegevens.getInschrijvingsvolgnummer(), is("1")); assertThat(vakgegevens.getVakvolgnummer(), is(2)); assertThat(vakgegevens.getVak(), is("0011")); assertThat(melding.getMeldingen().size(), is(3)); } private void createGeval12() throws Exception { getDeelnemer3025(); addChange(verbintenis, "status", VerbintenisStatus.Voorlopig, VerbintenisStatus.Definitief); } @Test public void bveBO1Batch1() throws Exception { createGeval01(); createGeval02(); createGeval03(); createGeval04(); createGeval05(); createGeval06(); createGeval07(); createGeval08(); createGeval09(); createGeval10(); createGeval11(); createGeval12(); batchBVE = maakBronEDBatch(); batchBVE.setBatchNummer(1); batchBVE.getAanleverpunt().setNummer(1); batchBVE.getOrganisatie().getBrincode().setCode("04CY"); assertThat(batchBVE.getBrinNummer(), is("04CY")); assertThat(batchBVE.getAanleverPuntNummer(), is(1)); assertThat(batchBVE.getSectordeel(), is(Sectordeel.Basiseducatie)); assertThat(batchBVE.getInternOrganisatieNummer(), is((String) null)); assertThat(batchBVE.getBatchNummer(), is(1)); assertThat(batchBVE.getBestandSoort(), is(BestandSoort.AANLEVERING)); // assertThat(batchBVE.getVersieProgrammaVanEisen(), is("1.1")); assertThat(batchBVE.getAantalMeldingen(), is(12)); assertThat(batchBVE.getAantalRecords(), is(38)); assertThat(batchBVE.getVerantwoordelijkeAanlevering(), is(VerantwoordelijkeAanleverbestand.Instelling)); assertThat(batchBVE.getLaatsteAanlevering(), is(false)); writeBronBatch(batchBVE); } }
204115_1
/* * Copyright (c) 2007, Topicus B.V. * All rights reserved. */ package nl.topicus.cobra.web.components.text; import nl.topicus.cobra.entities.Time; import nl.topicus.cobra.util.StringUtil; import nl.topicus.cobra.util.TimeUtil; import org.apache.wicket.ajax.AjaxEventBehavior; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.markup.html.form.TextField; import org.apache.wicket.model.IModel; import org.apache.wicket.util.string.AppendingStringBuffer; /** * Class voor het invoeren van een tijd in een textfield. Gebaseerd op Vocusvariant. * * @author maatman */ public class TijdField extends TextField<Time> { public class TijdFieldAjaxHandler extends AjaxEventBehavior { private static final long serialVersionUID = 1L; public TijdFieldAjaxHandler() { super("onchange"); } @Override protected CharSequence getEventHandler() { return generateCallbackScript(new AppendingStringBuffer("wicketAjaxPost('").append( getCallbackUrl()).append("', wicketSerialize(this)")); } @Override protected void onEvent(AjaxRequestTarget target) { String datum = TijdField.this.getInput(); Time time = null; if (StringUtil.isNotEmpty(datum)) { time = TimeUtil.getInstance().parseTimeString(datum); if (time == null) { TijdField.this.setModelObject(null); } else { TijdField.this.setModelObject(time); } } else { TijdField.this.setModelObject(null); } target.addComponent(TijdField.this); onUpdate(target, getModelObject()); } } @SuppressWarnings("unused") protected void onUpdate(AjaxRequestTarget target, Time newValue) { } private static final long serialVersionUID = 6883784609679074032L; public TijdField(String id) { this(id, null); } public TijdField(String id, IModel<Time> model) { super(id, model, Time.class); setOutputMarkupId(true); add(new TijdFieldAjaxHandler()); } }
topicusonderwijs/tribe-krd-opensource
cobra/webcomponents/src/main/java/nl/topicus/cobra/web/components/text/TijdField.java
613
/** * Class voor het invoeren van een tijd in een textfield. Gebaseerd op Vocusvariant. * * @author maatman */
block_comment
nl
/* * Copyright (c) 2007, Topicus B.V. * All rights reserved. */ package nl.topicus.cobra.web.components.text; import nl.topicus.cobra.entities.Time; import nl.topicus.cobra.util.StringUtil; import nl.topicus.cobra.util.TimeUtil; import org.apache.wicket.ajax.AjaxEventBehavior; import org.apache.wicket.ajax.AjaxRequestTarget; import org.apache.wicket.markup.html.form.TextField; import org.apache.wicket.model.IModel; import org.apache.wicket.util.string.AppendingStringBuffer; /** * Class voor het<SUF>*/ public class TijdField extends TextField<Time> { public class TijdFieldAjaxHandler extends AjaxEventBehavior { private static final long serialVersionUID = 1L; public TijdFieldAjaxHandler() { super("onchange"); } @Override protected CharSequence getEventHandler() { return generateCallbackScript(new AppendingStringBuffer("wicketAjaxPost('").append( getCallbackUrl()).append("', wicketSerialize(this)")); } @Override protected void onEvent(AjaxRequestTarget target) { String datum = TijdField.this.getInput(); Time time = null; if (StringUtil.isNotEmpty(datum)) { time = TimeUtil.getInstance().parseTimeString(datum); if (time == null) { TijdField.this.setModelObject(null); } else { TijdField.this.setModelObject(time); } } else { TijdField.this.setModelObject(null); } target.addComponent(TijdField.this); onUpdate(target, getModelObject()); } } @SuppressWarnings("unused") protected void onUpdate(AjaxRequestTarget target, Time newValue) { } private static final long serialVersionUID = 6883784609679074032L; public TijdField(String id) { this(id, null); } public TijdField(String id, IModel<Time> model) { super(id, model, Time.class); setOutputMarkupId(true); add(new TijdFieldAjaxHandler()); } }
204127_1
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
MTA-Digital-Broadcast-2/C-Vdovlov-Evgeni-Smet-Matthew-Project-MHP
Matthew smet - Oefeningen Java + mhp/LaboJava/blz12/Eersteprog.java
237
/** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */
block_comment
nl
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd<SUF>*/ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
204127_2
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
MTA-Digital-Broadcast-2/C-Vdovlov-Evgeni-Smet-Matthew-Project-MHP
Matthew smet - Oefeningen Java + mhp/LaboJava/blz12/Eersteprog.java
237
//Methode drukaf word opgeroepen met parameter 100
line_comment
nl
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf<SUF> drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
204127_3
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
MTA-Digital-Broadcast-2/C-Vdovlov-Evgeni-Smet-Matthew-Project-MHP
Matthew smet - Oefeningen Java + mhp/LaboJava/blz12/Eersteprog.java
237
//Locale variablen wordt aangemaakt(a)
line_comment
nl
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen<SUF> int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
204127_4
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
MTA-Digital-Broadcast-2/C-Vdovlov-Evgeni-Smet-Matthew-Project-MHP
Matthew smet - Oefeningen Java + mhp/LaboJava/blz12/Eersteprog.java
237
//herhaalt de lus 100x (meegegeven parameter)
line_comment
nl
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de<SUF> for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
204127_5
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het getal uit in de cmd System.out.println(a); } } }
MTA-Digital-Broadcast-2/C-Vdovlov-Evgeni-Smet-Matthew-Project-MHP
Matthew smet - Oefeningen Java + mhp/LaboJava/blz12/Eersteprog.java
237
//print het getal uit in de cmd
line_comment
nl
/** * Oefening 1.11 * @author Matthew Smet * @import importeren van nodige libraries */ import java.lang.*; /** * klasse Eersteprog gebaseerd op oefening 1.11 met 2 methoden * Methode main met @param args array van strings met meegegeven parameters * Methode drukaf met @param integer m */ public class Eersteprog { public static void main(String args[]) { //Methode drukaf word opgeroepen met parameter 100 drukaf(100); } private static void(int m) { //Locale variablen wordt aangemaakt(a) int a; //herhaalt de lus 100x (meegegeven parameter) for (a=0;a<m;a++) { //print het<SUF> System.out.println(a); } } }
204131_2
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
simeonrutges/MarketPulse
src/main/java/com/example/MarketPulse/service/TransactionStatusUpdateService.java
620
// Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz.
line_comment
nl
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan<SUF> transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
204131_9
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
simeonrutges/MarketPulse
src/main/java/com/example/MarketPulse/service/TransactionStatusUpdateService.java
620
// // Log de update van de transactie
line_comment
nl
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de<SUF> // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
204131_11
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
simeonrutges/MarketPulse
src/main/java/com/example/MarketPulse/service/TransactionStatusUpdateService.java
620
// // Update de gerelateerde order als de transactie is voltooid
line_comment
nl
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de<SUF> // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
204131_15
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
simeonrutges/MarketPulse
src/main/java/com/example/MarketPulse/service/TransactionStatusUpdateService.java
620
// relatedOrder.setStatus("Processing"); // Of een andere passende status
line_comment
nl
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); //<SUF> // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
204131_16
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de update van de gerelateerde order // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
simeonrutges/MarketPulse
src/main/java/com/example/MarketPulse/service/TransactionStatusUpdateService.java
620
// // Log de update van de gerelateerde order
line_comment
nl
package com.example.MarketPulse.service; import com.example.MarketPulse.model.Order; import com.example.MarketPulse.model.Transaction; import com.example.MarketPulse.repository.OrderRepository; import com.example.MarketPulse.repository.TransactionRepository; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Service; import java.util.List; @Service public class TransactionStatusUpdateService { @Autowired private TransactionRepository transactionRepository; @Autowired private OrderRepository orderRepository; private final static Logger log = LoggerFactory.getLogger(TransactionStatusUpdateService.class); // alleen Transaction scheduled @Scheduled(fixedDelay = 10000) // 10 seconden public void updatePendingTransactions() { List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); for (Transaction transaction : pendingTransactions) { // Logica om te bepalen of een transactie naar "Completed" of "Failed" gaat // Dit kan gebaseerd zijn op tijd, willekeurige selectie, enz. transaction.setStatus(Math.random() < 0.5 ? "Completed" : "Failed"); transactionRepository.save(transaction); } } // Transaction + Order scheduled //@Scheduled(fixedDelay = 10000) // 10 seconden //public void updatePendingTransactions() { // List<Transaction> pendingTransactions = transactionRepository.findByStatus("Pending"); // // for (Transaction transaction : pendingTransactions) { // String newStatus = Math.random() < 0.5 ? "Completed" : "Failed"; // transaction.setStatus(newStatus); // transactionRepository.save(transaction); // // // Log de update van de transactie // log.info("Updating transaction ID: " + transaction.getId() + " to status: " + newStatus); // // // Update de gerelateerde order als de transactie is voltooid // if ("Completed".equals(newStatus)) { // Order relatedOrder = transaction.getOrder(); // if (relatedOrder != null) { // relatedOrder.setStatus("Processing"); // Of een andere passende status // orderRepository.save(relatedOrder); // // // Log de<SUF> // log.info("Updating related order ID: " + relatedOrder.getId() + " to status: Processing"); // } // } // } //} }
204133_1
/* * eID Applet Project. * Copyright (C) 2008-2009 FedICT. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version * 3.0 as published by the Free Software Foundation. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, see * http://www.gnu.org/licenses/. */ package be.fedict.eid.applet.shared; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.net.InetAddress; /** * Authentication Contract class. * * <p> * Volgens artikel 4, paragraaf 5 van de wet van 9 juli 2001 betreffende het * juridisch kader voor elektronische handtekeningen en certificatiediensten kan * de rechtsgeldigheid van elektronische handtekeningen niet worden ontzegd op * grond van het feit dat de handtekening niet is gebaseerd op een * gekwalificeerd certificaat. Hieruit kan men afleiden dat cryptografische * handtekeningen, gemaakt met het authenticatie certificaat, tevens als * rechtsgeldige elektronische handtekeningen kunnen worden geïnterpreteerd. * </p> * * <p> * This class allows a citizen to proof that the cryptographic signature created * with his authentication certificate was indeed meant as way of * authenticating. In case of challenge abuse, there was no intention to sign * any legally binding contract except this authentication contract. If a * malicious eID Applet Service tricks the citizen into signing a document * digest instead of a meaningless challenge, we give the citizen a proof of * intention via this formal authentication contract. * </p> * * <p> * We use a 32-bit TLV structure to prevent type flaw attacks. * </p> * * @author Frank Cornelis * */ public class AuthenticationContract { public static final int SALT_TAG = 1; public static final int HOSTNAME_TAG = 2; public static final int INET_ADDRESS_TAG = 3; public static final int LEGAL_NOTICE_TAG = 4; public static final int SESSION_ID_TAG = 5; public static final int ENCODED_SERVER_CERTIFICATE_TAG = 6; public static final int CHALLENGE_TAG = 7; private final byte[] salt; private final String hostname; private final InetAddress inetAddress; public static final String LEGAL_NOTICE = "Declaration of authentication intension.\n" + "The following data should be interpreted as an authentication challenge.\n"; private final byte[] sessionId; private final byte[] encodedServerCertificate; private final byte[] challenge; /** * Main constructor. * * @param salt * @param hostname * the optional hostname. * @param inetAddress * the optional internet address. * @param sessionId * the optional SSL session identifier. * @param encodedServerCertificate * the optional DER encoded X509 server certificate. * @param challenge */ public AuthenticationContract(byte[] salt, String hostname, InetAddress inetAddress, byte[] sessionId, byte[] encodedServerCertificate, byte[] challenge) { this.salt = salt; this.hostname = hostname; this.inetAddress = inetAddress; this.sessionId = sessionId; this.encodedServerCertificate = encodedServerCertificate; this.challenge = challenge; } public byte[] calculateToBeSigned() throws IOException { ByteArrayOutputStream toBeSignedOutputStream = new ByteArrayOutputStream(); /* * Salting prevents that we sign a document digest directly instead of * some meaningless challenge. */ writeTag(SALT_TAG, this.salt, toBeSignedOutputStream); if (null != this.hostname) { /* * Signing (salt||hostname||challenge) prevents man-in-the-middle * attacks from websites for which the SSL certificate is still * trusted but that have been compromised. If at the same time the * DNS is also attacked, well then everything is lost anyway. */ writeTag(HOSTNAME_TAG, this.hostname.getBytes(), toBeSignedOutputStream); } if (null != this.inetAddress) { byte[] address = this.inetAddress.getAddress(); writeTag(INET_ADDRESS_TAG, address, toBeSignedOutputStream); } /* * Next is to prevent abuse of the challenge in the context of a digital * signature claim on this cryptographic authentication signature. */ writeTag(LEGAL_NOTICE_TAG, LEGAL_NOTICE.getBytes(), toBeSignedOutputStream); if (null != this.sessionId) { writeTag(SESSION_ID_TAG, this.sessionId, toBeSignedOutputStream); } if (null != this.encodedServerCertificate) { writeTag(ENCODED_SERVER_CERTIFICATE_TAG, this.encodedServerCertificate, toBeSignedOutputStream); } /* * Of course we also digest the challenge as the server needs some mean * to authenticate us. */ writeTag(CHALLENGE_TAG, this.challenge, toBeSignedOutputStream); byte[] toBeSigned = toBeSignedOutputStream.toByteArray(); return toBeSigned; } /** * Write a 32-bit TLV entry to the given output stream. * * @param tag * @param value * @param outputStream * @throws IOException */ private void writeTag(int tag, byte[] value, OutputStream outputStream) throws IOException { outputStream.write(intToByteArray(tag)); if (null == value) { outputStream.write(intToByteArray(0)); } else { outputStream.write(intToByteArray(value.length)); outputStream.write(value); } } private byte[] intToByteArray(int value) { return new byte[] { (byte) (value >>> 24), (byte) (value >>> 16), (byte) (value >>> 8), (byte) value }; } }
BulkSecurityGeneratorProjectV2/e-Contract__eid-applet
eid-applet-shared/src/main/java/be/fedict/eid/applet/shared/AuthenticationContract.java
1,536
/** * Authentication Contract class. * * <p> * Volgens artikel 4, paragraaf 5 van de wet van 9 juli 2001 betreffende het * juridisch kader voor elektronische handtekeningen en certificatiediensten kan * de rechtsgeldigheid van elektronische handtekeningen niet worden ontzegd op * grond van het feit dat de handtekening niet is gebaseerd op een * gekwalificeerd certificaat. Hieruit kan men afleiden dat cryptografische * handtekeningen, gemaakt met het authenticatie certificaat, tevens als * rechtsgeldige elektronische handtekeningen kunnen worden geïnterpreteerd. * </p> * * <p> * This class allows a citizen to proof that the cryptographic signature created * with his authentication certificate was indeed meant as way of * authenticating. In case of challenge abuse, there was no intention to sign * any legally binding contract except this authentication contract. If a * malicious eID Applet Service tricks the citizen into signing a document * digest instead of a meaningless challenge, we give the citizen a proof of * intention via this formal authentication contract. * </p> * * <p> * We use a 32-bit TLV structure to prevent type flaw attacks. * </p> * * @author Frank Cornelis * */
block_comment
nl
/* * eID Applet Project. * Copyright (C) 2008-2009 FedICT. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License version * 3.0 as published by the Free Software Foundation. * * This software 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, see * http://www.gnu.org/licenses/. */ package be.fedict.eid.applet.shared; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.OutputStream; import java.net.InetAddress; /** * Authentication Contract class.<SUF>*/ public class AuthenticationContract { public static final int SALT_TAG = 1; public static final int HOSTNAME_TAG = 2; public static final int INET_ADDRESS_TAG = 3; public static final int LEGAL_NOTICE_TAG = 4; public static final int SESSION_ID_TAG = 5; public static final int ENCODED_SERVER_CERTIFICATE_TAG = 6; public static final int CHALLENGE_TAG = 7; private final byte[] salt; private final String hostname; private final InetAddress inetAddress; public static final String LEGAL_NOTICE = "Declaration of authentication intension.\n" + "The following data should be interpreted as an authentication challenge.\n"; private final byte[] sessionId; private final byte[] encodedServerCertificate; private final byte[] challenge; /** * Main constructor. * * @param salt * @param hostname * the optional hostname. * @param inetAddress * the optional internet address. * @param sessionId * the optional SSL session identifier. * @param encodedServerCertificate * the optional DER encoded X509 server certificate. * @param challenge */ public AuthenticationContract(byte[] salt, String hostname, InetAddress inetAddress, byte[] sessionId, byte[] encodedServerCertificate, byte[] challenge) { this.salt = salt; this.hostname = hostname; this.inetAddress = inetAddress; this.sessionId = sessionId; this.encodedServerCertificate = encodedServerCertificate; this.challenge = challenge; } public byte[] calculateToBeSigned() throws IOException { ByteArrayOutputStream toBeSignedOutputStream = new ByteArrayOutputStream(); /* * Salting prevents that we sign a document digest directly instead of * some meaningless challenge. */ writeTag(SALT_TAG, this.salt, toBeSignedOutputStream); if (null != this.hostname) { /* * Signing (salt||hostname||challenge) prevents man-in-the-middle * attacks from websites for which the SSL certificate is still * trusted but that have been compromised. If at the same time the * DNS is also attacked, well then everything is lost anyway. */ writeTag(HOSTNAME_TAG, this.hostname.getBytes(), toBeSignedOutputStream); } if (null != this.inetAddress) { byte[] address = this.inetAddress.getAddress(); writeTag(INET_ADDRESS_TAG, address, toBeSignedOutputStream); } /* * Next is to prevent abuse of the challenge in the context of a digital * signature claim on this cryptographic authentication signature. */ writeTag(LEGAL_NOTICE_TAG, LEGAL_NOTICE.getBytes(), toBeSignedOutputStream); if (null != this.sessionId) { writeTag(SESSION_ID_TAG, this.sessionId, toBeSignedOutputStream); } if (null != this.encodedServerCertificate) { writeTag(ENCODED_SERVER_CERTIFICATE_TAG, this.encodedServerCertificate, toBeSignedOutputStream); } /* * Of course we also digest the challenge as the server needs some mean * to authenticate us. */ writeTag(CHALLENGE_TAG, this.challenge, toBeSignedOutputStream); byte[] toBeSigned = toBeSignedOutputStream.toByteArray(); return toBeSigned; } /** * Write a 32-bit TLV entry to the given output stream. * * @param tag * @param value * @param outputStream * @throws IOException */ private void writeTag(int tag, byte[] value, OutputStream outputStream) throws IOException { outputStream.write(intToByteArray(tag)); if (null == value) { outputStream.write(intToByteArray(0)); } else { outputStream.write(intToByteArray(value.length)); outputStream.write(value); } } private byte[] intToByteArray(int value) { return new byte[] { (byte) (value >>> 24), (byte) (value >>> 16), (byte) (value >>> 8), (byte) value }; } }
204134_1
package VoorraadBeheer.View.MedicationListView; import VoorraadBeheer.Model.Medication; import VoorraadBeheer.Model.MedicationCat; import javafx.geometry.Insets; import javafx.geometry.Pos; import javafx.scene.control.Button; import javafx.scene.control.TableColumn; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.layout.BorderPane; import javafx.scene.control.TableView; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import javafx.scene.text.Text; import java.time.LocalTime; public class MedicationListView extends BorderPane{ /* Root Hbox Text Text TableView Hbox Button Button Button */ public VBox root = new VBox(); private HBox buttonBox = new HBox(); private HBox titleBox = new HBox(); private Text title = new Text("Medication List"); private Text nextMedTimer = new Text("Next Medication Timer: "); private TableView<Medication> tableView = new TableView<>(); private Button newMedicationButton = new Button("New Medication"); private Button editMedicationButton = new Button("Edit Medication"); private Button deleteMedicationButton = new Button("Delete Medication"); private TableColumn<Medication, String> nameColumn = new TableColumn<>("Name"); private TableColumn<Medication, String> descriptionColumn = new TableColumn<>("Description"); private TableColumn<Medication, Integer> stockColumn = new TableColumn<>("Stock"); private TableColumn<Medication, LocalTime> timeToTakeColumn = new TableColumn<>("Time to take"); private TableColumn<Medication, MedicationCat> categoryColumn = new TableColumn<>("Category"); public MedicationListView(){ initialiseNodes(); layoutNodes(); } private void initialiseNodes(){ //Door deze instellingen zal de TableView automatisch de juiste waarden weergeven in de cellen van elke kolom, gebaseerd op de attributen van het Medication-object dat wordt weergegeven. nameColumn.setCellValueFactory(new PropertyValueFactory<>("name")); descriptionColumn.setCellValueFactory(new PropertyValueFactory<>("description")); stockColumn.setCellValueFactory(new PropertyValueFactory<>("stock")); timeToTakeColumn.setCellValueFactory(new PropertyValueFactory<>("timeToTake")); categoryColumn.setCellValueFactory(new PropertyValueFactory<>("category")); } private void layoutNodes(){ // Set padding for the root VBox root.setPadding(new Insets(10, 10, 10, 10)); // Set spacing between the children of the root VBox root.setSpacing(10); // Set spacing between the buttons in the buttonBox buttonBox.setSpacing(10); // Set the alignment of the buttonBox to center buttonBox.setAlignment(Pos.CENTER); // Set the minimum width for the TableView tableView.setMinWidth(600); // Set the minimum width for the columns in the TableView nameColumn.setMinWidth(150); descriptionColumn.setMinWidth(150); stockColumn.setMinWidth(150); timeToTakeColumn.setMinWidth(150); categoryColumn.setMinWidth(150); // Set the spacing for the titleBox titleBox.setSpacing(200); buttonBox.getChildren().addAll(newMedicationButton, editMedicationButton, deleteMedicationButton); titleBox.getChildren().addAll(title, nextMedTimer); tableView.getColumns().addAll(nameColumn, descriptionColumn, stockColumn, timeToTakeColumn, categoryColumn); root.getChildren().addAll(titleBox, tableView, buttonBox); // Add the root VBox to the MedicationListView this.setCenter(root); } public Button getNewMedicationButton() { return newMedicationButton; } public Text getTitle() { return title; } public TableView getTableView() { return tableView; } }
Keanu-VW/VoorraadbeheerMedicatie
src/VoorraadBeheer/View/MedicationListView/MedicationListView.java
928
//Door deze instellingen zal de TableView automatisch de juiste waarden weergeven in de cellen van elke kolom, gebaseerd op de attributen van het Medication-object dat wordt weergegeven.
line_comment
nl
package VoorraadBeheer.View.MedicationListView; import VoorraadBeheer.Model.Medication; import VoorraadBeheer.Model.MedicationCat; import javafx.geometry.Insets; import javafx.geometry.Pos; import javafx.scene.control.Button; import javafx.scene.control.TableColumn; import javafx.scene.control.cell.PropertyValueFactory; import javafx.scene.layout.BorderPane; import javafx.scene.control.TableView; import javafx.scene.layout.HBox; import javafx.scene.layout.VBox; import javafx.scene.text.Text; import java.time.LocalTime; public class MedicationListView extends BorderPane{ /* Root Hbox Text Text TableView Hbox Button Button Button */ public VBox root = new VBox(); private HBox buttonBox = new HBox(); private HBox titleBox = new HBox(); private Text title = new Text("Medication List"); private Text nextMedTimer = new Text("Next Medication Timer: "); private TableView<Medication> tableView = new TableView<>(); private Button newMedicationButton = new Button("New Medication"); private Button editMedicationButton = new Button("Edit Medication"); private Button deleteMedicationButton = new Button("Delete Medication"); private TableColumn<Medication, String> nameColumn = new TableColumn<>("Name"); private TableColumn<Medication, String> descriptionColumn = new TableColumn<>("Description"); private TableColumn<Medication, Integer> stockColumn = new TableColumn<>("Stock"); private TableColumn<Medication, LocalTime> timeToTakeColumn = new TableColumn<>("Time to take"); private TableColumn<Medication, MedicationCat> categoryColumn = new TableColumn<>("Category"); public MedicationListView(){ initialiseNodes(); layoutNodes(); } private void initialiseNodes(){ //Door deze<SUF> nameColumn.setCellValueFactory(new PropertyValueFactory<>("name")); descriptionColumn.setCellValueFactory(new PropertyValueFactory<>("description")); stockColumn.setCellValueFactory(new PropertyValueFactory<>("stock")); timeToTakeColumn.setCellValueFactory(new PropertyValueFactory<>("timeToTake")); categoryColumn.setCellValueFactory(new PropertyValueFactory<>("category")); } private void layoutNodes(){ // Set padding for the root VBox root.setPadding(new Insets(10, 10, 10, 10)); // Set spacing between the children of the root VBox root.setSpacing(10); // Set spacing between the buttons in the buttonBox buttonBox.setSpacing(10); // Set the alignment of the buttonBox to center buttonBox.setAlignment(Pos.CENTER); // Set the minimum width for the TableView tableView.setMinWidth(600); // Set the minimum width for the columns in the TableView nameColumn.setMinWidth(150); descriptionColumn.setMinWidth(150); stockColumn.setMinWidth(150); timeToTakeColumn.setMinWidth(150); categoryColumn.setMinWidth(150); // Set the spacing for the titleBox titleBox.setSpacing(200); buttonBox.getChildren().addAll(newMedicationButton, editMedicationButton, deleteMedicationButton); titleBox.getChildren().addAll(title, nextMedTimer); tableView.getColumns().addAll(nameColumn, descriptionColumn, stockColumn, timeToTakeColumn, categoryColumn); root.getChildren().addAll(titleBox, tableView, buttonBox); // Add the root VBox to the MedicationListView this.setCenter(root); } public Button getNewMedicationButton() { return newMedicationButton; } public Text getTitle() { return title; } public TableView getTableView() { return tableView; } }
204135_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * NominalLossFunction.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; /** * Interface for incorporating different loss functions. * <p> * This interface contains only one method, namely <code> loss * </code> that measures the error between an actual class * value <code> actual </code> and a predicted value <code> * predicted. </code> It is understood that the return value * of this method is always be positive and that it is zero * if and only if the actual and the predicted value coincide. * </p> * <p> * This implementation is done as part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public interface NominalLossFunction { /** * Calculate the loss between an actual and a predicted class value. * * @param actual the actual class value * @param predicted the predicted class value * @return a measure for the error of making the prediction * <code> predicted </code> instead of <code> actual </code> */ public double loss(double actual, double predicted); }
caglar/jDenetX
src/weka/classifiers/misc/monotone/NominalLossFunction.java
530
/* * NominalLossFunction.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * NominalLossFunction.java *<SUF>*/ package weka.classifiers.misc.monotone; /** * Interface for incorporating different loss functions. * <p> * This interface contains only one method, namely <code> loss * </code> that measures the error between an actual class * value <code> actual </code> and a predicted value <code> * predicted. </code> It is understood that the return value * of this method is always be positive and that it is zero * if and only if the actual and the predicted value coincide. * </p> * <p> * This implementation is done as part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public interface NominalLossFunction { /** * Calculate the loss between an actual and a predicted class value. * * @param actual the actual class value * @param predicted the predicted class value * @return a measure for the error of making the prediction * <code> predicted </code> instead of <code> actual </code> */ public double loss(double actual, double predicted); }
204137_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * ZeroOneLossFunction.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; /** * Class implementing the zero-one loss function, this is * an incorrect prediction always accounts for one unit loss. * * <p> * This implementation is done as part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class ZeroOneLossFunction implements NominalLossFunction, RevisionHandler { /** * Returns the zero-one loss function between two class values. * * @param actual the actual class value * @param predicted the predicted class value * @return 1 if the actual and predicted value differ, 0 otherwise */ public final double loss(double actual, double predicted) { return actual == predicted ? 0 : 1; } /** * Returns a string with the name of the loss function. * * @return a string with the name of the loss function */ public String toString() { return "ZeroOneLossFunction"; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/ZeroOneLossFunction.java
609
/* * ZeroOneLossFunction.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * ZeroOneLossFunction.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; /** * Class implementing the zero-one loss function, this is * an incorrect prediction always accounts for one unit loss. * * <p> * This implementation is done as part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class ZeroOneLossFunction implements NominalLossFunction, RevisionHandler { /** * Returns the zero-one loss function between two class values. * * @param actual the actual class value * @param predicted the predicted class value * @return 1 if the actual and predicted value differ, 0 otherwise */ public final double loss(double actual, double predicted) { return actual == predicted ? 0 : 1; } /** * Returns a string with the name of the loss function. * * @return a string with the name of the loss function */ public String toString() { return "ZeroOneLossFunction"; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204140_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MinMaxExtension.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc; import weka.classifiers.Classifier; import weka.classifiers.misc.monotone.InstancesUtil; import weka.core.Capabilities; import weka.core.Instance; import weka.core.Instances; import weka.core.Option; import weka.core.TechnicalInformation; import weka.core.TechnicalInformationHandler; import weka.core.Utils; import weka.core.Capabilities.Capability; import weka.core.TechnicalInformation.Field; import weka.core.TechnicalInformation.Type; import java.util.Enumeration; import java.util.Vector; /** <!-- globalinfo-start --> * This class is an implementation of the minimal and maximal extension.<br/> * All attributes and the class are assumed to be ordinal. The order of the ordinal attributes is determined by the internal codes used by WEKA.<br/> * <br/> * Further information regarding these algorithms can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class MinMaxExtension extends Classifier implements TechnicalInformationHandler { /** for serialization */ private static final long serialVersionUID = 8505830465540027104L; /** * The training instances. */ private Instances m_data; /** * parameter for choice between min extension and max extension */ private boolean m_min = true; /** * Returns a string describing the classifier. * @return a description suitable for displaying in the * explorer/experimenter gui */ public String globalInfo() { return "This class is an implementation of the " + "minimal and maximal extension.\n" + "All attributes and the class are assumed to be ordinal. The order of " + "the ordinal attributes is determined by the internal codes used by " + "WEKA.\n\n" + "Further information regarding these algorithms can be found in:\n\n" + getTechnicalInformation().toString() + "\n\n" + "For more information about supervised ranking, see\n\n" + "http://users.ugent.be/~slievens/supervised_ranking.php"; } /** * Returns an instance of a TechnicalInformation object, containing * detailed information about the technical background of this class, * e.g., paper reference or book this class is based on. * * @return the technical information about this class */ public TechnicalInformation getTechnicalInformation() { TechnicalInformation result; TechnicalInformation additional; result = new TechnicalInformation(Type.ARTICLE); result.setValue(Field.AUTHOR, "S. Lievens and B. De Baets and K. Cao-Van"); result.setValue(Field.YEAR, "2006"); result.setValue(Field.TITLE, "A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting"); result.setValue(Field.JOURNAL, "Annals of Operations Research"); additional = result.add(Type.PHDTHESIS); additional.setValue(Field.AUTHOR, "Kim Cao-Van"); additional.setValue(Field.YEAR, "2003"); additional.setValue(Field.TITLE, "Supervised ranking: from semantics to algorithms"); additional.setValue(Field.SCHOOL, "Ghent University"); additional = result.add(Type.MASTERSTHESIS); additional.setValue(Field.AUTHOR, "Stijn Lievens"); additional.setValue(Field.YEAR, "2004"); additional.setValue(Field.TITLE, "Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken"); additional.setValue(Field.SCHOOL, "Ghent University"); return result; } /** * Returns default capabilities of the classifier. * * @return the capabilities of this classifier */ public Capabilities getCapabilities() { Capabilities result = super.getCapabilities(); // attributes result.enable(Capability.NOMINAL_ATTRIBUTES); // class result.enable(Capability.NOMINAL_CLASS); result.enable(Capability.MISSING_CLASS_VALUES); // instances result.setMinimumNumberInstances(0); return result; } /** * Builds the classifier. This is in fact nothing else than copying * the given instances. * * @param instances the training examples * @throws Exception if the classifier is not able to handle the * <code> instances </code>. */ public void buildClassifier(Instances instances) throws Exception { getCapabilities().testWithFail(instances); // copy the dataset m_data = new Instances(instances); // new dataset in which examples with missing class value are removed m_data.deleteWithMissingClass(); } /** * Classifies the given instance. * * @param instance the instance to be classified * @return a double representing the internal value * of the label that is assigned to the given instance */ public double classifyInstance(Instance instance) { double value; if (m_min == true) { value = 0; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(i2, instance) == true) { value = Math.max(value, i2.classValue()); } } } else { value = m_data.classAttribute().numValues() - 1; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(instance, i2) == true) { value = Math.min(value, i2.classValue()); } } } return value; } /** * After calling this method, the next classification will use the minimal * extension. */ public void setMinExtension() { m_min = true; } /** * After calling this method, the next classification will use the maximal * extension. */ public void setMaxExtension() { m_min = false; } /** * Returns the tip text for this property. * * @return tip text for this property suitable for * displaying in the explorer/experimenter gui */ public String minMaxExtensionTipText() { return "If true, the minimal extension of the algorithm is chosen, " + "otherwise, it is the maximal extension"; } /** * Return if the minimal extension is in effect. * * @return <code> true </code> if the minimal is in effect, * <code> false </code> otherwise */ public boolean getMinMaxExtension() { return m_min; } /** * Chooses between the minimal and maximal extension of the algorithm. * If <code> min </code> is <code> true </code> then the minimal extension * wil be in effect, otherwise it will the maximal extension. * * @param min do we choose the minimal extension */ public void setMinMaxExtension(boolean min) { m_min = min; } /** * Parses the options for this object. <p/> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @param options an array of strings containing the options for the classifier * @throws Exception if */ public void setOptions(String[] options) throws Exception { m_min = !Utils.getFlag('M',options); // check if -M option is present super.setOptions(options); } /** * Gets the current settings of this classifier. * * @return an array of strings suitable for passing to * <code> setOptions </code> */ public String[] getOptions() { int i; Vector result; String[] options; result = new Vector(); options = super.getOptions(); for (i = 0; i < options.length; i++) result.add(options[i]); if (!m_min) result.add("-M"); return (String[]) result.toArray(new String[result.size()]); } /** * Produces an enumeration describing the available options for * this classifier. * * @return an enumeration with the available options. */ public Enumeration listOptions() { Vector options = new Vector(); Enumeration enm = super.listOptions(); while (enm.hasMoreElements()) options.addElement(enm.nextElement()); String s = "\tUse maximal extension (default: minimal extension)"; options.add(new Option(s, "M", 0, "-M")); return options.elements(); } /** * returns a string representation of this classifier * * @return the classname */ public String toString() { return this.getClass().getName(); } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * MinMaxExtension </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new MinMaxExtension(), args); } }
svn2github/weka
tags/dev-3-5-4/weka/classifiers/misc/MinMaxExtension.java
3,207
/* * MinMaxExtension.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MinMaxExtension.java *<SUF>*/ package weka.classifiers.misc; import weka.classifiers.Classifier; import weka.classifiers.misc.monotone.InstancesUtil; import weka.core.Capabilities; import weka.core.Instance; import weka.core.Instances; import weka.core.Option; import weka.core.TechnicalInformation; import weka.core.TechnicalInformationHandler; import weka.core.Utils; import weka.core.Capabilities.Capability; import weka.core.TechnicalInformation.Field; import weka.core.TechnicalInformation.Type; import java.util.Enumeration; import java.util.Vector; /** <!-- globalinfo-start --> * This class is an implementation of the minimal and maximal extension.<br/> * All attributes and the class are assumed to be ordinal. The order of the ordinal attributes is determined by the internal codes used by WEKA.<br/> * <br/> * Further information regarding these algorithms can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class MinMaxExtension extends Classifier implements TechnicalInformationHandler { /** for serialization */ private static final long serialVersionUID = 8505830465540027104L; /** * The training instances. */ private Instances m_data; /** * parameter for choice between min extension and max extension */ private boolean m_min = true; /** * Returns a string describing the classifier. * @return a description suitable for displaying in the * explorer/experimenter gui */ public String globalInfo() { return "This class is an implementation of the " + "minimal and maximal extension.\n" + "All attributes and the class are assumed to be ordinal. The order of " + "the ordinal attributes is determined by the internal codes used by " + "WEKA.\n\n" + "Further information regarding these algorithms can be found in:\n\n" + getTechnicalInformation().toString() + "\n\n" + "For more information about supervised ranking, see\n\n" + "http://users.ugent.be/~slievens/supervised_ranking.php"; } /** * Returns an instance of a TechnicalInformation object, containing * detailed information about the technical background of this class, * e.g., paper reference or book this class is based on. * * @return the technical information about this class */ public TechnicalInformation getTechnicalInformation() { TechnicalInformation result; TechnicalInformation additional; result = new TechnicalInformation(Type.ARTICLE); result.setValue(Field.AUTHOR, "S. Lievens and B. De Baets and K. Cao-Van"); result.setValue(Field.YEAR, "2006"); result.setValue(Field.TITLE, "A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting"); result.setValue(Field.JOURNAL, "Annals of Operations Research"); additional = result.add(Type.PHDTHESIS); additional.setValue(Field.AUTHOR, "Kim Cao-Van"); additional.setValue(Field.YEAR, "2003"); additional.setValue(Field.TITLE, "Supervised ranking: from semantics to algorithms"); additional.setValue(Field.SCHOOL, "Ghent University"); additional = result.add(Type.MASTERSTHESIS); additional.setValue(Field.AUTHOR, "Stijn Lievens"); additional.setValue(Field.YEAR, "2004"); additional.setValue(Field.TITLE, "Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken"); additional.setValue(Field.SCHOOL, "Ghent University"); return result; } /** * Returns default capabilities of the classifier. * * @return the capabilities of this classifier */ public Capabilities getCapabilities() { Capabilities result = super.getCapabilities(); // attributes result.enable(Capability.NOMINAL_ATTRIBUTES); // class result.enable(Capability.NOMINAL_CLASS); result.enable(Capability.MISSING_CLASS_VALUES); // instances result.setMinimumNumberInstances(0); return result; } /** * Builds the classifier. This is in fact nothing else than copying * the given instances. * * @param instances the training examples * @throws Exception if the classifier is not able to handle the * <code> instances </code>. */ public void buildClassifier(Instances instances) throws Exception { getCapabilities().testWithFail(instances); // copy the dataset m_data = new Instances(instances); // new dataset in which examples with missing class value are removed m_data.deleteWithMissingClass(); } /** * Classifies the given instance. * * @param instance the instance to be classified * @return a double representing the internal value * of the label that is assigned to the given instance */ public double classifyInstance(Instance instance) { double value; if (m_min == true) { value = 0; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(i2, instance) == true) { value = Math.max(value, i2.classValue()); } } } else { value = m_data.classAttribute().numValues() - 1; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(instance, i2) == true) { value = Math.min(value, i2.classValue()); } } } return value; } /** * After calling this method, the next classification will use the minimal * extension. */ public void setMinExtension() { m_min = true; } /** * After calling this method, the next classification will use the maximal * extension. */ public void setMaxExtension() { m_min = false; } /** * Returns the tip text for this property. * * @return tip text for this property suitable for * displaying in the explorer/experimenter gui */ public String minMaxExtensionTipText() { return "If true, the minimal extension of the algorithm is chosen, " + "otherwise, it is the maximal extension"; } /** * Return if the minimal extension is in effect. * * @return <code> true </code> if the minimal is in effect, * <code> false </code> otherwise */ public boolean getMinMaxExtension() { return m_min; } /** * Chooses between the minimal and maximal extension of the algorithm. * If <code> min </code> is <code> true </code> then the minimal extension * wil be in effect, otherwise it will the maximal extension. * * @param min do we choose the minimal extension */ public void setMinMaxExtension(boolean min) { m_min = min; } /** * Parses the options for this object. <p/> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @param options an array of strings containing the options for the classifier * @throws Exception if */ public void setOptions(String[] options) throws Exception { m_min = !Utils.getFlag('M',options); // check if -M option is present super.setOptions(options); } /** * Gets the current settings of this classifier. * * @return an array of strings suitable for passing to * <code> setOptions </code> */ public String[] getOptions() { int i; Vector result; String[] options; result = new Vector(); options = super.getOptions(); for (i = 0; i < options.length; i++) result.add(options[i]); if (!m_min) result.add("-M"); return (String[]) result.toArray(new String[result.size()]); } /** * Produces an enumeration describing the available options for * this classifier. * * @return an enumeration with the available options. */ public Enumeration listOptions() { Vector options = new Vector(); Enumeration enm = super.listOptions(); while (enm.hasMoreElements()) options.addElement(enm.nextElement()); String s = "\tUse maximal extension (default: minimal extension)"; options.add(new Option(s, "M", 0, "-M")); return options.elements(); } /** * returns a string representation of this classifier * * @return the classname */ public String toString() { return this.getClass().getName(); } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * MinMaxExtension </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new MinMaxExtension(), args); } }
204141_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * EnumerationIterator.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import java.util.Enumeration; import java.util.Iterator; import java.util.NoSuchElementException; /** * Implementation of a simple wrapper class for the <code> Enumeration </code> * interface. * This makes it possible to use an <code> Enumeration </code> as if * it were an <code> Iterator. </code> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class EnumerationIterator implements Iterator { private Enumeration e; /** * Construct an <code> EnumerationIterator </code> on basis of on * <code> Enumeration. </code> * * @param e the <code> Enumeration </code> on which the * <code> Iterator </code> will be based */ public EnumerationIterator(Enumeration e) { this.e = e; } /** * Returns <code> true </code> if there are more elements in the iteration. * * @return <code> true </code> if there are more elements in the iteration, * <code> false </code> otherwise */ final public boolean hasNext() { return e.hasMoreElements(); } /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the requested element does not exist */ final public Object next() throws NoSuchElementException { return e.nextElement(); } /** * Since the iteration is based on an enumeration, removal of elements * is not supported. * * @throws UnsupportedOperationException every time this method is invoked */ final public void remove() { throw new UnsupportedOperationException(); } }
svn2github/weka
tags/dev-3-5-4/weka/classifiers/misc/monotone/EnumerationIterator.java
709
/* * EnumerationIterator.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * EnumerationIterator.java *<SUF>*/ package weka.classifiers.misc.monotone; import java.util.Enumeration; import java.util.Iterator; import java.util.NoSuchElementException; /** * Implementation of a simple wrapper class for the <code> Enumeration </code> * interface. * This makes it possible to use an <code> Enumeration </code> as if * it were an <code> Iterator. </code> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class EnumerationIterator implements Iterator { private Enumeration e; /** * Construct an <code> EnumerationIterator </code> on basis of on * <code> Enumeration. </code> * * @param e the <code> Enumeration </code> on which the * <code> Iterator </code> will be based */ public EnumerationIterator(Enumeration e) { this.e = e; } /** * Returns <code> true </code> if there are more elements in the iteration. * * @return <code> true </code> if there are more elements in the iteration, * <code> false </code> otherwise */ final public boolean hasNext() { return e.hasMoreElements(); } /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the requested element does not exist */ final public Object next() throws NoSuchElementException { return e.nextElement(); } /** * Since the iteration is based on an enumeration, removal of elements * is not supported. * * @throws UnsupportedOperationException every time this method is invoked */ final public void remove() { throw new UnsupportedOperationException(); } }
204144_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BitMatrix.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; /** * Interface specifying a simple matrix of booleans. Operations are * limited to setting, getting, clearing and counting. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public interface BitMatrix { /** * Return the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column); /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool); /** * Sets the bit at the specified position to <code> true. </code> * The return value indicates whether anything has changed, * i.e.&nbsp; if the bit at the specified position was <code> true * </code> before calling this method, then <code> false </code> is * returned (and the bit remains <code> true </code> of course). * In the other case <code> true </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column); /** * Clears the bit at the specified position. The return value indicates * whether the bit was actually cleared, i.e.&nbsp; if the bit was * originally <code> true </code> then <code> true </code> is returned. * In the other case <code> false </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column); /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows(); /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns(); /** * Counts the number of bits that are set in the specified column. * * @param column index of the column * @return the number of bits that are set in the requested column */ public int columnCount(int column); /** * Counts the number of bits that are set in the specified row. * * @param row index of the row * @return the number of bits that are set in the requested row */ public int rowCount(int row); }
caglar/jDenetX
src/weka/classifiers/misc/monotone/BitMatrix.java
1,049
/* * BitMatrix.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BitMatrix.java *<SUF>*/ package weka.classifiers.misc.monotone; /** * Interface specifying a simple matrix of booleans. Operations are * limited to setting, getting, clearing and counting. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public interface BitMatrix { /** * Return the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column); /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool); /** * Sets the bit at the specified position to <code> true. </code> * The return value indicates whether anything has changed, * i.e.&nbsp; if the bit at the specified position was <code> true * </code> before calling this method, then <code> false </code> is * returned (and the bit remains <code> true </code> of course). * In the other case <code> true </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column); /** * Clears the bit at the specified position. The return value indicates * whether the bit was actually cleared, i.e.&nbsp; if the bit was * originally <code> true </code> then <code> true </code> is returned. * In the other case <code> false </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column); /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows(); /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns(); /** * Counts the number of bits that are set in the specified column. * * @param column index of the column * @return the number of bits that are set in the requested column */ public int columnCount(int column); /** * Counts the number of bits that are set in the specified row. * * @param row index of the row * @return the number of bits that are set in the requested row */ public int rowCount(int row); }
204145_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * EnumerationIterator.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Enumeration; import java.util.Iterator; import java.util.NoSuchElementException; /** * Implementation of a simple wrapper class for the <code> Enumeration </code> * interface. * This makes it possible to use an <code> Enumeration </code> as if * it were an <code> Iterator. </code> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class EnumerationIterator implements Iterator, RevisionHandler { private Enumeration e; /** * Construct an <code> EnumerationIterator </code> on basis of on * <code> Enumeration. </code> * * @param e the <code> Enumeration </code> on which the * <code> Iterator </code> will be based */ public EnumerationIterator(Enumeration e) { this.e = e; } /** * Returns <code> true </code> if there are more elements in the iteration. * * @return <code> true </code> if there are more elements in the iteration, * <code> false </code> otherwise */ final public boolean hasNext() { return e.hasMoreElements(); } /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the requested element does not exist */ final public Object next() throws NoSuchElementException { return e.nextElement(); } /** * Since the iteration is based on an enumeration, removal of elements * is not supported. * * @throws UnsupportedOperationException every time this method is invoked */ final public void remove() { throw new UnsupportedOperationException(); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/EnumerationIterator.java
789
/* * EnumerationIterator.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * EnumerationIterator.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Enumeration; import java.util.Iterator; import java.util.NoSuchElementException; /** * Implementation of a simple wrapper class for the <code> Enumeration </code> * interface. * This makes it possible to use an <code> Enumeration </code> as if * it were an <code> Iterator. </code> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class EnumerationIterator implements Iterator, RevisionHandler { private Enumeration e; /** * Construct an <code> EnumerationIterator </code> on basis of on * <code> Enumeration. </code> * * @param e the <code> Enumeration </code> on which the * <code> Iterator </code> will be based */ public EnumerationIterator(Enumeration e) { this.e = e; } /** * Returns <code> true </code> if there are more elements in the iteration. * * @return <code> true </code> if there are more elements in the iteration, * <code> false </code> otherwise */ final public boolean hasNext() { return e.hasMoreElements(); } /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the requested element does not exist */ final public Object next() throws NoSuchElementException { return e.nextElement(); } /** * Since the iteration is based on an enumeration, removal of elements * is not supported. * * @throws UnsupportedOperationException every time this method is invoked */ final public void remove() { throw new UnsupportedOperationException(); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204148_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.isc.console.datasource; import java.lang.reflect.Field; import java.util.Hashtable; import java.util.Properties; import javax.naming.Context; import javax.naming.Name; import javax.naming.RefAddr; import javax.naming.Reference; import javax.naming.spi.ObjectFactory; import org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory; /** * Wrapper om de standaard Tomcat datasource factory die properties kan verwerken die naar Systeem variabelen wijzen. * * Gebaseerd op Tomcat versie 7.0.67. */ public final class CustomDataSourceFactory implements ObjectFactory { private static final String[] ALL_PROPERTIES; static { try { final Field field = BasicDataSourceFactory.class.getDeclaredField("ALL_PROPERTIES"); field.setAccessible(true); ALL_PROPERTIES = (String[]) field.get(null); } catch (final ReflectiveOperationException e) { throw new IllegalArgumentException(e); } } @Override public Object getObjectInstance(final Object obj, final Name name, final Context nameCtx, final Hashtable<?, ?> environment) throws Exception { // We only know how to deal with <code>javax.naming.Reference</code>s // that specify a class name of "javax.sql.DataSource" if (obj == null || !(obj instanceof Reference)) { return null; } final Reference ref = (Reference) obj; if (!"javax.sql.DataSource".equals(ref.getClassName())) { return null; } final Properties properties = new Properties(); for (int i = 0; i < ALL_PROPERTIES.length; i++) { final String propertyName = ALL_PROPERTIES[i]; final RefAddr ra = ref.get(propertyName); if (ra != null) { final String propertyValue = ra.getContent().toString(); properties.setProperty(propertyName, verwerkSystemProperty(propertyValue)); } } return BasicDataSourceFactory.createDataSource(properties); } /** * Zoek combinaties van '${' en '}' en vervang deze met de gegeven Systeem environment waarde. * @param value waarde * @return verwerkte waarde */ private String verwerkSystemProperty(final String value) { String result = value; while (true) { int startIndex = result.indexOf("${", 0); if (startIndex == -1) { break; } final int endIndex = result.indexOf('}', startIndex); if (endIndex == -1) { throw new IllegalArgumentException(); } final String variableName = result.substring(startIndex + 2, endIndex); final String variabelValue = System.getenv(variableName); result = result.substring(0, startIndex) + variabelValue + result.substring(endIndex + 1); } return result; } }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-isc-console-datasource/src/main/java/nl/bzk/migratiebrp/isc/console/datasource/CustomDataSourceFactory.java
787
/** * Zoek combinaties van '${' en '}' en vervang deze met de gegeven Systeem environment waarde. * @param value waarde * @return verwerkte waarde */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.isc.console.datasource; import java.lang.reflect.Field; import java.util.Hashtable; import java.util.Properties; import javax.naming.Context; import javax.naming.Name; import javax.naming.RefAddr; import javax.naming.Reference; import javax.naming.spi.ObjectFactory; import org.apache.tomcat.dbcp.dbcp.BasicDataSourceFactory; /** * Wrapper om de standaard Tomcat datasource factory die properties kan verwerken die naar Systeem variabelen wijzen. * * Gebaseerd op Tomcat versie 7.0.67. */ public final class CustomDataSourceFactory implements ObjectFactory { private static final String[] ALL_PROPERTIES; static { try { final Field field = BasicDataSourceFactory.class.getDeclaredField("ALL_PROPERTIES"); field.setAccessible(true); ALL_PROPERTIES = (String[]) field.get(null); } catch (final ReflectiveOperationException e) { throw new IllegalArgumentException(e); } } @Override public Object getObjectInstance(final Object obj, final Name name, final Context nameCtx, final Hashtable<?, ?> environment) throws Exception { // We only know how to deal with <code>javax.naming.Reference</code>s // that specify a class name of "javax.sql.DataSource" if (obj == null || !(obj instanceof Reference)) { return null; } final Reference ref = (Reference) obj; if (!"javax.sql.DataSource".equals(ref.getClassName())) { return null; } final Properties properties = new Properties(); for (int i = 0; i < ALL_PROPERTIES.length; i++) { final String propertyName = ALL_PROPERTIES[i]; final RefAddr ra = ref.get(propertyName); if (ra != null) { final String propertyValue = ra.getContent().toString(); properties.setProperty(propertyName, verwerkSystemProperty(propertyValue)); } } return BasicDataSourceFactory.createDataSource(properties); } /** * Zoek combinaties van<SUF>*/ private String verwerkSystemProperty(final String value) { String result = value; while (true) { int startIndex = result.indexOf("${", 0); if (startIndex == -1) { break; } final int endIndex = result.indexOf('}', startIndex); if (endIndex == -1) { throw new IllegalArgumentException(); } final String variableName = result.substring(startIndex + 2, endIndex); final String variabelValue = System.getenv(variableName); result = result.substring(0, startIndex) + variabelValue + result.substring(endIndex + 1); } return result; } }
204149_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * InstancesComparator.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Comparator; /** * Class to compare instances with respect to a given attribute, indicated * by its index. The ordering of the attribute values is determined * by the internal values of WEKA. There is also the possibility of * reversing this order. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class InstancesComparator implements Comparator, RevisionHandler { /** index of the attribute */ private int m_Index; /** If 1 then the order is not reversed, when -1, the order is reversed */ private int m_Reverse = 1; /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index. * * @param index the index on which to compare instances */ public InstancesComparator(int index) { m_Index = index; } /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index, with the possibility of * reversing the order. * * @param index the index on which to compare instances * @param reverse if <code> true </code> the order is reversed, if * <code> false </code> the order is not reversed */ public InstancesComparator(int index, boolean reverse) { m_Index = index; m_Reverse = (reverse == true) ? -1 : 1; } /** * Compares two objects (instances) with respect to the attribute * this comparator is constructed on. * * @param o1 the first object to be compared * @param o2 the second object to be compared * @return -1 if <code> o1 &lt; o2 </code> (wrt to the given attribute), * 1 if <code> o1 &gt; o2 </code>, and 0 if <code> o1 </code> and * <code> o2 </code> are equal (wrt to the given attribute) */ public int compare(Object o1, Object o2) { Instance i1 = (Instance) o1; Instance i2 = (Instance) o2; if (i1.value(m_Index) < i2.value(m_Index)) { return -1 * m_Reverse; } else if (i1.value(m_Index) > i2.value(m_Index)) { return 1 * m_Reverse; } return 0; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/InstancesComparator.java
995
/* * InstancesComparator.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * InstancesComparator.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Comparator; /** * Class to compare instances with respect to a given attribute, indicated * by its index. The ordering of the attribute values is determined * by the internal values of WEKA. There is also the possibility of * reversing this order. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class InstancesComparator implements Comparator, RevisionHandler { /** index of the attribute */ private int m_Index; /** If 1 then the order is not reversed, when -1, the order is reversed */ private int m_Reverse = 1; /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index. * * @param index the index on which to compare instances */ public InstancesComparator(int index) { m_Index = index; } /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index, with the possibility of * reversing the order. * * @param index the index on which to compare instances * @param reverse if <code> true </code> the order is reversed, if * <code> false </code> the order is not reversed */ public InstancesComparator(int index, boolean reverse) { m_Index = index; m_Reverse = (reverse == true) ? -1 : 1; } /** * Compares two objects (instances) with respect to the attribute * this comparator is constructed on. * * @param o1 the first object to be compared * @param o2 the second object to be compared * @return -1 if <code> o1 &lt; o2 </code> (wrt to the given attribute), * 1 if <code> o1 &gt; o2 </code>, and 0 if <code> o1 </code> and * <code> o2 </code> are equal (wrt to the given attribute) */ public int compare(Object o1, Object o2) { Instance i1 = (Instance) o1; Instance i2 = (Instance) o2; if (i1.value(m_Index) < i2.value(m_Index)) { return -1 * m_Reverse; } else if (i1.value(m_Index) > i2.value(m_Index)) { return 1 * m_Reverse; } return 0; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204150_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * ZeroOneLossFunction.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.monotone.util; /** * Class implementing the zero-one loss function, this is * an incorrect prediction always accounts for one unit loss. * * <p> * This implementation is done as part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class ZeroOneLossFunction implements NominalLossFunction { /** * Returns the zero-one loss function between two class values. * * @param actual the actual class value * @param predicted the predicted class value * @return 1 if the actual and predicted value differ, 0 otherwise */ public final double loss(double actual, double predicted) { return actual == predicted ? 0 : 1; } /** * Returns a string with the name of the loss function. * * @return a string with the name of the loss function */ public String toString() { return "ZeroOneLossFunction"; } }
svn2github/weka
tags/before_fixes_for_FilteredClassifier/weka/classifiers/monotone/util/ZeroOneLossFunction.java
529
/* * ZeroOneLossFunction.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * ZeroOneLossFunction.java *<SUF>*/ package weka.classifiers.monotone.util; /** * Class implementing the zero-one loss function, this is * an incorrect prediction always accounts for one unit loss. * * <p> * This implementation is done as part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class ZeroOneLossFunction implements NominalLossFunction { /** * Returns the zero-one loss function between two class values. * * @param actual the actual class value * @param predicted the predicted class value * @return 1 if the actual and predicted value differ, 0 otherwise */ public final double loss(double actual, double predicted) { return actual == predicted ? 0 : 1; } /** * Returns a string with the name of the loss function. * * @return a string with the name of the loss function */ public String toString() { return "ZeroOneLossFunction"; } }
204152_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * OSDL.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.monotone; import weka.core.Attribute; import weka.core.Instance; /** <!-- globalinfo-start --> * This class is an implementation of the Ordinal Stochastic Dominance Learner.<br/> * Further information regarding the OSDL-algorithm can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -C &lt;REG|WSUM|MAX|MED|RMED&gt; * Sets the classification type to be used. * (Default: MED)</pre> * * <pre> -B * Use the balanced version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -W * Use the weighted version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -S &lt;value of interpolation parameter&gt; * Sets the value of the interpolation parameter (not with -W/T/P/L/U) * (default: 0.5).</pre> * * <pre> -T * Tune the interpolation parameter (not with -W/S) * (default: off)</pre> * * <pre> -L &lt;Lower bound for interpolation parameter&gt; * Lower bound for the interpolation parameter (not with -W/S) * (default: 0)</pre> * * <pre> -U &lt;Upper bound for interpolation parameter&gt; * Upper bound for the interpolation parameter (not with -W/S) * (default: 1)</pre> * * <pre> -P &lt;Number of parts&gt; * Determines the step size for tuning the interpolation * parameter, nl. (U-L)/P (not with -W/S) * (default: 10)</pre> * <!-- options-end --> * * More precisely, this is a simple extension of the OSDLCore class, * so that the OSDLCore class can be used within the WEKA environment. * The problem with OSDLCore is that it implements both * <code> classifyInstance </code> and <code> distributionForInstance </code> * in a non trivial way. * <p> * One can evaluate a model easily with the method <code> evaluateModel </code> * from the <code> Evaluation </code> class. However, for nominal classes * they do the following: they use <code> distributionForInstance </code> * and then pick the class with maximal probability. This procedure * is <b> not </b> valid for a ranking algorithm, since this destroys * the required monotonicity property. * </p> * <p> * This class reimplements <code> distributionForInstance </code> in the * following way: first <code> classifyInstance </code> of * <code> OSDLCore </code> is used and the chosen label then gets * assigned probability one. This ensures that the classification * accuracy is calculated correctly, but possibly some other statistics * are no longer meaningful. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class OSDL extends OSDLCore { /** for serialization */ private static final long serialVersionUID = -4534219825732505381L; /** * Use <code> classifyInstance </code> from <code> OSDLCore </code> and * assign probability one to the chosen label. * The implementation is heavily based on the same method in * the <code> Classifier </code> class. * * @param instance the instance to be classified * @return an array containing a single '1' on the index * that <code> classifyInstance </code> returns. */ public double[] distributionForInstance(Instance instance) { // based on the code from the Classifier class double[] dist = new double[instance.numClasses()]; int classification = 0; switch (instance.classAttribute().type()) { case Attribute.NOMINAL: try { classification = (int) Math.round(classifyInstance(instance)); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } if (Instance.isMissingValue(classification)) { return dist; } dist[classification] = 1.0; return dist; case Attribute.NUMERIC: try { dist[0] = classifyInstance(instance); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } return dist; default: return dist; } } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * OSDL </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new OSDL(), args); } }
svn2github/weka
tags/before_fixes_for_FilteredClassifier/weka/classifiers/monotone/OSDL.java
2,001
/* * OSDL.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * OSDL.java *<SUF>*/ package weka.classifiers.monotone; import weka.core.Attribute; import weka.core.Instance; /** <!-- globalinfo-start --> * This class is an implementation of the Ordinal Stochastic Dominance Learner.<br/> * Further information regarding the OSDL-algorithm can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -C &lt;REG|WSUM|MAX|MED|RMED&gt; * Sets the classification type to be used. * (Default: MED)</pre> * * <pre> -B * Use the balanced version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -W * Use the weighted version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -S &lt;value of interpolation parameter&gt; * Sets the value of the interpolation parameter (not with -W/T/P/L/U) * (default: 0.5).</pre> * * <pre> -T * Tune the interpolation parameter (not with -W/S) * (default: off)</pre> * * <pre> -L &lt;Lower bound for interpolation parameter&gt; * Lower bound for the interpolation parameter (not with -W/S) * (default: 0)</pre> * * <pre> -U &lt;Upper bound for interpolation parameter&gt; * Upper bound for the interpolation parameter (not with -W/S) * (default: 1)</pre> * * <pre> -P &lt;Number of parts&gt; * Determines the step size for tuning the interpolation * parameter, nl. (U-L)/P (not with -W/S) * (default: 10)</pre> * <!-- options-end --> * * More precisely, this is a simple extension of the OSDLCore class, * so that the OSDLCore class can be used within the WEKA environment. * The problem with OSDLCore is that it implements both * <code> classifyInstance </code> and <code> distributionForInstance </code> * in a non trivial way. * <p> * One can evaluate a model easily with the method <code> evaluateModel </code> * from the <code> Evaluation </code> class. However, for nominal classes * they do the following: they use <code> distributionForInstance </code> * and then pick the class with maximal probability. This procedure * is <b> not </b> valid for a ranking algorithm, since this destroys * the required monotonicity property. * </p> * <p> * This class reimplements <code> distributionForInstance </code> in the * following way: first <code> classifyInstance </code> of * <code> OSDLCore </code> is used and the chosen label then gets * assigned probability one. This ensures that the classification * accuracy is calculated correctly, but possibly some other statistics * are no longer meaningful. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class OSDL extends OSDLCore { /** for serialization */ private static final long serialVersionUID = -4534219825732505381L; /** * Use <code> classifyInstance </code> from <code> OSDLCore </code> and * assign probability one to the chosen label. * The implementation is heavily based on the same method in * the <code> Classifier </code> class. * * @param instance the instance to be classified * @return an array containing a single '1' on the index * that <code> classifyInstance </code> returns. */ public double[] distributionForInstance(Instance instance) { // based on the code from the Classifier class double[] dist = new double[instance.numClasses()]; int classification = 0; switch (instance.classAttribute().type()) { case Attribute.NOMINAL: try { classification = (int) Math.round(classifyInstance(instance)); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } if (Instance.isMissingValue(classification)) { return dist; } dist[classification] = 1.0; return dist; case Attribute.NUMERIC: try { dist[0] = classifyInstance(instance); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } return dist; default: return dist; } } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * OSDL </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new OSDL(), args); } }
204153_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MultiDimensionalSort.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import java.util.Arrays; import java.util.Comparator; /** * Class for doing multidimensional sorting, using an array of * <code> Comparator. </code> * The goal is to sort an array topologically. If <code> o1 </code> * and <code> o2 </code> are two objects of the array <code> a, </code> * and for all valid indices <code> i </code> in the array <code> c </code> * if holds that <code> c[i].compare(o1,o2) &lt; 0 </code> then * <code> o1 </code> comes before <code> o2 </code> in the sorted array. * <p> * A typical is the sorting of vectors in an n-dimensional space, * where the ordering is determined by the product ordering. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class MultiDimensionalSort { /** * Sort an array using different comparators. * * @param a the array to be sorted. The sorted array is returned * in the array <code> a </code> itself. * @param c an array holding the different comparators */ public static void multiDimensionalSort (Object[] a, Comparator[] c) { multiDimensionalSort(a, 0, a.length, c); } /** * Sort part of an array using different comparators. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @throws IllegalArgumentException if <code> fromIndex &gt; toIndex </code> */ public static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c) throws IllegalArgumentException { if (fromIndex > toIndex) { throw new IllegalArgumentException ("Illegal range: fromIndex can be at most toIndex"); } multiDimensionalSort(a, fromIndex, toIndex, c, 0); } /** * Do the actual sorting in a recursive way. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @param depth the index of the comparator to use */ private static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c, int depth) { if (depth == c.length) { return; // maximum depth reached } Comparator comp = c[depth]; // comparator to use Arrays.sort(a, fromIndex, toIndex, comp); // sort part of the array // look for breakpoints in the array and sort recursively int mark = fromIndex; for (int i = fromIndex + 1; i < toIndex; i++) { if (comp.compare(a[i - 1], a[i]) != 0) { // a[i] is different from a[i-1], breakpoint detected multiDimensionalSort(a, mark, i, c, depth + 1); mark = i; } } // sort the last part multiDimensionalSort(a, mark, toIndex, c, depth + 1); } }
svn2github/weka
tags/dev-3-5-7/weka/classifiers/misc/monotone/MultiDimensionalSort.java
1,189
/* * MultiDimensionalSort.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MultiDimensionalSort.java *<SUF>*/ package weka.classifiers.misc.monotone; import java.util.Arrays; import java.util.Comparator; /** * Class for doing multidimensional sorting, using an array of * <code> Comparator. </code> * The goal is to sort an array topologically. If <code> o1 </code> * and <code> o2 </code> are two objects of the array <code> a, </code> * and for all valid indices <code> i </code> in the array <code> c </code> * if holds that <code> c[i].compare(o1,o2) &lt; 0 </code> then * <code> o1 </code> comes before <code> o2 </code> in the sorted array. * <p> * A typical is the sorting of vectors in an n-dimensional space, * where the ordering is determined by the product ordering. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class MultiDimensionalSort { /** * Sort an array using different comparators. * * @param a the array to be sorted. The sorted array is returned * in the array <code> a </code> itself. * @param c an array holding the different comparators */ public static void multiDimensionalSort (Object[] a, Comparator[] c) { multiDimensionalSort(a, 0, a.length, c); } /** * Sort part of an array using different comparators. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @throws IllegalArgumentException if <code> fromIndex &gt; toIndex </code> */ public static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c) throws IllegalArgumentException { if (fromIndex > toIndex) { throw new IllegalArgumentException ("Illegal range: fromIndex can be at most toIndex"); } multiDimensionalSort(a, fromIndex, toIndex, c, 0); } /** * Do the actual sorting in a recursive way. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @param depth the index of the comparator to use */ private static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c, int depth) { if (depth == c.length) { return; // maximum depth reached } Comparator comp = c[depth]; // comparator to use Arrays.sort(a, fromIndex, toIndex, comp); // sort part of the array // look for breakpoints in the array and sort recursively int mark = fromIndex; for (int i = fromIndex + 1; i < toIndex; i++) { if (comp.compare(a[i - 1], a[i]) != 0) { // a[i] is different from a[i-1], breakpoint detected multiDimensionalSort(a, mark, i, c, depth + 1); mark = i; } } // sort the last part multiDimensionalSort(a, mark, toIndex, c, depth + 1); } }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Service voor BrpPersoonslijst. */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst.<SUF>*/ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst<SUF>*/ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst<SUF>*/ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst<SUF>*/ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst<SUF>*/ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst<SUF>*/ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst<SUF>*/ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst<SUF>*/ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op<SUF>*/ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst<SUF>*/ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op<SUF>*/ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op<SUF>*/ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op<SUF>*/ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op<SUF>*/ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204154_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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
EdwinSmink/OperatieBRP
02 Software/01 Broncode/operatiebrp-code-145.3/migratie/migr-synchronisatie-dal/src/main/java/nl/bzk/migratiebrp/synchronisatie/dal/service/BrpPersoonslijstService.java
2,120
/** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *historische* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */
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 https://github.com/MinBZK/operatieBRP. */ package nl.bzk.migratiebrp.synchronisatie.dal.service; import java.util.List; import nl.bzk.algemeenbrp.dal.domein.brp.entity.Lo3Bericht; import nl.bzk.migratiebrp.conversie.model.brp.BrpPersoonslijst; /** * Service voor BrpPersoonslijst. */ public interface BrpPersoonslijstService { /** * Slaat een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param lo3Bericht lo3 bericht waarop de persoonlijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Lo3Bericht lo3Bericht); /** * Overschrijft een persoonslijst op in de BRP database. * @param brpPersoonslijst De persoonslijst in het BRP-migratiemodelformaat * @param teVervangenPersoonslijstId het id van de te vervangen persoonslijst * @param lo3Bericht lo3 bericht waarop de persoonslijst is gebaseerd * @return een {@link nl.bzk.migratiebrp.synchronisatie.dal.service.PersoonslijstPersisteerResultaat} * @throws TeLeverenAdministratieveHandelingenAanwezigException als er nog te leveren administratieve handelingen aanwezig zijn voor de te vervangen * persoonslijst */ PersoonslijstPersisteerResultaat persisteerPersoonslijst(BrpPersoonslijst brpPersoonslijst, Long teVervangenPersoonslijstId, Lo3Bericht lo3Bericht) throws TeLeverenAdministratieveHandelingenAanwezigException; /** * Vraag een persoonslijst op uit de BRP database voor het gegeven admnistratienummer, deze * persoon moet bestaan anders treedt er een fout op. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijst(String administratienummer); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan anders treedt er een fout op. * @param techischesleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutel(Long techischesleutel); /** * Vraag een persoonslijst op uit de BRP database voor de meegegeven technische sleutel, deze * persoon moet bestaan en niet foutief opgeschort zijn anders treedt er een fout op. * @param technischeSleutel de technische sleutel van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat. * @throws IllegalStateException wanneer geen persoon gevonden is */ BrpPersoonslijst bevraagPersoonslijstOpTechnischeSleutelFoutiefOpgeschortUitsluiten(Long technischeSleutel); /** * Zoek een persoonslijst op in de BRP database voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummer(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *actuele* administratienummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * @return syncparameters */ SyncParameters getSyncParameters(); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven administratienummer. * @param administratienummer het *historische* administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersonenOpHistorischAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek een persoonslijst op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *actuele* burgerservicenummer van de op te zoeken persoon * @return De persoonslijst in het BRP-migratiemodelformaat of null als niet gevonden. */ BrpPersoonslijst zoekPersoonOpBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven burgerservicenummer. * @param burgerservicenummer het *historische* burgerservicenummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischBsnFoutiefOpgeschortUitsluiten(String burgerservicenummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *actuele* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven volgende administratienummer. * @param administratienummer het *historische* volgende administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpHistorischVolgendeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op in de BRP database m.u.v. foutief opgeschorte (reden 'F' en 'W') * voor het meegegeven vorige administratienummer. * @param administratienummer het *actuele* vorige administratienummer van de op te zoeken persoon * @return De persoonslijsten in het BRP-migratiemodelformaat (lege lijst als niets gevonden) */ List<BrpPersoonslijst> zoekPersoonOpVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); /** * Zoek persoonslijsten op<SUF>*/ List<BrpPersoonslijst> zoekPersoonOpHistorischVorigeAnummerFoutiefOpgeschortUitsluiten(String administratienummer); }
204155_0
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
//============================= code om Docent te testen =============================
line_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code<SUF> /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204155_2
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
//============================= code om Student te testen =============================
line_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code<SUF> /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204155_6
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
/* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */
block_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave<SUF>*/ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204155_7
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
/* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */
block_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave<SUF>*/ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204155_8
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
// code voor opgave 5
line_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor<SUF> // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204155_9
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
// Plaats deze code in de klasse waar je 'm wilt gebruiken.
line_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze<SUF> // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204155_11
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
// resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden.
line_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent<SUF> // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204155_12
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van deze methode direct weer vergeten, alleen gebruiken :-) // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
frepds/JavaToetsHulp
src/ToetsHulp/Praktijk/April7_2021/StartSituatie/Main.java
1,417
// Inhoud van deze methode direct weer vergeten, alleen gebruiken :-)
line_comment
nl
package ToetsHulp.Praktijk.April7_2021.StartSituatie; import java.awt.*; public class Main { //============================= code om Docent te testen ============================= /* // code om opgave 1(b) te testen // public static void main(String[] args) { Docent x = new Docent("Jan"); System.out.println( x ); // Jan (Docent) 100 :-P } */ //============================= code om Student te testen ============================= /* // code om opgave 1(c) te testen // public static void main(String[] args) { Student st = new Student("Anna", "s1234"); System.out.println( st ); // Anna (s1234) 50 :-| st = new Student("Adam", "s0012", 95); System.out.println( st ); // Adam (s0012) 95 :-D } */ //============================= code om Klas te testen ============================= /* // code om opgave 2(a) te testen // public static void main(String[] args) { Klas klas = new Klas( "2W" ); System.out.println( klas.getNaam() ); // klas??? klas.setNaam( "Goede naam voor klas!" ); System.out.println( klas.getNaam() ); // Goede naam voor klas! klas = new Klas( "ICTm2W" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "###" ); System.out.println( klas.getNaam() ); // ICTm2W klas.setNaam( "topklas" ); System.out.println( klas.getNaam() ); // topklas } */ /* // code om opgave 2(b) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Eva", "s1234", 70 ); Docent jan = new Docent("Jan"); System.out.println( klas.getDocent() ); // null klas.voegToe( jan ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P // deze toevoeging mag niet, er is al een Docent aanwezig: klas.voegToe( new Docent("Josien") ); System.out.println( klas.getDocent() ); // Jan (Docent) 100 :-P klas.print(); // === Klas: ICTm2W === // * Eva (s1234) 70 :-) // * Jan (Docent) 100 :-P // } */ /* // code om opgave 2(c) te testen // public static void main(String[] args) { Klas klas = new Klas( "ICTm2W" ); klas.voegToe( "Rik", "s1657", 80 ); Docent jan = new Docent("Jan"); // begint met blij = 100. klas.voegToe( jan ); klas.voegToe( "Ada", "s1131", 59 ); klas.maakBlij( -50 ); klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 9 :-( // boolean res = klas.maakBlij( "Ada", 90 ); System.out.println( res ); // true res = klas.maakBlij( "Anoniempje", -55 ); System.out.println( res ); // false klas.print(); // === Klas: ICTm2W === // * Rik (s1657) 30 :-| // * Jan (Docent) 50 :-P // * Ada (s1131) 99 :-D // } */ //===================================================================== // code voor opgave 5 // // Plaats deze code in de klasse waar je 'm wilt gebruiken. // // aanroep: drawStringRotated(g2d, "hoi", 100, 200, 45); // resultaat: tekent "hoi" op plek x=100, y=200 met een hoek van 45 graden. // // Inhoud van<SUF> // // Gebaseerd op: stackoverflow.com/a/26705815 // public void drawStringRotated(Graphics g, String txt, double x, double y, int angle) { Graphics2D g2d = (Graphics2D) g; g2d.translate((float) x, (float) y); g2d.rotate(Math.toRadians(angle)); g2d.drawString(txt, 0, 0); g2d.rotate(-Math.toRadians(angle)); g2d.translate(-(float) x, -(float) y); } }
204156_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * Coordinates.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.Instance; import java.io.Serializable; /** * This is a simple implementation of the data space. The <code> * Coordinates </code> holds the internal weka value of an instance, * but <i> with the class removed </i>. The class is immutable, * and works best when all attibutes are nominal (ordinal), although * it will not give an error when working with numeric attributes. * In the latter case, performance will degrade because of the way * in which the hashcode is calculated. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class Coordinates implements Serializable { /** for serialization */ private static final long serialVersionUID = 2319016195345994738L; /** * The internal weka values of the attributes of the instance, minus * the class attribute. */ private int[] m_coord; /** * The hashcode of this object. Calculated during construction. */ private int m_hashCode; /** * Create the <code> Coordinates </code> for the given instance. * * @param instance the <code> Instance </code> on which the <code> * Coordinates </code> will be based */ public Coordinates(Instance instance) { double[] values = instance.toDoubleArray(); int classIndex = instance.classIndex(); if (classIndex == -1) { m_coord = new int[values.length]; } else { m_coord = new int[values.length - 1]; } m_hashCode = 0; int factor=1; for (int i = 0,j = 0;i < values.length; i++) { if (i != classIndex) { m_coord[j] = (int) values[i]; if (i > 0 && i - 1 != classIndex) { factor *= instance.attribute(i-1).numValues(); } else if (i - 1 == classIndex && classIndex != -1 && classIndex != 0) { factor *= instance.attribute(i - 2).numValues(); } m_hashCode += (m_coord[j])*factor; j++; } } } /** * Get the value of the attribute with index <code> index, </code> * ignoring the class attribute. Indices are counted starting from * 0. * * @param index the index of the requested attribute * @return the value of this attribute, in internal floating point format. */ public double getValue(int index) { return m_coord[index]; } /** * Get the values of the coordinates. * * @param values array serving as output, and the first * <code> dimension() </code> values are filled in. */ public void getValues(double[] values) { // XXX this is a rather strange method, maybe it should be changed // into one that returns (using System.arraycopy) the requested values for (int i = 0; i < m_coord.length; i++) { values[i] = m_coord[i]; } } /** * Indicates if the object <code> o </code> equals <code> this. </code> * * @param o the reference object with which to compare * @return <code> true </code> if <code> o </code> equals <code> * this, </code> <code> false </code> otherwise */ public boolean equals(Object o) { if (! (o instanceof Coordinates) ) { return false; } Coordinates cc = (Coordinates) o; // if the length or hashCodes differ, the objects are certainly not equal if (m_coord.length != cc.m_coord.length || m_hashCode != cc.m_hashCode) { return false; } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] != cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is strictly smaller than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i) </code> and that there is * at least one index i such that * <code> this.getValue(i) &ne; cc.getValue(i) </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is strictly * smaller than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean strictlySmaller(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } // Skip all equal values int i = 0; while(i < m_coord.length && cc.m_coord[i] == m_coord[i]) { i++; } if (i == m_coord.length) { return false; // equality ! } for (; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is smaller or equal than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i). </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is * smaller or equal than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean smallerOrEqual(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Gets the hash code value for this object. * * @return the requested hash code */ public int hashCode() { return m_hashCode; } /** * Gets the dimension of the data space, this is the number of attributes, * exluding the class attribute. * * @return the dimension of the data space this object resides in */ public int dimension() { return m_coord.length; } /** * Get a string representation of this object. * * @return the requested string representation */ public String toString() { String s = "("; for (int i = 0; i < m_coord.length - 1; i++) { s += m_coord[i] + ","; } return s + m_coord[m_coord.length - 1] + ")"; } }
svn2github/weka
tags/dev-3-5-6/weka/classifiers/misc/monotone/Coordinates.java
2,179
/* * Coordinates.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * Coordinates.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.Instance; import java.io.Serializable; /** * This is a simple implementation of the data space. The <code> * Coordinates </code> holds the internal weka value of an instance, * but <i> with the class removed </i>. The class is immutable, * and works best when all attibutes are nominal (ordinal), although * it will not give an error when working with numeric attributes. * In the latter case, performance will degrade because of the way * in which the hashcode is calculated. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class Coordinates implements Serializable { /** for serialization */ private static final long serialVersionUID = 2319016195345994738L; /** * The internal weka values of the attributes of the instance, minus * the class attribute. */ private int[] m_coord; /** * The hashcode of this object. Calculated during construction. */ private int m_hashCode; /** * Create the <code> Coordinates </code> for the given instance. * * @param instance the <code> Instance </code> on which the <code> * Coordinates </code> will be based */ public Coordinates(Instance instance) { double[] values = instance.toDoubleArray(); int classIndex = instance.classIndex(); if (classIndex == -1) { m_coord = new int[values.length]; } else { m_coord = new int[values.length - 1]; } m_hashCode = 0; int factor=1; for (int i = 0,j = 0;i < values.length; i++) { if (i != classIndex) { m_coord[j] = (int) values[i]; if (i > 0 && i - 1 != classIndex) { factor *= instance.attribute(i-1).numValues(); } else if (i - 1 == classIndex && classIndex != -1 && classIndex != 0) { factor *= instance.attribute(i - 2).numValues(); } m_hashCode += (m_coord[j])*factor; j++; } } } /** * Get the value of the attribute with index <code> index, </code> * ignoring the class attribute. Indices are counted starting from * 0. * * @param index the index of the requested attribute * @return the value of this attribute, in internal floating point format. */ public double getValue(int index) { return m_coord[index]; } /** * Get the values of the coordinates. * * @param values array serving as output, and the first * <code> dimension() </code> values are filled in. */ public void getValues(double[] values) { // XXX this is a rather strange method, maybe it should be changed // into one that returns (using System.arraycopy) the requested values for (int i = 0; i < m_coord.length; i++) { values[i] = m_coord[i]; } } /** * Indicates if the object <code> o </code> equals <code> this. </code> * * @param o the reference object with which to compare * @return <code> true </code> if <code> o </code> equals <code> * this, </code> <code> false </code> otherwise */ public boolean equals(Object o) { if (! (o instanceof Coordinates) ) { return false; } Coordinates cc = (Coordinates) o; // if the length or hashCodes differ, the objects are certainly not equal if (m_coord.length != cc.m_coord.length || m_hashCode != cc.m_hashCode) { return false; } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] != cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is strictly smaller than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i) </code> and that there is * at least one index i such that * <code> this.getValue(i) &ne; cc.getValue(i) </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is strictly * smaller than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean strictlySmaller(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } // Skip all equal values int i = 0; while(i < m_coord.length && cc.m_coord[i] == m_coord[i]) { i++; } if (i == m_coord.length) { return false; // equality ! } for (; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is smaller or equal than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i). </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is * smaller or equal than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean smallerOrEqual(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Gets the hash code value for this object. * * @return the requested hash code */ public int hashCode() { return m_hashCode; } /** * Gets the dimension of the data space, this is the number of attributes, * exluding the class attribute. * * @return the dimension of the data space this object resides in */ public int dimension() { return m_coord.length; } /** * Get a string representation of this object. * * @return the requested string representation */ public String toString() { String s = "("; for (int i = 0; i < m_coord.length - 1; i++) { s += m_coord[i] + ","; } return s + m_coord[m_coord.length - 1] + ")"; } }
204157_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MultiDimensionalSort.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Arrays; import java.util.Comparator; /** * Class for doing multidimensional sorting, using an array of * <code> Comparator. </code> * The goal is to sort an array topologically. If <code> o1 </code> * and <code> o2 </code> are two objects of the array <code> a, </code> * and for all valid indices <code> i </code> in the array <code> c </code> * if holds that <code> c[i].compare(o1,o2) &lt; 0 </code> then * <code> o1 </code> comes before <code> o2 </code> in the sorted array. * <p> * A typical is the sorting of vectors in an n-dimensional space, * where the ordering is determined by the product ordering. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class MultiDimensionalSort implements RevisionHandler { /** * Sort an array using different comparators. * * @param a the array to be sorted. The sorted array is returned * in the array <code> a </code> itself. * @param c an array holding the different comparators */ public static void multiDimensionalSort (Object[] a, Comparator[] c) { multiDimensionalSort(a, 0, a.length, c); } /** * Sort part of an array using different comparators. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @throws IllegalArgumentException if <code> fromIndex &gt; toIndex </code> */ public static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c) throws IllegalArgumentException { if (fromIndex > toIndex) { throw new IllegalArgumentException ("Illegal range: fromIndex can be at most toIndex"); } multiDimensionalSort(a, fromIndex, toIndex, c, 0); } /** * Do the actual sorting in a recursive way. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @param depth the index of the comparator to use */ private static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c, int depth) { if (depth == c.length) { return; // maximum depth reached } Comparator comp = c[depth]; // comparator to use Arrays.sort(a, fromIndex, toIndex, comp); // sort part of the array // look for breakpoints in the array and sort recursively int mark = fromIndex; for (int i = fromIndex + 1; i < toIndex; i++) { if (comp.compare(a[i - 1], a[i]) != 0) { // a[i] is different from a[i-1], breakpoint detected multiDimensionalSort(a, mark, i, c, depth + 1); mark = i; } } // sort the last part multiDimensionalSort(a, mark, toIndex, c, depth + 1); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/MultiDimensionalSort.java
1,271
/* * MultiDimensionalSort.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MultiDimensionalSort.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Arrays; import java.util.Comparator; /** * Class for doing multidimensional sorting, using an array of * <code> Comparator. </code> * The goal is to sort an array topologically. If <code> o1 </code> * and <code> o2 </code> are two objects of the array <code> a, </code> * and for all valid indices <code> i </code> in the array <code> c </code> * if holds that <code> c[i].compare(o1,o2) &lt; 0 </code> then * <code> o1 </code> comes before <code> o2 </code> in the sorted array. * <p> * A typical is the sorting of vectors in an n-dimensional space, * where the ordering is determined by the product ordering. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class MultiDimensionalSort implements RevisionHandler { /** * Sort an array using different comparators. * * @param a the array to be sorted. The sorted array is returned * in the array <code> a </code> itself. * @param c an array holding the different comparators */ public static void multiDimensionalSort (Object[] a, Comparator[] c) { multiDimensionalSort(a, 0, a.length, c); } /** * Sort part of an array using different comparators. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @throws IllegalArgumentException if <code> fromIndex &gt; toIndex </code> */ public static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c) throws IllegalArgumentException { if (fromIndex > toIndex) { throw new IllegalArgumentException ("Illegal range: fromIndex can be at most toIndex"); } multiDimensionalSort(a, fromIndex, toIndex, c, 0); } /** * Do the actual sorting in a recursive way. * * @param a the array to be sorted, the indicated part of the array will * be replaced by the sorted elements * @param fromIndex index of the first element to be sorted (inclusive) * @param toIndex index of the last element to be sorted (exclusive) * @param c array holding the different comparators * @param depth the index of the comparator to use */ private static void multiDimensionalSort(Object[] a, int fromIndex, int toIndex, Comparator[] c, int depth) { if (depth == c.length) { return; // maximum depth reached } Comparator comp = c[depth]; // comparator to use Arrays.sort(a, fromIndex, toIndex, comp); // sort part of the array // look for breakpoints in the array and sort recursively int mark = fromIndex; for (int i = fromIndex + 1; i < toIndex; i++) { if (comp.compare(a[i - 1], a[i]) != 0) { // a[i] is different from a[i-1], breakpoint detected multiDimensionalSort(a, mark, i, c, depth + 1); mark = i; } } // sort the last part multiDimensionalSort(a, mark, toIndex, c, depth + 1); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204158_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BooleanBitMatrix.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; /** * This class is a very simple implementation of a BitMatrix. * In fact, it uses a two-dimensional array of booleans, so it is * not very space efficient. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class BooleanBitMatrix implements BitMatrix { /** The two-dimensional array of booleans. */ private boolean[][] m_bits; /** The number of rows. */ private int m_rows; /** The number of columns */ private int m_columns; /** * Construct a <code> BitMatrix </code> with the indicated * number of rows and columns. All bits are initially * set to <code> false </code>. * * @param rows the number of rows * @param columns the number of column */ public BooleanBitMatrix(int rows, int columns) { m_bits = new boolean[rows][columns]; m_rows = rows; m_columns = columns; } /** * A copy constructor. Constructs a copy of the given * <code> BitMatrix </code>. * * @param bm the <code> BitMatrix </code> to be copied. */ public BooleanBitMatrix(BooleanBitMatrix bm) { this(bm.m_rows, bm.m_columns); for (int i = 0; i < m_rows; i++) { System.arraycopy(bm.m_bits[i], 0, m_bits[i], 0, m_columns); } } /** * Returns the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column) { return m_bits[row][column]; } /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool) { m_bits[row][column] = bool; return bool; } /** * Sets the bit at the specified position to <code> true. </code> * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column) { return !get(row, column) && set(row, column, true); } /** * Clears the bit at the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column) { return get(row, column) && !set(row, column, false); } /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows() { return m_rows; } /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns() { return m_columns; } /** * Counts the number of bits that are set in the specified column. * * @param column index of the column of which the bits are to be counted * @return the number of bits that are set in the requested column */ public int columnCount(int column) { int count = 0; for (int i = 0; i < m_rows; i++) { count += (m_bits[i][column] ? 1 : 0); } return count; } /** * Counts the number of bits that are set in the specified row. * * @param row index of the row of which the bits are to be counted * @return the number of bits that are set in the requested row */ public int rowCount(int row) { int count = 0; for (int i = 0; i < m_columns; i++) { count += (m_bits[row][i] ? 1 : 0); } return count; } /** * Swap the rows and the columns of the <code> BooleanBitMatrix. </code> * * @return the transposed matrix */ public BooleanBitMatrix transpose() { BooleanBitMatrix transposed = new BooleanBitMatrix(m_columns, m_rows); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { transposed.set(j, i, get(i, j)); } } return transposed; } /** * Swaps the rows and the columns of the <code> BooleanBitMatrix, </code> * without creating a new object. * The <code> BooleanBitMatrix </code> must be a square matrix. * * @throws IllegalArgumentException if the <code> BooleanBitMatrix </code> * is not square. */ public void transposeInPlace() throws IllegalArgumentException { if (m_rows != m_columns) { throw new IllegalArgumentException ("The BooleanBitMatrix is not square"); } for (int i = 0; i < m_rows; i++) { for (int j = i + 1; j < m_columns; j++) { swap(i, j, j, i); } } } /** * Swap the elements with coordinates <code> (r1,c1) </code> and * <code> (r2,c2). </code> * * @param r1 index of first row * @param c1 index of first column * @param r2 index of second row * @param c2 index of second column */ private void swap(int r1, int c1, int r2, int c2) { boolean tmp = get(r1, c1); set(r1, c1, get(r2, c2)); set(r2, c2, tmp); } /** * Create a compact string representation of the matrix. * * @return a <code> String </code> representing the matrix, * row by row. */ public String toString() { StringBuffer sb = new StringBuffer(m_rows * (m_columns + 1) ); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { sb.append(get(i, j) ? 1 : 0); } sb.append("\n"); } return sb.toString(); } }
svn2github/weka
tags/dev-3-5-6/weka/classifiers/misc/monotone/BooleanBitMatrix.java
2,106
/* * BooleanBitMatrix.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BooleanBitMatrix.java *<SUF>*/ package weka.classifiers.misc.monotone; /** * This class is a very simple implementation of a BitMatrix. * In fact, it uses a two-dimensional array of booleans, so it is * not very space efficient. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class BooleanBitMatrix implements BitMatrix { /** The two-dimensional array of booleans. */ private boolean[][] m_bits; /** The number of rows. */ private int m_rows; /** The number of columns */ private int m_columns; /** * Construct a <code> BitMatrix </code> with the indicated * number of rows and columns. All bits are initially * set to <code> false </code>. * * @param rows the number of rows * @param columns the number of column */ public BooleanBitMatrix(int rows, int columns) { m_bits = new boolean[rows][columns]; m_rows = rows; m_columns = columns; } /** * A copy constructor. Constructs a copy of the given * <code> BitMatrix </code>. * * @param bm the <code> BitMatrix </code> to be copied. */ public BooleanBitMatrix(BooleanBitMatrix bm) { this(bm.m_rows, bm.m_columns); for (int i = 0; i < m_rows; i++) { System.arraycopy(bm.m_bits[i], 0, m_bits[i], 0, m_columns); } } /** * Returns the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column) { return m_bits[row][column]; } /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool) { m_bits[row][column] = bool; return bool; } /** * Sets the bit at the specified position to <code> true. </code> * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column) { return !get(row, column) && set(row, column, true); } /** * Clears the bit at the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column) { return get(row, column) && !set(row, column, false); } /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows() { return m_rows; } /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns() { return m_columns; } /** * Counts the number of bits that are set in the specified column. * * @param column index of the column of which the bits are to be counted * @return the number of bits that are set in the requested column */ public int columnCount(int column) { int count = 0; for (int i = 0; i < m_rows; i++) { count += (m_bits[i][column] ? 1 : 0); } return count; } /** * Counts the number of bits that are set in the specified row. * * @param row index of the row of which the bits are to be counted * @return the number of bits that are set in the requested row */ public int rowCount(int row) { int count = 0; for (int i = 0; i < m_columns; i++) { count += (m_bits[row][i] ? 1 : 0); } return count; } /** * Swap the rows and the columns of the <code> BooleanBitMatrix. </code> * * @return the transposed matrix */ public BooleanBitMatrix transpose() { BooleanBitMatrix transposed = new BooleanBitMatrix(m_columns, m_rows); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { transposed.set(j, i, get(i, j)); } } return transposed; } /** * Swaps the rows and the columns of the <code> BooleanBitMatrix, </code> * without creating a new object. * The <code> BooleanBitMatrix </code> must be a square matrix. * * @throws IllegalArgumentException if the <code> BooleanBitMatrix </code> * is not square. */ public void transposeInPlace() throws IllegalArgumentException { if (m_rows != m_columns) { throw new IllegalArgumentException ("The BooleanBitMatrix is not square"); } for (int i = 0; i < m_rows; i++) { for (int j = i + 1; j < m_columns; j++) { swap(i, j, j, i); } } } /** * Swap the elements with coordinates <code> (r1,c1) </code> and * <code> (r2,c2). </code> * * @param r1 index of first row * @param c1 index of first column * @param r2 index of second row * @param c2 index of second column */ private void swap(int r1, int c1, int r2, int c2) { boolean tmp = get(r1, c1); set(r1, c1, get(r2, c2)); set(r2, c2, tmp); } /** * Create a compact string representation of the matrix. * * @return a <code> String </code> representing the matrix, * row by row. */ public String toString() { StringBuffer sb = new StringBuffer(m_rows * (m_columns + 1) ); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { sb.append(get(i, j) ? 1 : 0); } sb.append("\n"); } return sb.toString(); } }
204159_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * Coordinates.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.io.Serializable; /** * This is a simple implementation of the data space. The <code> * Coordinates </code> holds the internal weka value of an instance, * but <i> with the class removed </i>. The class is immutable, * and works best when all attibutes are nominal (ordinal), although * it will not give an error when working with numeric attributes. * In the latter case, performance will degrade because of the way * in which the hashcode is calculated. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class Coordinates implements Serializable, RevisionHandler { /** for serialization */ private static final long serialVersionUID = 2319016195345994738L; /** * The internal weka values of the attributes of the instance, minus * the class attribute. */ private int[] m_coord; /** * The hashcode of this object. Calculated during construction. */ private int m_hashCode; /** * Create the <code> Coordinates </code> for the given instance. * * @param instance the <code> Instance </code> on which the <code> * Coordinates </code> will be based */ public Coordinates(Instance instance) { double[] values = instance.toDoubleArray(); int classIndex = instance.classIndex(); if (classIndex == -1) { m_coord = new int[values.length]; } else { m_coord = new int[values.length - 1]; } m_hashCode = 0; int factor=1; for (int i = 0,j = 0;i < values.length; i++) { if (i != classIndex) { m_coord[j] = (int) values[i]; if (i > 0 && i - 1 != classIndex) { factor *= instance.attribute(i-1).numValues(); } else if (i - 1 == classIndex && classIndex != -1 && classIndex != 0) { factor *= instance.attribute(i - 2).numValues(); } m_hashCode += (m_coord[j])*factor; j++; } } } /** * Get the value of the attribute with index <code> index, </code> * ignoring the class attribute. Indices are counted starting from * 0. * * @param index the index of the requested attribute * @return the value of this attribute, in internal floating point format. */ public double getValue(int index) { return m_coord[index]; } /** * Get the values of the coordinates. * * @param values array serving as output, and the first * <code> dimension() </code> values are filled in. */ public void getValues(double[] values) { // XXX this is a rather strange method, maybe it should be changed // into one that returns (using System.arraycopy) the requested values for (int i = 0; i < m_coord.length; i++) { values[i] = m_coord[i]; } } /** * Indicates if the object <code> o </code> equals <code> this. </code> * * @param o the reference object with which to compare * @return <code> true </code> if <code> o </code> equals <code> * this, </code> <code> false </code> otherwise */ public boolean equals(Object o) { if (! (o instanceof Coordinates) ) { return false; } Coordinates cc = (Coordinates) o; // if the length or hashCodes differ, the objects are certainly not equal if (m_coord.length != cc.m_coord.length || m_hashCode != cc.m_hashCode) { return false; } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] != cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is strictly smaller than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i) </code> and that there is * at least one index i such that * <code> this.getValue(i) &ne; cc.getValue(i) </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is strictly * smaller than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean strictlySmaller(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } // Skip all equal values int i = 0; while(i < m_coord.length && cc.m_coord[i] == m_coord[i]) { i++; } if (i == m_coord.length) { return false; // equality ! } for (; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is smaller or equal than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i). </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is * smaller or equal than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean smallerOrEqual(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Gets the hash code value for this object. * * @return the requested hash code */ public int hashCode() { return m_hashCode; } /** * Gets the dimension of the data space, this is the number of attributes, * exluding the class attribute. * * @return the dimension of the data space this object resides in */ public int dimension() { return m_coord.length; } /** * Get a string representation of this object. * * @return the requested string representation */ public String toString() { String s = "("; for (int i = 0; i < m_coord.length - 1; i++) { s += m_coord[i] + ","; } return s + m_coord[m_coord.length - 1] + ")"; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/Coordinates.java
2,259
/* * Coordinates.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * Coordinates.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.io.Serializable; /** * This is a simple implementation of the data space. The <code> * Coordinates </code> holds the internal weka value of an instance, * but <i> with the class removed </i>. The class is immutable, * and works best when all attibutes are nominal (ordinal), although * it will not give an error when working with numeric attributes. * In the latter case, performance will degrade because of the way * in which the hashcode is calculated. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class Coordinates implements Serializable, RevisionHandler { /** for serialization */ private static final long serialVersionUID = 2319016195345994738L; /** * The internal weka values of the attributes of the instance, minus * the class attribute. */ private int[] m_coord; /** * The hashcode of this object. Calculated during construction. */ private int m_hashCode; /** * Create the <code> Coordinates </code> for the given instance. * * @param instance the <code> Instance </code> on which the <code> * Coordinates </code> will be based */ public Coordinates(Instance instance) { double[] values = instance.toDoubleArray(); int classIndex = instance.classIndex(); if (classIndex == -1) { m_coord = new int[values.length]; } else { m_coord = new int[values.length - 1]; } m_hashCode = 0; int factor=1; for (int i = 0,j = 0;i < values.length; i++) { if (i != classIndex) { m_coord[j] = (int) values[i]; if (i > 0 && i - 1 != classIndex) { factor *= instance.attribute(i-1).numValues(); } else if (i - 1 == classIndex && classIndex != -1 && classIndex != 0) { factor *= instance.attribute(i - 2).numValues(); } m_hashCode += (m_coord[j])*factor; j++; } } } /** * Get the value of the attribute with index <code> index, </code> * ignoring the class attribute. Indices are counted starting from * 0. * * @param index the index of the requested attribute * @return the value of this attribute, in internal floating point format. */ public double getValue(int index) { return m_coord[index]; } /** * Get the values of the coordinates. * * @param values array serving as output, and the first * <code> dimension() </code> values are filled in. */ public void getValues(double[] values) { // XXX this is a rather strange method, maybe it should be changed // into one that returns (using System.arraycopy) the requested values for (int i = 0; i < m_coord.length; i++) { values[i] = m_coord[i]; } } /** * Indicates if the object <code> o </code> equals <code> this. </code> * * @param o the reference object with which to compare * @return <code> true </code> if <code> o </code> equals <code> * this, </code> <code> false </code> otherwise */ public boolean equals(Object o) { if (! (o instanceof Coordinates) ) { return false; } Coordinates cc = (Coordinates) o; // if the length or hashCodes differ, the objects are certainly not equal if (m_coord.length != cc.m_coord.length || m_hashCode != cc.m_hashCode) { return false; } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] != cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is strictly smaller than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i) </code> and that there is * at least one index i such that * <code> this.getValue(i) &ne; cc.getValue(i) </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is strictly * smaller than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean strictlySmaller(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } // Skip all equal values int i = 0; while(i < m_coord.length && cc.m_coord[i] == m_coord[i]) { i++; } if (i == m_coord.length) { return false; // equality ! } for (; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is smaller or equal than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i). </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is * smaller or equal than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean smallerOrEqual(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Gets the hash code value for this object. * * @return the requested hash code */ public int hashCode() { return m_hashCode; } /** * Gets the dimension of the data space, this is the number of attributes, * exluding the class attribute. * * @return the dimension of the data space this object resides in */ public int dimension() { return m_coord.length; } /** * Get a string representation of this object. * * @return the requested string representation */ public String toString() { String s = "("; for (int i = 0; i < m_coord.length - 1; i++) { s += m_coord[i] + ","; } return s + m_coord[m_coord.length - 1] + ")"; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204160_1
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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, see <http://www.gnu.org/licenses/>. */ /* * OSDL.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc; import weka.classifiers.misc.monotone.OSDLCore; import weka.core.Attribute; import weka.core.Instance; import weka.core.RevisionUtils; import weka.core.Utils; /** <!-- globalinfo-start --> * This class is an implementation of the Ordinal Stochastic Dominance Learner.<br/> * Further information regarding the OSDL-algorithm can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -C &lt;REG|WSUM|MAX|MED|RMED&gt; * Sets the classification type to be used. * (Default: MED)</pre> * * <pre> -B * Use the balanced version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -W * Use the weighted version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -S &lt;value of interpolation parameter&gt; * Sets the value of the interpolation parameter (not with -W/T/P/L/U) * (default: 0.5).</pre> * * <pre> -T * Tune the interpolation parameter (not with -W/S) * (default: off)</pre> * * <pre> -L &lt;Lower bound for interpolation parameter&gt; * Lower bound for the interpolation parameter (not with -W/S) * (default: 0)</pre> * * <pre> -U &lt;Upper bound for interpolation parameter&gt; * Upper bound for the interpolation parameter (not with -W/S) * (default: 1)</pre> * * <pre> -P &lt;Number of parts&gt; * Determines the step size for tuning the interpolation * parameter, nl. (U-L)/P (not with -W/S) * (default: 10)</pre> * <!-- options-end --> * * More precisely, this is a simple extension of the OSDLCore class, * so that the OSDLCore class can be used within the WEKA environment. * The problem with OSDLCore is that it implements both * <code> classifyInstance </code> and <code> distributionForInstance </code> * in a non trivial way. * <p> * One can evaluate a model easily with the method <code> evaluateModel </code> * from the <code> Evaluation </code> class. However, for nominal classes * they do the following: they use <code> distributionForInstance </code> * and then pick the class with maximal probability. This procedure * is <b> not </b> valid for a ranking algorithm, since this destroys * the required monotonicity property. * </p> * <p> * This class reimplements <code> distributionForInstance </code> in the * following way: first <code> classifyInstance </code> of * <code> OSDLCore </code> is used and the chosen label then gets * assigned probability one. This ensures that the classification * accuracy is calculated correctly, but possibly some other statistics * are no longer meaningful. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public class OSDL extends OSDLCore { /** for serialization */ private static final long serialVersionUID = -4534219825732505381L; /** * Use <code> classifyInstance </code> from <code> OSDLCore </code> and * assign probability one to the chosen label. * The implementation is heavily based on the same method in * the <code> Classifier </code> class. * * @param instance the instance to be classified * @return an array containing a single '1' on the index * that <code> classifyInstance </code> returns. */ public double[] distributionForInstance(Instance instance) { // based on the code from the Classifier class double[] dist = new double[instance.numClasses()]; int classification = 0; switch (instance.classAttribute().type()) { case Attribute.NOMINAL: try { classification = (int) Math.round(classifyInstance(instance)); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } if (Utils.isMissingValue(classification)) { return dist; } dist[classification] = 1.0; return dist; case Attribute.NUMERIC: try { dist[0] = classifyInstance(instance); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } return dist; default: return dist; } } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision$"); } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * OSDL </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new OSDL(), args); } }
svn2github/weka
tags/ordinalStochasticDominance-1.0.1/src/main/java/weka/classifiers/misc/OSDL.java
2,063
/* * OSDL.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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, see <http://www.gnu.org/licenses/>. */ /* * OSDL.java *<SUF>*/ package weka.classifiers.misc; import weka.classifiers.misc.monotone.OSDLCore; import weka.core.Attribute; import weka.core.Instance; import weka.core.RevisionUtils; import weka.core.Utils; /** <!-- globalinfo-start --> * This class is an implementation of the Ordinal Stochastic Dominance Learner.<br/> * Further information regarding the OSDL-algorithm can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -C &lt;REG|WSUM|MAX|MED|RMED&gt; * Sets the classification type to be used. * (Default: MED)</pre> * * <pre> -B * Use the balanced version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -W * Use the weighted version of the Ordinal Stochastic Dominance Learner</pre> * * <pre> -S &lt;value of interpolation parameter&gt; * Sets the value of the interpolation parameter (not with -W/T/P/L/U) * (default: 0.5).</pre> * * <pre> -T * Tune the interpolation parameter (not with -W/S) * (default: off)</pre> * * <pre> -L &lt;Lower bound for interpolation parameter&gt; * Lower bound for the interpolation parameter (not with -W/S) * (default: 0)</pre> * * <pre> -U &lt;Upper bound for interpolation parameter&gt; * Upper bound for the interpolation parameter (not with -W/S) * (default: 1)</pre> * * <pre> -P &lt;Number of parts&gt; * Determines the step size for tuning the interpolation * parameter, nl. (U-L)/P (not with -W/S) * (default: 10)</pre> * <!-- options-end --> * * More precisely, this is a simple extension of the OSDLCore class, * so that the OSDLCore class can be used within the WEKA environment. * The problem with OSDLCore is that it implements both * <code> classifyInstance </code> and <code> distributionForInstance </code> * in a non trivial way. * <p> * One can evaluate a model easily with the method <code> evaluateModel </code> * from the <code> Evaluation </code> class. However, for nominal classes * they do the following: they use <code> distributionForInstance </code> * and then pick the class with maximal probability. This procedure * is <b> not </b> valid for a ranking algorithm, since this destroys * the required monotonicity property. * </p> * <p> * This class reimplements <code> distributionForInstance </code> in the * following way: first <code> classifyInstance </code> of * <code> OSDLCore </code> is used and the chosen label then gets * assigned probability one. This ensures that the classification * accuracy is calculated correctly, but possibly some other statistics * are no longer meaningful. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public class OSDL extends OSDLCore { /** for serialization */ private static final long serialVersionUID = -4534219825732505381L; /** * Use <code> classifyInstance </code> from <code> OSDLCore </code> and * assign probability one to the chosen label. * The implementation is heavily based on the same method in * the <code> Classifier </code> class. * * @param instance the instance to be classified * @return an array containing a single '1' on the index * that <code> classifyInstance </code> returns. */ public double[] distributionForInstance(Instance instance) { // based on the code from the Classifier class double[] dist = new double[instance.numClasses()]; int classification = 0; switch (instance.classAttribute().type()) { case Attribute.NOMINAL: try { classification = (int) Math.round(classifyInstance(instance)); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } if (Utils.isMissingValue(classification)) { return dist; } dist[classification] = 1.0; return dist; case Attribute.NUMERIC: try { dist[0] = classifyInstance(instance); } catch (Exception e) { System.out.println("There was a problem with classifyIntance"); System.out.println(e.getMessage()); e.printStackTrace(); } return dist; default: return dist; } } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision$"); } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * OSDL </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new OSDL(), args); } }
204165_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * EnumerationIterator.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.monotone.util; import java.util.Enumeration; import java.util.Iterator; import java.util.NoSuchElementException; /** * Implementation of a simple wrapper class for the <code> Enumeration </code> * interface. * This makes it possible to use an <code> Enumeration </code> as if * it were an <code> Iterator. </code> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class EnumerationIterator implements Iterator { private Enumeration e; /** * Construct an <code> EnumerationIterator </code> on basis of on * <code> Enumeration. </code> * * @param e the <code> Enumeration </code> on which the * <code> Iterator </code> will be based */ public EnumerationIterator(Enumeration e) { this.e = e; } /** * Returns <code> true </code> if there are more elements in the iteration. * * @return <code> true </code> if there are more elements in the iteration, * <code> false </code> otherwise */ final public boolean hasNext() { return e.hasMoreElements(); } /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the requested element does not exist */ final public Object next() throws NoSuchElementException { return e.nextElement(); } /** * Since the iteration is based on an enumeration, removal of elements * is not supported. * * @throws UnsupportedOperationException every time this method is invoked */ final public void remove() { throw new UnsupportedOperationException(); } }
svn2github/weka
tags/before_fixes_for_FilteredClassifier/weka/classifiers/monotone/util/EnumerationIterator.java
709
/* * EnumerationIterator.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * EnumerationIterator.java *<SUF>*/ package weka.classifiers.monotone.util; import java.util.Enumeration; import java.util.Iterator; import java.util.NoSuchElementException; /** * Implementation of a simple wrapper class for the <code> Enumeration </code> * interface. * This makes it possible to use an <code> Enumeration </code> as if * it were an <code> Iterator. </code> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class EnumerationIterator implements Iterator { private Enumeration e; /** * Construct an <code> EnumerationIterator </code> on basis of on * <code> Enumeration. </code> * * @param e the <code> Enumeration </code> on which the * <code> Iterator </code> will be based */ public EnumerationIterator(Enumeration e) { this.e = e; } /** * Returns <code> true </code> if there are more elements in the iteration. * * @return <code> true </code> if there are more elements in the iteration, * <code> false </code> otherwise */ final public boolean hasNext() { return e.hasMoreElements(); } /** * Returns the next element in the iteration. * * @return the next element in the iteration * @throws NoSuchElementException if the requested element does not exist */ final public Object next() throws NoSuchElementException { return e.nextElement(); } /** * Since the iteration is based on an enumeration, removal of elements * is not supported. * * @throws UnsupportedOperationException every time this method is invoked */ final public void remove() { throw new UnsupportedOperationException(); } }
204166_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BooleanBitMatrix.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; /** * This class is a very simple implementation of a BitMatrix. * In fact, it uses a two-dimensional array of booleans, so it is * not very space efficient. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class BooleanBitMatrix implements BitMatrix, RevisionHandler { /** The two-dimensional array of booleans. */ private boolean[][] m_bits; /** The number of rows. */ private int m_rows; /** The number of columns */ private int m_columns; /** * Construct a <code> BitMatrix </code> with the indicated * number of rows and columns. All bits are initially * set to <code> false </code>. * * @param rows the number of rows * @param columns the number of column */ public BooleanBitMatrix(int rows, int columns) { m_bits = new boolean[rows][columns]; m_rows = rows; m_columns = columns; } /** * A copy constructor. Constructs a copy of the given * <code> BitMatrix </code>. * * @param bm the <code> BitMatrix </code> to be copied. */ public BooleanBitMatrix(BooleanBitMatrix bm) { this(bm.m_rows, bm.m_columns); for (int i = 0; i < m_rows; i++) { System.arraycopy(bm.m_bits[i], 0, m_bits[i], 0, m_columns); } } /** * Returns the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column) { return m_bits[row][column]; } /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool) { m_bits[row][column] = bool; return bool; } /** * Sets the bit at the specified position to <code> true. </code> * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column) { return !get(row, column) && set(row, column, true); } /** * Clears the bit at the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column) { return get(row, column) && !set(row, column, false); } /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows() { return m_rows; } /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns() { return m_columns; } /** * Counts the number of bits that are set in the specified column. * * @param column index of the column of which the bits are to be counted * @return the number of bits that are set in the requested column */ public int columnCount(int column) { int count = 0; for (int i = 0; i < m_rows; i++) { count += (m_bits[i][column] ? 1 : 0); } return count; } /** * Counts the number of bits that are set in the specified row. * * @param row index of the row of which the bits are to be counted * @return the number of bits that are set in the requested row */ public int rowCount(int row) { int count = 0; for (int i = 0; i < m_columns; i++) { count += (m_bits[row][i] ? 1 : 0); } return count; } /** * Swap the rows and the columns of the <code> BooleanBitMatrix. </code> * * @return the transposed matrix */ public BooleanBitMatrix transpose() { BooleanBitMatrix transposed = new BooleanBitMatrix(m_columns, m_rows); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { transposed.set(j, i, get(i, j)); } } return transposed; } /** * Swaps the rows and the columns of the <code> BooleanBitMatrix, </code> * without creating a new object. * The <code> BooleanBitMatrix </code> must be a square matrix. * * @throws IllegalArgumentException if the <code> BooleanBitMatrix </code> * is not square. */ public void transposeInPlace() throws IllegalArgumentException { if (m_rows != m_columns) { throw new IllegalArgumentException ("The BooleanBitMatrix is not square"); } for (int i = 0; i < m_rows; i++) { for (int j = i + 1; j < m_columns; j++) { swap(i, j, j, i); } } } /** * Swap the elements with coordinates <code> (r1,c1) </code> and * <code> (r2,c2). </code> * * @param r1 index of first row * @param c1 index of first column * @param r2 index of second row * @param c2 index of second column */ private void swap(int r1, int c1, int r2, int c2) { boolean tmp = get(r1, c1); set(r1, c1, get(r2, c2)); set(r2, c2, tmp); } /** * Create a compact string representation of the matrix. * * @return a <code> String </code> representing the matrix, * row by row. */ public String toString() { StringBuffer sb = new StringBuffer(m_rows * (m_columns + 1) ); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { sb.append(get(i, j) ? 1 : 0); } sb.append("\n"); } return sb.toString(); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/BooleanBitMatrix.java
2,186
/* * BooleanBitMatrix.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BooleanBitMatrix.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; /** * This class is a very simple implementation of a BitMatrix. * In fact, it uses a two-dimensional array of booleans, so it is * not very space efficient. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class BooleanBitMatrix implements BitMatrix, RevisionHandler { /** The two-dimensional array of booleans. */ private boolean[][] m_bits; /** The number of rows. */ private int m_rows; /** The number of columns */ private int m_columns; /** * Construct a <code> BitMatrix </code> with the indicated * number of rows and columns. All bits are initially * set to <code> false </code>. * * @param rows the number of rows * @param columns the number of column */ public BooleanBitMatrix(int rows, int columns) { m_bits = new boolean[rows][columns]; m_rows = rows; m_columns = columns; } /** * A copy constructor. Constructs a copy of the given * <code> BitMatrix </code>. * * @param bm the <code> BitMatrix </code> to be copied. */ public BooleanBitMatrix(BooleanBitMatrix bm) { this(bm.m_rows, bm.m_columns); for (int i = 0; i < m_rows; i++) { System.arraycopy(bm.m_bits[i], 0, m_bits[i], 0, m_columns); } } /** * Returns the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column) { return m_bits[row][column]; } /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool) { m_bits[row][column] = bool; return bool; } /** * Sets the bit at the specified position to <code> true. </code> * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column) { return !get(row, column) && set(row, column, true); } /** * Clears the bit at the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column) { return get(row, column) && !set(row, column, false); } /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows() { return m_rows; } /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns() { return m_columns; } /** * Counts the number of bits that are set in the specified column. * * @param column index of the column of which the bits are to be counted * @return the number of bits that are set in the requested column */ public int columnCount(int column) { int count = 0; for (int i = 0; i < m_rows; i++) { count += (m_bits[i][column] ? 1 : 0); } return count; } /** * Counts the number of bits that are set in the specified row. * * @param row index of the row of which the bits are to be counted * @return the number of bits that are set in the requested row */ public int rowCount(int row) { int count = 0; for (int i = 0; i < m_columns; i++) { count += (m_bits[row][i] ? 1 : 0); } return count; } /** * Swap the rows and the columns of the <code> BooleanBitMatrix. </code> * * @return the transposed matrix */ public BooleanBitMatrix transpose() { BooleanBitMatrix transposed = new BooleanBitMatrix(m_columns, m_rows); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { transposed.set(j, i, get(i, j)); } } return transposed; } /** * Swaps the rows and the columns of the <code> BooleanBitMatrix, </code> * without creating a new object. * The <code> BooleanBitMatrix </code> must be a square matrix. * * @throws IllegalArgumentException if the <code> BooleanBitMatrix </code> * is not square. */ public void transposeInPlace() throws IllegalArgumentException { if (m_rows != m_columns) { throw new IllegalArgumentException ("The BooleanBitMatrix is not square"); } for (int i = 0; i < m_rows; i++) { for (int j = i + 1; j < m_columns; j++) { swap(i, j, j, i); } } } /** * Swap the elements with coordinates <code> (r1,c1) </code> and * <code> (r2,c2). </code> * * @param r1 index of first row * @param c1 index of first column * @param r2 index of second row * @param c2 index of second column */ private void swap(int r1, int c1, int r2, int c2) { boolean tmp = get(r1, c1); set(r1, c1, get(r2, c2)); set(r2, c2, tmp); } /** * Create a compact string representation of the matrix. * * @return a <code> String </code> representing the matrix, * row by row. */ public String toString() { StringBuffer sb = new StringBuffer(m_rows * (m_columns + 1) ); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { sb.append(get(i, j) ? 1 : 0); } sb.append("\n"); } return sb.toString(); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204168_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * InstancesComparator.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Comparator; /** * Class to compare instances with respect to a given attribute, indicated * by its index. The ordering of the attribute values is determined * by the internal values of WEKA. There is also the possibility of * reversing this order. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public class InstancesComparator implements Comparator, RevisionHandler { /** index of the attribute */ private int m_Index; /** If 1 then the order is not reversed, when -1, the order is reversed */ private int m_Reverse = 1; /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index. * * @param index the index on which to compare instances */ public InstancesComparator(int index) { m_Index = index; } /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index, with the possibility of * reversing the order. * * @param index the index on which to compare instances * @param reverse if <code> true </code> the order is reversed, if * <code> false </code> the order is not reversed */ public InstancesComparator(int index, boolean reverse) { m_Index = index; m_Reverse = (reverse == true) ? -1 : 1; } /** * Compares two objects (instances) with respect to the attribute * this comparator is constructed on. * * @param o1 the first object to be compared * @param o2 the second object to be compared * @return -1 if <code> o1 &lt; o2 </code> (wrt to the given attribute), * 1 if <code> o1 &gt; o2 </code>, and 0 if <code> o1 </code> and * <code> o2 </code> are equal (wrt to the given attribute) */ public int compare(Object o1, Object o2) { Instance i1 = (Instance) o1; Instance i2 = (Instance) o2; if (i1.value(m_Index) < i2.value(m_Index)) { return -1 * m_Reverse; } else if (i1.value(m_Index) > i2.value(m_Index)) { return 1 * m_Reverse; } return 0; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision$"); } }
svn2github/weka
tags/dev-3-7-1/weka/src/main/java/weka/classifiers/misc/monotone/InstancesComparator.java
983
/* * InstancesComparator.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * InstancesComparator.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Comparator; /** * Class to compare instances with respect to a given attribute, indicated * by its index. The ordering of the attribute values is determined * by the internal values of WEKA. There is also the possibility of * reversing this order. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public class InstancesComparator implements Comparator, RevisionHandler { /** index of the attribute */ private int m_Index; /** If 1 then the order is not reversed, when -1, the order is reversed */ private int m_Reverse = 1; /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index. * * @param index the index on which to compare instances */ public InstancesComparator(int index) { m_Index = index; } /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index, with the possibility of * reversing the order. * * @param index the index on which to compare instances * @param reverse if <code> true </code> the order is reversed, if * <code> false </code> the order is not reversed */ public InstancesComparator(int index, boolean reverse) { m_Index = index; m_Reverse = (reverse == true) ? -1 : 1; } /** * Compares two objects (instances) with respect to the attribute * this comparator is constructed on. * * @param o1 the first object to be compared * @param o2 the second object to be compared * @return -1 if <code> o1 &lt; o2 </code> (wrt to the given attribute), * 1 if <code> o1 &gt; o2 </code>, and 0 if <code> o1 </code> and * <code> o2 </code> are equal (wrt to the given attribute) */ public int compare(Object o1, Object o2) { Instance i1 = (Instance) o1; Instance i2 = (Instance) o2; if (i1.value(m_Index) < i2.value(m_Index)) { return -1 * m_Reverse; } else if (i1.value(m_Index) > i2.value(m_Index)) { return 1 * m_Reverse; } return 0; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision$"); } }
204170_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BitMatrix.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.monotone.util; /** * Interface specifying a simple matrix of booleans. Operations are * limited to setting, getting, clearing and counting. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public interface BitMatrix { /** * Return the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column); /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool); /** * Sets the bit at the specified position to <code> true. </code> * The return value indicates whether anything has changed, * i.e.&nbsp; if the bit at the specified position was <code> true * </code> before calling this method, then <code> false </code> is * returned (and the bit remains <code> true </code> of course). * In the other case <code> true </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column); /** * Clears the bit at the specified position. The return value indicates * whether the bit was actually cleared, i.e.&nbsp; if the bit was * originally <code> true </code> then <code> true </code> is returned. * In the other case <code> false </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column); /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows(); /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns(); /** * Counts the number of bits that are set in the specified column. * * @param column index of the column * @return the number of bits that are set in the requested column */ public int columnCount(int column); /** * Counts the number of bits that are set in the specified row. * * @param row index of the row * @return the number of bits that are set in the requested row */ public int rowCount(int row); }
svn2github/weka
tags/before_fixes_for_FilteredClassifier/weka/classifiers/monotone/util/BitMatrix.java
1,048
/* * BitMatrix.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BitMatrix.java *<SUF>*/ package weka.classifiers.monotone.util; /** * Interface specifying a simple matrix of booleans. Operations are * limited to setting, getting, clearing and counting. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public interface BitMatrix { /** * Return the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column); /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool); /** * Sets the bit at the specified position to <code> true. </code> * The return value indicates whether anything has changed, * i.e.&nbsp; if the bit at the specified position was <code> true * </code> before calling this method, then <code> false </code> is * returned (and the bit remains <code> true </code> of course). * In the other case <code> true </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column); /** * Clears the bit at the specified position. The return value indicates * whether the bit was actually cleared, i.e.&nbsp; if the bit was * originally <code> true </code> then <code> true </code> is returned. * In the other case <code> false </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column); /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows(); /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns(); /** * Counts the number of bits that are set in the specified column. * * @param column index of the column * @return the number of bits that are set in the requested column */ public int columnCount(int column); /** * Counts the number of bits that are set in the specified row. * * @param row index of the row * @return the number of bits that are set in the requested row */ public int rowCount(int row); }
204182_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MinMaxExtension.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.monotone; import weka.classifiers.Classifier; import weka.classifiers.monotone.util.InstancesUtil; import weka.core.Capabilities; import weka.core.Instance; import weka.core.Instances; import weka.core.Option; import weka.core.TechnicalInformation; import weka.core.TechnicalInformationHandler; import weka.core.Utils; import weka.core.Capabilities.Capability; import weka.core.TechnicalInformation.Field; import weka.core.TechnicalInformation.Type; import java.util.Enumeration; import java.util.Vector; /** <!-- globalinfo-start --> * This class is an implementation of the minimal and maximal extension.<br/> * All attributes and the class are assumed to be ordinal. The order of the ordinal attributes is determined by the internal codes used by WEKA.<br/> * <br/> * Further information regarding these algorithms can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class MinMaxExtension extends Classifier implements TechnicalInformationHandler { /** for serialization */ private static final long serialVersionUID = 8505830465540027104L; /** * The training instances. */ private Instances m_data; /** * parameter for choice between min extension and max extension */ private boolean m_min = true; /** * Returns a string describing the classifier. * @return a description suitable for displaying in the * explorer/experimenter gui */ public String globalInfo() { return "This class is an implementation of the " + "minimal and maximal extension.\n" + "All attributes and the class are assumed to be ordinal. The order of " + "the ordinal attributes is determined by the internal codes used by " + "WEKA.\n\n" + "Further information regarding these algorithms can be found in:\n\n" + getTechnicalInformation().toString() + "\n\n" + "For more information about supervised ranking, see\n\n" + "http://users.ugent.be/~slievens/supervised_ranking.php"; } /** * Returns an instance of a TechnicalInformation object, containing * detailed information about the technical background of this class, * e.g., paper reference or book this class is based on. * * @return the technical information about this class */ public TechnicalInformation getTechnicalInformation() { TechnicalInformation result; TechnicalInformation additional; result = new TechnicalInformation(Type.ARTICLE); result.setValue(Field.AUTHOR, "S. Lievens and B. De Baets and K. Cao-Van"); result.setValue(Field.YEAR, "2006"); result.setValue(Field.TITLE, "A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting"); result.setValue(Field.JOURNAL, "Annals of Operations Research"); additional = result.add(Type.PHDTHESIS); additional.setValue(Field.AUTHOR, "Kim Cao-Van"); additional.setValue(Field.YEAR, "2003"); additional.setValue(Field.TITLE, "Supervised ranking: from semantics to algorithms"); additional.setValue(Field.SCHOOL, "Ghent University"); additional = result.add(Type.MASTERSTHESIS); additional.setValue(Field.AUTHOR, "Stijn Lievens"); additional.setValue(Field.YEAR, "2004"); additional.setValue(Field.TITLE, "Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken"); additional.setValue(Field.SCHOOL, "Ghent University"); return result; } /** * Returns default capabilities of the classifier. * * @return the capabilities of this classifier */ public Capabilities getCapabilities() { Capabilities result = super.getCapabilities(); // attributes result.enable(Capability.NOMINAL_ATTRIBUTES); // class result.enable(Capability.NOMINAL_CLASS); result.enable(Capability.MISSING_CLASS_VALUES); // instances result.setMinimumNumberInstances(0); return result; } /** * Builds the classifier. This is in fact nothing else than copying * the given instances. * * @param instances the training examples * @throws Exception if the classifier is not able to handle the * <code> instances </code>. */ public void buildClassifier(Instances instances) throws Exception { getCapabilities().testWithFail(instances); // copy the dataset m_data = new Instances(instances); // new dataset in which examples with missing class value are removed m_data.deleteWithMissingClass(); } /** * Classifies the given instance. * * @param instance the instance to be classified * @return a double representing the internal value * of the label that is assigned to the given instance */ public double classifyInstance(Instance instance) { double value; if (m_min == true) { value = 0; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(i2, instance) == true) { value = Math.max(value, i2.classValue()); } } } else { value = m_data.classAttribute().numValues() - 1; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(instance, i2) == true) { value = Math.min(value, i2.classValue()); } } } return value; } /** * After calling this method, the next classification will use the minimal * extension. */ public void setMinExtension() { m_min = true; } /** * After calling this method, the next classification will use the maximal * extension. */ public void setMaxExtension() { m_min = false; } /** * Returns the tip text for this property. * * @return tip text for this property suitable for * displaying in the explorer/experimenter gui */ public String minMaxExtensionTipText() { return "If true, the minimal extension of the algorithm is chosen, " + "otherwise, it is the maximal extension"; } /** * Return if the minimal extension is in effect. * * @return <code> true </code> if the minimal is in effect, * <code> false </code> otherwise */ public boolean getMinMaxExtension() { return m_min; } /** * Chooses between the minimal and maximal extension of the algorithm. * If <code> min </code> is <code> true </code> then the minimal extension * wil be in effect, otherwise it will the maximal extension. * * @param min do we choose the minimal extension */ public void setMinMaxExtension(boolean min) { m_min = min; } /** * Parses the options for this object. <p/> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @param options an array of strings containing the options for the classifier * @throws Exception if */ public void setOptions(String[] options) throws Exception { m_min = !Utils.getFlag('M',options); // check if -M option is present super.setOptions(options); } /** * Gets the current settings of this classifier. * * @return an array of strings suitable for passing to * <code> setOptions </code> */ public String[] getOptions() { int i; Vector result; String[] options; result = new Vector(); options = super.getOptions(); for (i = 0; i < options.length; i++) result.add(options[i]); if (!m_min) result.add("-M"); return (String[]) result.toArray(new String[result.size()]); } /** * Produces an enumeration describing the available options for * this classifier. * * @return an enumeration with the available options. */ public Enumeration listOptions() { Vector options = new Vector(); Enumeration enm = super.listOptions(); while (enm.hasMoreElements()) options.addElement(enm.nextElement()); String s = "\tUse maximal extension (default: minimal extension)"; options.add(new Option(s, "M", 0, "-M")); return options.elements(); } /** * returns a string representation of this classifier * * @return the classname */ public String toString() { return this.getClass().getName(); } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * MinMaxExtension </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new MinMaxExtension(), args); } }
svn2github/weka
tags/before_fixes_for_FilteredClassifier/weka/classifiers/monotone/MinMaxExtension.java
3,208
/* * MinMaxExtension.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * MinMaxExtension.java *<SUF>*/ package weka.classifiers.monotone; import weka.classifiers.Classifier; import weka.classifiers.monotone.util.InstancesUtil; import weka.core.Capabilities; import weka.core.Instance; import weka.core.Instances; import weka.core.Option; import weka.core.TechnicalInformation; import weka.core.TechnicalInformationHandler; import weka.core.Utils; import weka.core.Capabilities.Capability; import weka.core.TechnicalInformation.Field; import weka.core.TechnicalInformation.Type; import java.util.Enumeration; import java.util.Vector; /** <!-- globalinfo-start --> * This class is an implementation of the minimal and maximal extension.<br/> * All attributes and the class are assumed to be ordinal. The order of the ordinal attributes is determined by the internal codes used by WEKA.<br/> * <br/> * Further information regarding these algorithms can be found in:<br/> * <br/> * S. Lievens, B. De Baets, K. Cao-Van (2006). A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting. Annals of Operations Research..<br/> * <br/> * Kim Cao-Van (2003). Supervised ranking: from semantics to algorithms.<br/> * <br/> * Stijn Lievens (2004). Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken.<br/> * <br/> * For more information about supervised ranking, see<br/> * <br/> * http://users.ugent.be/~slievens/supervised_ranking.php * <p/> <!-- globalinfo-end --> * <!-- technical-bibtex-start --> * BibTeX: * <pre> * &#64;article{Lievens2006, * author = {S. Lievens and B. De Baets and K. Cao-Van}, * journal = {Annals of Operations Research}, * title = {A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting}, * year = {2006} * } * * &#64;phdthesis{Cao-Van2003, * author = {Kim Cao-Van}, * school = {Ghent University}, * title = {Supervised ranking: from semantics to algorithms}, * year = {2003} * } * * &#64;mastersthesis{Lievens2004, * author = {Stijn Lievens}, * school = {Ghent University}, * title = {Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken}, * year = {2004} * } * </pre> * <p/> <!-- technical-bibtex-end --> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class MinMaxExtension extends Classifier implements TechnicalInformationHandler { /** for serialization */ private static final long serialVersionUID = 8505830465540027104L; /** * The training instances. */ private Instances m_data; /** * parameter for choice between min extension and max extension */ private boolean m_min = true; /** * Returns a string describing the classifier. * @return a description suitable for displaying in the * explorer/experimenter gui */ public String globalInfo() { return "This class is an implementation of the " + "minimal and maximal extension.\n" + "All attributes and the class are assumed to be ordinal. The order of " + "the ordinal attributes is determined by the internal codes used by " + "WEKA.\n\n" + "Further information regarding these algorithms can be found in:\n\n" + getTechnicalInformation().toString() + "\n\n" + "For more information about supervised ranking, see\n\n" + "http://users.ugent.be/~slievens/supervised_ranking.php"; } /** * Returns an instance of a TechnicalInformation object, containing * detailed information about the technical background of this class, * e.g., paper reference or book this class is based on. * * @return the technical information about this class */ public TechnicalInformation getTechnicalInformation() { TechnicalInformation result; TechnicalInformation additional; result = new TechnicalInformation(Type.ARTICLE); result.setValue(Field.AUTHOR, "S. Lievens and B. De Baets and K. Cao-Van"); result.setValue(Field.YEAR, "2006"); result.setValue(Field.TITLE, "A Probabilistic Framework for the Design of Instance-Based Supervised Ranking Algorithms in an Ordinal Setting"); result.setValue(Field.JOURNAL, "Annals of Operations Research"); additional = result.add(Type.PHDTHESIS); additional.setValue(Field.AUTHOR, "Kim Cao-Van"); additional.setValue(Field.YEAR, "2003"); additional.setValue(Field.TITLE, "Supervised ranking: from semantics to algorithms"); additional.setValue(Field.SCHOOL, "Ghent University"); additional = result.add(Type.MASTERSTHESIS); additional.setValue(Field.AUTHOR, "Stijn Lievens"); additional.setValue(Field.YEAR, "2004"); additional.setValue(Field.TITLE, "Studie en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd rangschikken"); additional.setValue(Field.SCHOOL, "Ghent University"); return result; } /** * Returns default capabilities of the classifier. * * @return the capabilities of this classifier */ public Capabilities getCapabilities() { Capabilities result = super.getCapabilities(); // attributes result.enable(Capability.NOMINAL_ATTRIBUTES); // class result.enable(Capability.NOMINAL_CLASS); result.enable(Capability.MISSING_CLASS_VALUES); // instances result.setMinimumNumberInstances(0); return result; } /** * Builds the classifier. This is in fact nothing else than copying * the given instances. * * @param instances the training examples * @throws Exception if the classifier is not able to handle the * <code> instances </code>. */ public void buildClassifier(Instances instances) throws Exception { getCapabilities().testWithFail(instances); // copy the dataset m_data = new Instances(instances); // new dataset in which examples with missing class value are removed m_data.deleteWithMissingClass(); } /** * Classifies the given instance. * * @param instance the instance to be classified * @return a double representing the internal value * of the label that is assigned to the given instance */ public double classifyInstance(Instance instance) { double value; if (m_min == true) { value = 0; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(i2, instance) == true) { value = Math.max(value, i2.classValue()); } } } else { value = m_data.classAttribute().numValues() - 1; for (int i = 0; i < m_data.numInstances(); i++) { Instance i2 = m_data.instance(i); if (InstancesUtil.smallerOrEqual(instance, i2) == true) { value = Math.min(value, i2.classValue()); } } } return value; } /** * After calling this method, the next classification will use the minimal * extension. */ public void setMinExtension() { m_min = true; } /** * After calling this method, the next classification will use the maximal * extension. */ public void setMaxExtension() { m_min = false; } /** * Returns the tip text for this property. * * @return tip text for this property suitable for * displaying in the explorer/experimenter gui */ public String minMaxExtensionTipText() { return "If true, the minimal extension of the algorithm is chosen, " + "otherwise, it is the maximal extension"; } /** * Return if the minimal extension is in effect. * * @return <code> true </code> if the minimal is in effect, * <code> false </code> otherwise */ public boolean getMinMaxExtension() { return m_min; } /** * Chooses between the minimal and maximal extension of the algorithm. * If <code> min </code> is <code> true </code> then the minimal extension * wil be in effect, otherwise it will the maximal extension. * * @param min do we choose the minimal extension */ public void setMinMaxExtension(boolean min) { m_min = min; } /** * Parses the options for this object. <p/> * <!-- options-start --> * Valid options are: <p/> * * <pre> -D * If set, classifier is run in debug mode and * may output additional info to the console</pre> * * <pre> -M * Use maximal extension (default: minimal extension)</pre> * <!-- options-end --> * * @param options an array of strings containing the options for the classifier * @throws Exception if */ public void setOptions(String[] options) throws Exception { m_min = !Utils.getFlag('M',options); // check if -M option is present super.setOptions(options); } /** * Gets the current settings of this classifier. * * @return an array of strings suitable for passing to * <code> setOptions </code> */ public String[] getOptions() { int i; Vector result; String[] options; result = new Vector(); options = super.getOptions(); for (i = 0; i < options.length; i++) result.add(options[i]); if (!m_min) result.add("-M"); return (String[]) result.toArray(new String[result.size()]); } /** * Produces an enumeration describing the available options for * this classifier. * * @return an enumeration with the available options. */ public Enumeration listOptions() { Vector options = new Vector(); Enumeration enm = super.listOptions(); while (enm.hasMoreElements()) options.addElement(enm.nextElement()); String s = "\tUse maximal extension (default: minimal extension)"; options.add(new Option(s, "M", 0, "-M")); return options.elements(); } /** * returns a string representation of this classifier * * @return the classname */ public String toString() { return this.getClass().getName(); } /** * Main method for testing this class and for using it from the * command line. * * @param args array of options for both the classifier <code> * MinMaxExtension </code> and for <code> evaluateModel </code> */ public static void main(String[] args) { runClassifier(new MinMaxExtension(), args); } }
204184_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DistributionUtils.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.estimators.DiscreteEstimator; import java.util.Arrays; /** * Class with some simple methods acting on * <code> CumulativeDiscreteDistribution. </code> * All of the methods in this class are very easily implemented * and the main use of this class is to gather all these methods * in a single place. It could be argued that some of the methods * should be implemented in the class * <code> CumulativeDiscreteDistribution </code> itself. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class DistributionUtils { /** * Constant indicating the maximal number of classes * for which there is a minimal and maximal distribution * present in the pool. * One of the purposes of this class is to serve as a factory * for minimal and maximal cumulative probability distributions. * Since instances of <code> CumulativeDiscreteDistribution </code> * are immutable, we can create them beforehand and reuse them * every time one is needed. */ private static final int MAX_CLASSES = 20; /** * Array filled with minimal cumulative discrete probability * distributions. This means that probability one is given to the * first element. This array serves as a pool for the method * <code> getMinimalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_minimalDistributions; /** * Array filled with maximal cumulative discrete probability * distributions. This means that probability one is given to the * largest element. This array serves as a pool for the method * <code> getMaximalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_maximalDistributions; // fill both static arrays with the correct distributions static { m_minimalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; m_maximalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; for (int i = 1; i <= MAX_CLASSES; i++) { double[] dd = new double[i]; dd[dd.length - 1] = 1; m_maximalDistributions[i] = new CumulativeDiscreteDistribution(dd); Arrays.fill(dd,1); m_minimalDistributions[i] = new CumulativeDiscreteDistribution(dd); } } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameter * @return (1 - s) &times; cdf1 + s &times; cdf2 * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * cdf1.getCumulativeProbability(i) + s * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameters, only the relevant number * of entries is used, so the array may be longer than the common * length of <code> cdf1 </code> and <code> cdf2 </code> * @return (1 - s) &times; cdf1 + s &times; cdf2, or more specifically * a distribution cd such that <code> * cd.getCumulativeProbability(i) = * (1-s[i]) &times; cdf1.getCumulativeProbability(i) + * s[i] &times; cdf2.getCumulativeProbability(i) </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the array <code> s </code> * contains parameters not in the range <code> [0,1] </code> */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double[] s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (cdf1.getNumSymbols() > s.length) { throw new IllegalArgumentException ("Array with interpolation parameters is not " + " long enough"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { if (s[i] < 0 || s[i] > 1) { throw new IllegalArgumentException ("Interpolation parameter exceeds bounds"); } res[i] = (1 - s[i]) * cdf1.getCumulativeProbability(i) + s[i] * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> DiscreteDistribution. </code> * * @param ddf1 the first <code> DiscreteDistribution </code> * @param ddf2 the second <code> DiscreteDistribution </code> * @param s the interpolation parameter * @return <code> (1 - s) &times; ddf1 + s &times; ddf2 </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static DiscreteDistribution interpolate( DiscreteDistribution ddf1, DiscreteDistribution ddf2, double s) throws IllegalArgumentException { if (ddf1.getNumSymbols() != ddf2.getNumSymbols()) { throw new IllegalArgumentException ("DiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[ddf1.getNumSymbols()]; for (int i = 0, n = ddf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * ddf1.getProbability(i) + s * ddf2.getProbability(i); } return new DiscreteDistribution(res); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the minimum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the minimum of the two corresponding components. <br/> * Note: despite of its name, the returned cumulative probability * distribution dominates both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the minimum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMin( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.min(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the maximum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the maximum of the two corresponding components. * Note: despite of its name, the returned cumulative probability * distribution is dominated by both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the maximum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMax( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.max(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Converts a <code> DiscreteEstimator </code> to an array of * doubles. * * @param df the <code> DiscreteEstimator </code> to be converted * @return an array of doubles representing the * <code> DiscreteEstimator </code> */ public static double[] getDistributionArray(DiscreteEstimator df) { double[] dfa = new double[df.getNumSymbols()]; for (int i = 0; i < dfa.length; i++) { dfa[i] = df.getProbability(i); } return dfa; } /** * Get the minimal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the first element. * * @param numClasses the number of elements * @return the minimal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMinimalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_minimalDistributions[numClasses]; } double[] dd = new double[numClasses]; Arrays.fill(dd,1); return new CumulativeDiscreteDistribution(dd); } /** * Get the maximal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the last class. * * @param numClasses the number of elements * @return the maximal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMaximalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_maximalDistributions[numClasses]; } double[] dd = new double[numClasses]; dd[dd.length - 1] = 1; return new CumulativeDiscreteDistribution(dd); } }
svn2github/weka
tags/dev-3-5-6/weka/classifiers/misc/monotone/DistributionUtils.java
3,383
/* * DistributionUtils.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DistributionUtils.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.estimators.DiscreteEstimator; import java.util.Arrays; /** * Class with some simple methods acting on * <code> CumulativeDiscreteDistribution. </code> * All of the methods in this class are very easily implemented * and the main use of this class is to gather all these methods * in a single place. It could be argued that some of the methods * should be implemented in the class * <code> CumulativeDiscreteDistribution </code> itself. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class DistributionUtils { /** * Constant indicating the maximal number of classes * for which there is a minimal and maximal distribution * present in the pool. * One of the purposes of this class is to serve as a factory * for minimal and maximal cumulative probability distributions. * Since instances of <code> CumulativeDiscreteDistribution </code> * are immutable, we can create them beforehand and reuse them * every time one is needed. */ private static final int MAX_CLASSES = 20; /** * Array filled with minimal cumulative discrete probability * distributions. This means that probability one is given to the * first element. This array serves as a pool for the method * <code> getMinimalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_minimalDistributions; /** * Array filled with maximal cumulative discrete probability * distributions. This means that probability one is given to the * largest element. This array serves as a pool for the method * <code> getMaximalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_maximalDistributions; // fill both static arrays with the correct distributions static { m_minimalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; m_maximalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; for (int i = 1; i <= MAX_CLASSES; i++) { double[] dd = new double[i]; dd[dd.length - 1] = 1; m_maximalDistributions[i] = new CumulativeDiscreteDistribution(dd); Arrays.fill(dd,1); m_minimalDistributions[i] = new CumulativeDiscreteDistribution(dd); } } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameter * @return (1 - s) &times; cdf1 + s &times; cdf2 * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * cdf1.getCumulativeProbability(i) + s * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameters, only the relevant number * of entries is used, so the array may be longer than the common * length of <code> cdf1 </code> and <code> cdf2 </code> * @return (1 - s) &times; cdf1 + s &times; cdf2, or more specifically * a distribution cd such that <code> * cd.getCumulativeProbability(i) = * (1-s[i]) &times; cdf1.getCumulativeProbability(i) + * s[i] &times; cdf2.getCumulativeProbability(i) </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the array <code> s </code> * contains parameters not in the range <code> [0,1] </code> */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double[] s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (cdf1.getNumSymbols() > s.length) { throw new IllegalArgumentException ("Array with interpolation parameters is not " + " long enough"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { if (s[i] < 0 || s[i] > 1) { throw new IllegalArgumentException ("Interpolation parameter exceeds bounds"); } res[i] = (1 - s[i]) * cdf1.getCumulativeProbability(i) + s[i] * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> DiscreteDistribution. </code> * * @param ddf1 the first <code> DiscreteDistribution </code> * @param ddf2 the second <code> DiscreteDistribution </code> * @param s the interpolation parameter * @return <code> (1 - s) &times; ddf1 + s &times; ddf2 </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static DiscreteDistribution interpolate( DiscreteDistribution ddf1, DiscreteDistribution ddf2, double s) throws IllegalArgumentException { if (ddf1.getNumSymbols() != ddf2.getNumSymbols()) { throw new IllegalArgumentException ("DiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[ddf1.getNumSymbols()]; for (int i = 0, n = ddf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * ddf1.getProbability(i) + s * ddf2.getProbability(i); } return new DiscreteDistribution(res); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the minimum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the minimum of the two corresponding components. <br/> * Note: despite of its name, the returned cumulative probability * distribution dominates both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the minimum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMin( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.min(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the maximum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the maximum of the two corresponding components. * Note: despite of its name, the returned cumulative probability * distribution is dominated by both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the maximum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMax( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.max(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Converts a <code> DiscreteEstimator </code> to an array of * doubles. * * @param df the <code> DiscreteEstimator </code> to be converted * @return an array of doubles representing the * <code> DiscreteEstimator </code> */ public static double[] getDistributionArray(DiscreteEstimator df) { double[] dfa = new double[df.getNumSymbols()]; for (int i = 0; i < dfa.length; i++) { dfa[i] = df.getProbability(i); } return dfa; } /** * Get the minimal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the first element. * * @param numClasses the number of elements * @return the minimal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMinimalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_minimalDistributions[numClasses]; } double[] dd = new double[numClasses]; Arrays.fill(dd,1); return new CumulativeDiscreteDistribution(dd); } /** * Get the maximal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the last class. * * @param numClasses the number of elements * @return the maximal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMaximalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_maximalDistributions[numClasses]; } double[] dd = new double[numClasses]; dd[dd.length - 1] = 1; return new CumulativeDiscreteDistribution(dd); } }
204188_15
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DiscreteDistribution.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import weka.core.Utils; import weka.estimators.DiscreteEstimator; import java.io.Serializable; /** * This class represents a discrete probability distribution * over a finite number of values. * <p> * In the present implementation, objects of type * <code> DiscreteDistribution </code> are in fact immutable, * so all one can do is create objects and retrieve information, * such as median and mean, from them. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class DiscreteDistribution implements Serializable, RevisionHandler { /** for serialization. */ private static final long serialVersionUID = 1954630934425689828L; /** * small tolerance to account for rounding errors when working * with doubles */ private static final double TOLERANCE=Utils.SMALL; /** the array of probabilities */ private double[] m_dd; /** * Create a <code> DiscreteDistribution </code> based on a * <code> DiscreteEstimator. </code> * * @param e the <code> DiscreteEstimator </code> */ public DiscreteDistribution(DiscreteEstimator e) { m_dd = new double[e.getNumSymbols()]; for (int i = 0; i < m_dd.length; i++) { m_dd[i] = e.getProbability(i); } } /** * Create a <code> DiscreteDistribution </code> based on a * <code> CumulativeDiscreteDistribution. </code> * * @param cdf the <code> CumulativeDiscreteDistribution </code> */ public DiscreteDistribution(CumulativeDiscreteDistribution cdf) { m_dd = new double[cdf.getNumSymbols()]; if (m_dd.length != 0) { m_dd[0] = cdf.getCumulativeProbability(0); } for (int i = 1; i < m_dd.length; i++) { m_dd[i] = cdf.getCumulativeProbability(i) - cdf.getCumulativeProbability(i - 1); } } /** * Create a <code> DiscreteDistribution </code> based on an * array of doubles. * * @param dd the array of doubles representing a valid * discrete distribution * @throws IllegalArgumentException if <code> dd </code> * does not represent a valid discrete distribution */ public DiscreteDistribution(double[] dd) throws IllegalArgumentException { if (!validDiscreteDistribution(dd)) { throw new IllegalArgumentException ("Not a valid discrete distribution"); } m_dd = new double[dd.length]; System.arraycopy(dd,0,m_dd,0,dd.length); } /** * Get the number of elements over which the <code> * DiscreteDistribution </code> is defined. * * @return the number of elements over which the <code> * DiscreteDistribution </code> is defined */ public int getNumSymbols() { return (m_dd != null) ? m_dd.length : 0; } /** * Get the probability of finding the element at * a specified index. * * @param index the index of the required element * @return the probability of finding the specified element */ public double getProbability(int index) { return m_dd[index]; } /** * Calculate the mean of the distribution. The scores for * calculating the mean start from 0 and have step size one, * i.e. if there are n elements then the scores are 0,1,...,n-1. * * @return the mean of the distribution */ public double mean() { double mean = 0; for (int i = 1; i < m_dd.length; i++) { mean += i * m_dd[i]; } return mean; } /** * Calculate the median of the distribution. This means * the following: if there is a label m such that * P(x &lt;= m) &gt;= &frac12; and * P(x &gt;= m) &gt;= &frac12; then this label is returned. * If there is no such label, an interpolation between the * smallest label satisfying the first condition and the * largest label satisfying the second condition is performed. * The returned value is thus either an element label, or * exactly between two element labels. * * @return the median of the distribution. **/ public double median() { /* cumulative probabilities starting from the left and * right respectively */ double cl=m_dd[0]; double cr=m_dd[m_dd.length - 1]; // cumulative left and right int i = 0; while(cl < 0.5) { cl += m_dd[++i]; // pre-increment } int j = m_dd.length - 1; while(cr < 0.5) { cr += m_dd[--j]; // pre-increment } return i == j ? i : ( (double) (i + j) ) / 2; } /** * Get a sorted array containing the indices of the elements with * maximal probability. * * @return an array of class indices with maximal probability. */ public int[] modes() { int[] mm = new int[m_dd.length]; double max = m_dd[0]; int nr = 1; // number of relevant elements in mm for (int i = 1; i < m_dd.length; i++) { if (m_dd[i] > max + TOLERANCE) { // new maximum max = m_dd[i]; mm[0] = i; nr = 1; } else if (Math.abs(m_dd[i] - max) < TOLERANCE) { mm[nr++] = i; } } // trim to correct size int[] modes = new int[nr]; System.arraycopy(mm, 0, modes, 0, nr); return modes; } /** * Convert the <code> DiscreteDistribution </code> to an * array of doubles. * * @return an array of doubles representing the * <code> DiscreteDistribution </code> */ public double[] toArray() { double[] dd = new double[m_dd.length]; System.arraycopy(m_dd, 0, dd, 0, dd.length); return dd; } /** * Get a string representation of the given <code> * DiscreteDistribution. </code> * * @return a string representation of this object */ public String toString() { // XXX MAYBE WE SHOULD USE STRINGBUFFER AND FIXED WIDTH ... String s = "[" + getNumSymbols() + "]:"; for (int i = 0; i < getNumSymbols(); i++) { s += " " + getProbability(i); } return s; } /** * Checks if <code> this </code> is dominated by <code> dd. </code> * @param dd the DiscreteDistribution to compare to * @return <code> true </code> if <code> this </code> is dominated by * <code> dd </code>, <code> false </code> otherwise * @throws IllegalArgumentException if the two distributions don't * have the same length */ public boolean stochasticDominatedBy(DiscreteDistribution dd) throws IllegalArgumentException { return (new CumulativeDiscreteDistribution(this)). stochasticDominatedBy (new CumulativeDiscreteDistribution(dd)); } /** * Checks if the given array of doubles represents a valid discrete * distribution. * * @param dd an array holding the doubles * @return <code> true </code> if <code> dd </code> is a valid discrete distribution, * <code> false </code> otherwise */ private static boolean validDiscreteDistribution(double[] dd) { if (dd == null || dd.length == 0) { return false; } double sum = 0; for (int i = 0; i < dd.length; i++) { if (dd[i] < 0) { return false; } sum += dd[i]; } return !(Math.abs(sum - 1) > TOLERANCE); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/DiscreteDistribution.java
2,494
// number of relevant elements in mm
line_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DiscreteDistribution.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import weka.core.Utils; import weka.estimators.DiscreteEstimator; import java.io.Serializable; /** * This class represents a discrete probability distribution * over a finite number of values. * <p> * In the present implementation, objects of type * <code> DiscreteDistribution </code> are in fact immutable, * so all one can do is create objects and retrieve information, * such as median and mean, from them. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class DiscreteDistribution implements Serializable, RevisionHandler { /** for serialization. */ private static final long serialVersionUID = 1954630934425689828L; /** * small tolerance to account for rounding errors when working * with doubles */ private static final double TOLERANCE=Utils.SMALL; /** the array of probabilities */ private double[] m_dd; /** * Create a <code> DiscreteDistribution </code> based on a * <code> DiscreteEstimator. </code> * * @param e the <code> DiscreteEstimator </code> */ public DiscreteDistribution(DiscreteEstimator e) { m_dd = new double[e.getNumSymbols()]; for (int i = 0; i < m_dd.length; i++) { m_dd[i] = e.getProbability(i); } } /** * Create a <code> DiscreteDistribution </code> based on a * <code> CumulativeDiscreteDistribution. </code> * * @param cdf the <code> CumulativeDiscreteDistribution </code> */ public DiscreteDistribution(CumulativeDiscreteDistribution cdf) { m_dd = new double[cdf.getNumSymbols()]; if (m_dd.length != 0) { m_dd[0] = cdf.getCumulativeProbability(0); } for (int i = 1; i < m_dd.length; i++) { m_dd[i] = cdf.getCumulativeProbability(i) - cdf.getCumulativeProbability(i - 1); } } /** * Create a <code> DiscreteDistribution </code> based on an * array of doubles. * * @param dd the array of doubles representing a valid * discrete distribution * @throws IllegalArgumentException if <code> dd </code> * does not represent a valid discrete distribution */ public DiscreteDistribution(double[] dd) throws IllegalArgumentException { if (!validDiscreteDistribution(dd)) { throw new IllegalArgumentException ("Not a valid discrete distribution"); } m_dd = new double[dd.length]; System.arraycopy(dd,0,m_dd,0,dd.length); } /** * Get the number of elements over which the <code> * DiscreteDistribution </code> is defined. * * @return the number of elements over which the <code> * DiscreteDistribution </code> is defined */ public int getNumSymbols() { return (m_dd != null) ? m_dd.length : 0; } /** * Get the probability of finding the element at * a specified index. * * @param index the index of the required element * @return the probability of finding the specified element */ public double getProbability(int index) { return m_dd[index]; } /** * Calculate the mean of the distribution. The scores for * calculating the mean start from 0 and have step size one, * i.e. if there are n elements then the scores are 0,1,...,n-1. * * @return the mean of the distribution */ public double mean() { double mean = 0; for (int i = 1; i < m_dd.length; i++) { mean += i * m_dd[i]; } return mean; } /** * Calculate the median of the distribution. This means * the following: if there is a label m such that * P(x &lt;= m) &gt;= &frac12; and * P(x &gt;= m) &gt;= &frac12; then this label is returned. * If there is no such label, an interpolation between the * smallest label satisfying the first condition and the * largest label satisfying the second condition is performed. * The returned value is thus either an element label, or * exactly between two element labels. * * @return the median of the distribution. **/ public double median() { /* cumulative probabilities starting from the left and * right respectively */ double cl=m_dd[0]; double cr=m_dd[m_dd.length - 1]; // cumulative left and right int i = 0; while(cl < 0.5) { cl += m_dd[++i]; // pre-increment } int j = m_dd.length - 1; while(cr < 0.5) { cr += m_dd[--j]; // pre-increment } return i == j ? i : ( (double) (i + j) ) / 2; } /** * Get a sorted array containing the indices of the elements with * maximal probability. * * @return an array of class indices with maximal probability. */ public int[] modes() { int[] mm = new int[m_dd.length]; double max = m_dd[0]; int nr = 1; // number of<SUF> for (int i = 1; i < m_dd.length; i++) { if (m_dd[i] > max + TOLERANCE) { // new maximum max = m_dd[i]; mm[0] = i; nr = 1; } else if (Math.abs(m_dd[i] - max) < TOLERANCE) { mm[nr++] = i; } } // trim to correct size int[] modes = new int[nr]; System.arraycopy(mm, 0, modes, 0, nr); return modes; } /** * Convert the <code> DiscreteDistribution </code> to an * array of doubles. * * @return an array of doubles representing the * <code> DiscreteDistribution </code> */ public double[] toArray() { double[] dd = new double[m_dd.length]; System.arraycopy(m_dd, 0, dd, 0, dd.length); return dd; } /** * Get a string representation of the given <code> * DiscreteDistribution. </code> * * @return a string representation of this object */ public String toString() { // XXX MAYBE WE SHOULD USE STRINGBUFFER AND FIXED WIDTH ... String s = "[" + getNumSymbols() + "]:"; for (int i = 0; i < getNumSymbols(); i++) { s += " " + getProbability(i); } return s; } /** * Checks if <code> this </code> is dominated by <code> dd. </code> * @param dd the DiscreteDistribution to compare to * @return <code> true </code> if <code> this </code> is dominated by * <code> dd </code>, <code> false </code> otherwise * @throws IllegalArgumentException if the two distributions don't * have the same length */ public boolean stochasticDominatedBy(DiscreteDistribution dd) throws IllegalArgumentException { return (new CumulativeDiscreteDistribution(this)). stochasticDominatedBy (new CumulativeDiscreteDistribution(dd)); } /** * Checks if the given array of doubles represents a valid discrete * distribution. * * @param dd an array holding the doubles * @return <code> true </code> if <code> dd </code> is a valid discrete distribution, * <code> false </code> otherwise */ private static boolean validDiscreteDistribution(double[] dd) { if (dd == null || dd.length == 0) { return false; } double sum = 0; for (int i = 0; i < dd.length; i++) { if (dd[i] < 0) { return false; } sum += dd[i]; } return !(Math.abs(sum - 1) > TOLERANCE); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204190_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DiscreteDistribution.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.estimators.DiscreteEstimator; import weka.core.Utils; /** * This class represents a discrete probability distribution * over a finite number of values. * <p> * In the present implementation, objects of type * <code> DiscreteDistribution </code> are in fact immutable, * so all one can do is create objects and retrieve information, * such as median and mean, from them. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class DiscreteDistribution { /** * small tolerance to account for rounding errors when working * with doubles */ private static final double TOLERANCE=Utils.SMALL; /** the array of probabilities */ private double[] m_dd; /** * Create a <code> DiscreteDistribution </code> based on a * <code> DiscreteEstimator. </code> * * @param e the <code> DiscreteEstimator </code> */ public DiscreteDistribution(DiscreteEstimator e) { m_dd = new double[e.getNumSymbols()]; for (int i = 0; i < m_dd.length; i++) { m_dd[i] = e.getProbability(i); } } /** * Create a <code> DiscreteDistribution </code> based on a * <code> CumulativeDiscreteDistribution. </code> * * @param cdf the <code> CumulativeDiscreteDistribution </code> */ public DiscreteDistribution(CumulativeDiscreteDistribution cdf) { m_dd = new double[cdf.getNumSymbols()]; if (m_dd.length != 0) { m_dd[0] = cdf.getCumulativeProbability(0); } for (int i = 1; i < m_dd.length; i++) { m_dd[i] = cdf.getCumulativeProbability(i) - cdf.getCumulativeProbability(i - 1); } } /** * Create a <code> DiscreteDistribution </code> based on an * array of doubles. * * @param dd the array of doubles representing a valid * discrete distribution * @throws IllegalArgumentException if <code> dd </code> * does not represent a valid discrete distribution */ public DiscreteDistribution(double[] dd) throws IllegalArgumentException { if (!validDiscreteDistribution(dd)) { throw new IllegalArgumentException ("Not a valid discrete distribution"); } m_dd = new double[dd.length]; System.arraycopy(dd,0,m_dd,0,dd.length); } /** * Get the number of elements over which the <code> * DiscreteDistribution </code> is defined. * * @return the number of elements over which the <code> * DiscreteDistribution </code> is defined */ public int getNumSymbols() { return (m_dd != null) ? m_dd.length : 0; } /** * Get the probability of finding the element at * a specified index. * * @param index the index of the required element * @return the probability of finding the specified element */ public double getProbability(int index) { return m_dd[index]; } /** * Calculate the mean of the distribution. The scores for * calculating the mean start from 0 and have step size one, * i.e. if there are n elements then the scores are 0,1,...,n-1. * * @return the mean of the distribution */ public double mean() { double mean = 0; for (int i = 1; i < m_dd.length; i++) { mean += i * m_dd[i]; } return mean; } /** * Calculate the median of the distribution. This means * the following: if there is a label m such that * P(x &lt;= m) &gt;= &frac12; and * P(x &gt;= m) &gt;= &frac12; then this label is returned. * If there is no such label, an interpolation between the * smallest label satisfying the first condition and the * largest label satisfying the second condition is performed. * The returned value is thus either an element label, or * exactly between two element labels. * * @return the median of the distribution. **/ public double median() { /* cumulative probabilities starting from the left and * right respectively */ double cl=m_dd[0]; double cr=m_dd[m_dd.length - 1]; // cumulative left and right int i = 0; while(cl < 0.5) { cl += m_dd[++i]; // pre-increment } int j = m_dd.length - 1; while(cr < 0.5) { cr += m_dd[--j]; // pre-increment } return i == j ? i : ( (double) (i + j) ) / 2; } /** * Get a sorted array containing the indices of the elements with * maximal probability. * * @return an array of class indices with maximal probability. */ public int[] modes() { int[] mm = new int[m_dd.length]; double max = m_dd[0]; int nr = 1; // number of relevant elements in mm for (int i = 1; i < m_dd.length; i++) { if (m_dd[i] > max + TOLERANCE) { // new maximum max = m_dd[i]; mm[0] = i; nr = 1; } else if (Math.abs(m_dd[i] - max) < TOLERANCE) { mm[nr++] = i; } } // trim to correct size int[] modes = new int[nr]; System.arraycopy(mm, 0, modes, 0, nr); return modes; } /** * Convert the <code> DiscreteDistribution </code> to an * array of doubles. * * @return an array of doubles representing the * <code> DiscreteDistribution </code> */ public double[] toArray() { double[] dd = new double[m_dd.length]; System.arraycopy(m_dd, 0, dd, 0, dd.length); return dd; } /** * Get a string representation of the given <code> * DiscreteDistribution. </code> * * @return a string representation of this object */ public String toString() { // XXX MAYBE WE SHOULD USE STRINGBUFFER AND FIXED WIDTH ... String s = "[" + getNumSymbols() + "]:"; for (int i = 0; i < getNumSymbols(); i++) { s += " " + getProbability(i); } return s; } /** * Checks if <code> this </code> is dominated by <code> dd. </code> * @param dd the DiscreteDistribution to compare to * @return <code> true </code> if <code> this </code> is dominated by * <code> dd </code>, <code> false </code> otherwise * @throws IllegalArgumentException if the two distributions don't * have the same length */ public boolean stochasticDominatedBy(DiscreteDistribution dd) throws IllegalArgumentException { return (new CumulativeDiscreteDistribution(this)). stochasticDominatedBy (new CumulativeDiscreteDistribution(dd)); } /** * Checks if the given array of doubles represents a valid discrete * distribution. * * @param dd an array holding the doubles * @return <code> true </code> if <code> dd </code> is a valid discrete distribution, * <code> false </code> otherwise */ private static boolean validDiscreteDistribution(double[] dd) { if (dd == null || dd.length == 0) { return false; } double sum = 0; for (int i = 0; i < dd.length; i++) { if (dd[i] < 0) { return false; } sum += dd[i]; } return !(Math.abs(sum - 1) > TOLERANCE); } }
svn2github/weka
tags/before_waikato/weka/classifiers/misc/monotone/DiscreteDistribution.java
2,364
/* * DiscreteDistribution.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DiscreteDistribution.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.estimators.DiscreteEstimator; import weka.core.Utils; /** * This class represents a discrete probability distribution * over a finite number of values. * <p> * In the present implementation, objects of type * <code> DiscreteDistribution </code> are in fact immutable, * so all one can do is create objects and retrieve information, * such as median and mean, from them. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class DiscreteDistribution { /** * small tolerance to account for rounding errors when working * with doubles */ private static final double TOLERANCE=Utils.SMALL; /** the array of probabilities */ private double[] m_dd; /** * Create a <code> DiscreteDistribution </code> based on a * <code> DiscreteEstimator. </code> * * @param e the <code> DiscreteEstimator </code> */ public DiscreteDistribution(DiscreteEstimator e) { m_dd = new double[e.getNumSymbols()]; for (int i = 0; i < m_dd.length; i++) { m_dd[i] = e.getProbability(i); } } /** * Create a <code> DiscreteDistribution </code> based on a * <code> CumulativeDiscreteDistribution. </code> * * @param cdf the <code> CumulativeDiscreteDistribution </code> */ public DiscreteDistribution(CumulativeDiscreteDistribution cdf) { m_dd = new double[cdf.getNumSymbols()]; if (m_dd.length != 0) { m_dd[0] = cdf.getCumulativeProbability(0); } for (int i = 1; i < m_dd.length; i++) { m_dd[i] = cdf.getCumulativeProbability(i) - cdf.getCumulativeProbability(i - 1); } } /** * Create a <code> DiscreteDistribution </code> based on an * array of doubles. * * @param dd the array of doubles representing a valid * discrete distribution * @throws IllegalArgumentException if <code> dd </code> * does not represent a valid discrete distribution */ public DiscreteDistribution(double[] dd) throws IllegalArgumentException { if (!validDiscreteDistribution(dd)) { throw new IllegalArgumentException ("Not a valid discrete distribution"); } m_dd = new double[dd.length]; System.arraycopy(dd,0,m_dd,0,dd.length); } /** * Get the number of elements over which the <code> * DiscreteDistribution </code> is defined. * * @return the number of elements over which the <code> * DiscreteDistribution </code> is defined */ public int getNumSymbols() { return (m_dd != null) ? m_dd.length : 0; } /** * Get the probability of finding the element at * a specified index. * * @param index the index of the required element * @return the probability of finding the specified element */ public double getProbability(int index) { return m_dd[index]; } /** * Calculate the mean of the distribution. The scores for * calculating the mean start from 0 and have step size one, * i.e. if there are n elements then the scores are 0,1,...,n-1. * * @return the mean of the distribution */ public double mean() { double mean = 0; for (int i = 1; i < m_dd.length; i++) { mean += i * m_dd[i]; } return mean; } /** * Calculate the median of the distribution. This means * the following: if there is a label m such that * P(x &lt;= m) &gt;= &frac12; and * P(x &gt;= m) &gt;= &frac12; then this label is returned. * If there is no such label, an interpolation between the * smallest label satisfying the first condition and the * largest label satisfying the second condition is performed. * The returned value is thus either an element label, or * exactly between two element labels. * * @return the median of the distribution. **/ public double median() { /* cumulative probabilities starting from the left and * right respectively */ double cl=m_dd[0]; double cr=m_dd[m_dd.length - 1]; // cumulative left and right int i = 0; while(cl < 0.5) { cl += m_dd[++i]; // pre-increment } int j = m_dd.length - 1; while(cr < 0.5) { cr += m_dd[--j]; // pre-increment } return i == j ? i : ( (double) (i + j) ) / 2; } /** * Get a sorted array containing the indices of the elements with * maximal probability. * * @return an array of class indices with maximal probability. */ public int[] modes() { int[] mm = new int[m_dd.length]; double max = m_dd[0]; int nr = 1; // number of relevant elements in mm for (int i = 1; i < m_dd.length; i++) { if (m_dd[i] > max + TOLERANCE) { // new maximum max = m_dd[i]; mm[0] = i; nr = 1; } else if (Math.abs(m_dd[i] - max) < TOLERANCE) { mm[nr++] = i; } } // trim to correct size int[] modes = new int[nr]; System.arraycopy(mm, 0, modes, 0, nr); return modes; } /** * Convert the <code> DiscreteDistribution </code> to an * array of doubles. * * @return an array of doubles representing the * <code> DiscreteDistribution </code> */ public double[] toArray() { double[] dd = new double[m_dd.length]; System.arraycopy(m_dd, 0, dd, 0, dd.length); return dd; } /** * Get a string representation of the given <code> * DiscreteDistribution. </code> * * @return a string representation of this object */ public String toString() { // XXX MAYBE WE SHOULD USE STRINGBUFFER AND FIXED WIDTH ... String s = "[" + getNumSymbols() + "]:"; for (int i = 0; i < getNumSymbols(); i++) { s += " " + getProbability(i); } return s; } /** * Checks if <code> this </code> is dominated by <code> dd. </code> * @param dd the DiscreteDistribution to compare to * @return <code> true </code> if <code> this </code> is dominated by * <code> dd </code>, <code> false </code> otherwise * @throws IllegalArgumentException if the two distributions don't * have the same length */ public boolean stochasticDominatedBy(DiscreteDistribution dd) throws IllegalArgumentException { return (new CumulativeDiscreteDistribution(this)). stochasticDominatedBy (new CumulativeDiscreteDistribution(dd)); } /** * Checks if the given array of doubles represents a valid discrete * distribution. * * @param dd an array holding the doubles * @return <code> true </code> if <code> dd </code> is a valid discrete distribution, * <code> false </code> otherwise */ private static boolean validDiscreteDistribution(double[] dd) { if (dd == null || dd.length == 0) { return false; } double sum = 0; for (int i = 0; i < dd.length; i++) { if (dd[i] < 0) { return false; } sum += dd[i]; } return !(Math.abs(sum - 1) > TOLERANCE); } }
204190_15
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DiscreteDistribution.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.estimators.DiscreteEstimator; import weka.core.Utils; /** * This class represents a discrete probability distribution * over a finite number of values. * <p> * In the present implementation, objects of type * <code> DiscreteDistribution </code> are in fact immutable, * so all one can do is create objects and retrieve information, * such as median and mean, from them. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class DiscreteDistribution { /** * small tolerance to account for rounding errors when working * with doubles */ private static final double TOLERANCE=Utils.SMALL; /** the array of probabilities */ private double[] m_dd; /** * Create a <code> DiscreteDistribution </code> based on a * <code> DiscreteEstimator. </code> * * @param e the <code> DiscreteEstimator </code> */ public DiscreteDistribution(DiscreteEstimator e) { m_dd = new double[e.getNumSymbols()]; for (int i = 0; i < m_dd.length; i++) { m_dd[i] = e.getProbability(i); } } /** * Create a <code> DiscreteDistribution </code> based on a * <code> CumulativeDiscreteDistribution. </code> * * @param cdf the <code> CumulativeDiscreteDistribution </code> */ public DiscreteDistribution(CumulativeDiscreteDistribution cdf) { m_dd = new double[cdf.getNumSymbols()]; if (m_dd.length != 0) { m_dd[0] = cdf.getCumulativeProbability(0); } for (int i = 1; i < m_dd.length; i++) { m_dd[i] = cdf.getCumulativeProbability(i) - cdf.getCumulativeProbability(i - 1); } } /** * Create a <code> DiscreteDistribution </code> based on an * array of doubles. * * @param dd the array of doubles representing a valid * discrete distribution * @throws IllegalArgumentException if <code> dd </code> * does not represent a valid discrete distribution */ public DiscreteDistribution(double[] dd) throws IllegalArgumentException { if (!validDiscreteDistribution(dd)) { throw new IllegalArgumentException ("Not a valid discrete distribution"); } m_dd = new double[dd.length]; System.arraycopy(dd,0,m_dd,0,dd.length); } /** * Get the number of elements over which the <code> * DiscreteDistribution </code> is defined. * * @return the number of elements over which the <code> * DiscreteDistribution </code> is defined */ public int getNumSymbols() { return (m_dd != null) ? m_dd.length : 0; } /** * Get the probability of finding the element at * a specified index. * * @param index the index of the required element * @return the probability of finding the specified element */ public double getProbability(int index) { return m_dd[index]; } /** * Calculate the mean of the distribution. The scores for * calculating the mean start from 0 and have step size one, * i.e. if there are n elements then the scores are 0,1,...,n-1. * * @return the mean of the distribution */ public double mean() { double mean = 0; for (int i = 1; i < m_dd.length; i++) { mean += i * m_dd[i]; } return mean; } /** * Calculate the median of the distribution. This means * the following: if there is a label m such that * P(x &lt;= m) &gt;= &frac12; and * P(x &gt;= m) &gt;= &frac12; then this label is returned. * If there is no such label, an interpolation between the * smallest label satisfying the first condition and the * largest label satisfying the second condition is performed. * The returned value is thus either an element label, or * exactly between two element labels. * * @return the median of the distribution. **/ public double median() { /* cumulative probabilities starting from the left and * right respectively */ double cl=m_dd[0]; double cr=m_dd[m_dd.length - 1]; // cumulative left and right int i = 0; while(cl < 0.5) { cl += m_dd[++i]; // pre-increment } int j = m_dd.length - 1; while(cr < 0.5) { cr += m_dd[--j]; // pre-increment } return i == j ? i : ( (double) (i + j) ) / 2; } /** * Get a sorted array containing the indices of the elements with * maximal probability. * * @return an array of class indices with maximal probability. */ public int[] modes() { int[] mm = new int[m_dd.length]; double max = m_dd[0]; int nr = 1; // number of relevant elements in mm for (int i = 1; i < m_dd.length; i++) { if (m_dd[i] > max + TOLERANCE) { // new maximum max = m_dd[i]; mm[0] = i; nr = 1; } else if (Math.abs(m_dd[i] - max) < TOLERANCE) { mm[nr++] = i; } } // trim to correct size int[] modes = new int[nr]; System.arraycopy(mm, 0, modes, 0, nr); return modes; } /** * Convert the <code> DiscreteDistribution </code> to an * array of doubles. * * @return an array of doubles representing the * <code> DiscreteDistribution </code> */ public double[] toArray() { double[] dd = new double[m_dd.length]; System.arraycopy(m_dd, 0, dd, 0, dd.length); return dd; } /** * Get a string representation of the given <code> * DiscreteDistribution. </code> * * @return a string representation of this object */ public String toString() { // XXX MAYBE WE SHOULD USE STRINGBUFFER AND FIXED WIDTH ... String s = "[" + getNumSymbols() + "]:"; for (int i = 0; i < getNumSymbols(); i++) { s += " " + getProbability(i); } return s; } /** * Checks if <code> this </code> is dominated by <code> dd. </code> * @param dd the DiscreteDistribution to compare to * @return <code> true </code> if <code> this </code> is dominated by * <code> dd </code>, <code> false </code> otherwise * @throws IllegalArgumentException if the two distributions don't * have the same length */ public boolean stochasticDominatedBy(DiscreteDistribution dd) throws IllegalArgumentException { return (new CumulativeDiscreteDistribution(this)). stochasticDominatedBy (new CumulativeDiscreteDistribution(dd)); } /** * Checks if the given array of doubles represents a valid discrete * distribution. * * @param dd an array holding the doubles * @return <code> true </code> if <code> dd </code> is a valid discrete distribution, * <code> false </code> otherwise */ private static boolean validDiscreteDistribution(double[] dd) { if (dd == null || dd.length == 0) { return false; } double sum = 0; for (int i = 0; i < dd.length; i++) { if (dd[i] < 0) { return false; } sum += dd[i]; } return !(Math.abs(sum - 1) > TOLERANCE); } }
svn2github/weka
tags/before_waikato/weka/classifiers/misc/monotone/DiscreteDistribution.java
2,364
// number of relevant elements in mm
line_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DiscreteDistribution.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.estimators.DiscreteEstimator; import weka.core.Utils; /** * This class represents a discrete probability distribution * over a finite number of values. * <p> * In the present implementation, objects of type * <code> DiscreteDistribution </code> are in fact immutable, * so all one can do is create objects and retrieve information, * such as median and mean, from them. * </p> * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class DiscreteDistribution { /** * small tolerance to account for rounding errors when working * with doubles */ private static final double TOLERANCE=Utils.SMALL; /** the array of probabilities */ private double[] m_dd; /** * Create a <code> DiscreteDistribution </code> based on a * <code> DiscreteEstimator. </code> * * @param e the <code> DiscreteEstimator </code> */ public DiscreteDistribution(DiscreteEstimator e) { m_dd = new double[e.getNumSymbols()]; for (int i = 0; i < m_dd.length; i++) { m_dd[i] = e.getProbability(i); } } /** * Create a <code> DiscreteDistribution </code> based on a * <code> CumulativeDiscreteDistribution. </code> * * @param cdf the <code> CumulativeDiscreteDistribution </code> */ public DiscreteDistribution(CumulativeDiscreteDistribution cdf) { m_dd = new double[cdf.getNumSymbols()]; if (m_dd.length != 0) { m_dd[0] = cdf.getCumulativeProbability(0); } for (int i = 1; i < m_dd.length; i++) { m_dd[i] = cdf.getCumulativeProbability(i) - cdf.getCumulativeProbability(i - 1); } } /** * Create a <code> DiscreteDistribution </code> based on an * array of doubles. * * @param dd the array of doubles representing a valid * discrete distribution * @throws IllegalArgumentException if <code> dd </code> * does not represent a valid discrete distribution */ public DiscreteDistribution(double[] dd) throws IllegalArgumentException { if (!validDiscreteDistribution(dd)) { throw new IllegalArgumentException ("Not a valid discrete distribution"); } m_dd = new double[dd.length]; System.arraycopy(dd,0,m_dd,0,dd.length); } /** * Get the number of elements over which the <code> * DiscreteDistribution </code> is defined. * * @return the number of elements over which the <code> * DiscreteDistribution </code> is defined */ public int getNumSymbols() { return (m_dd != null) ? m_dd.length : 0; } /** * Get the probability of finding the element at * a specified index. * * @param index the index of the required element * @return the probability of finding the specified element */ public double getProbability(int index) { return m_dd[index]; } /** * Calculate the mean of the distribution. The scores for * calculating the mean start from 0 and have step size one, * i.e. if there are n elements then the scores are 0,1,...,n-1. * * @return the mean of the distribution */ public double mean() { double mean = 0; for (int i = 1; i < m_dd.length; i++) { mean += i * m_dd[i]; } return mean; } /** * Calculate the median of the distribution. This means * the following: if there is a label m such that * P(x &lt;= m) &gt;= &frac12; and * P(x &gt;= m) &gt;= &frac12; then this label is returned. * If there is no such label, an interpolation between the * smallest label satisfying the first condition and the * largest label satisfying the second condition is performed. * The returned value is thus either an element label, or * exactly between two element labels. * * @return the median of the distribution. **/ public double median() { /* cumulative probabilities starting from the left and * right respectively */ double cl=m_dd[0]; double cr=m_dd[m_dd.length - 1]; // cumulative left and right int i = 0; while(cl < 0.5) { cl += m_dd[++i]; // pre-increment } int j = m_dd.length - 1; while(cr < 0.5) { cr += m_dd[--j]; // pre-increment } return i == j ? i : ( (double) (i + j) ) / 2; } /** * Get a sorted array containing the indices of the elements with * maximal probability. * * @return an array of class indices with maximal probability. */ public int[] modes() { int[] mm = new int[m_dd.length]; double max = m_dd[0]; int nr = 1; // number of<SUF> for (int i = 1; i < m_dd.length; i++) { if (m_dd[i] > max + TOLERANCE) { // new maximum max = m_dd[i]; mm[0] = i; nr = 1; } else if (Math.abs(m_dd[i] - max) < TOLERANCE) { mm[nr++] = i; } } // trim to correct size int[] modes = new int[nr]; System.arraycopy(mm, 0, modes, 0, nr); return modes; } /** * Convert the <code> DiscreteDistribution </code> to an * array of doubles. * * @return an array of doubles representing the * <code> DiscreteDistribution </code> */ public double[] toArray() { double[] dd = new double[m_dd.length]; System.arraycopy(m_dd, 0, dd, 0, dd.length); return dd; } /** * Get a string representation of the given <code> * DiscreteDistribution. </code> * * @return a string representation of this object */ public String toString() { // XXX MAYBE WE SHOULD USE STRINGBUFFER AND FIXED WIDTH ... String s = "[" + getNumSymbols() + "]:"; for (int i = 0; i < getNumSymbols(); i++) { s += " " + getProbability(i); } return s; } /** * Checks if <code> this </code> is dominated by <code> dd. </code> * @param dd the DiscreteDistribution to compare to * @return <code> true </code> if <code> this </code> is dominated by * <code> dd </code>, <code> false </code> otherwise * @throws IllegalArgumentException if the two distributions don't * have the same length */ public boolean stochasticDominatedBy(DiscreteDistribution dd) throws IllegalArgumentException { return (new CumulativeDiscreteDistribution(this)). stochasticDominatedBy (new CumulativeDiscreteDistribution(dd)); } /** * Checks if the given array of doubles represents a valid discrete * distribution. * * @param dd an array holding the doubles * @return <code> true </code> if <code> dd </code> is a valid discrete distribution, * <code> false </code> otherwise */ private static boolean validDiscreteDistribution(double[] dd) { if (dd == null || dd.length == 0) { return false; } double sum = 0; for (int i = 0; i < dd.length; i++) { if (dd[i] < 0) { return false; } sum += dd[i]; } return !(Math.abs(sum - 1) > TOLERANCE); } }
204192_1
package be.ucll.java.mobile.ucllbackgroundservices; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.location.Location; import android.location.LocationManager; import android.os.Build; import android.util.Log; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.core.app.NotificationCompat; import androidx.core.app.NotificationManagerCompat; import androidx.work.Worker; import androidx.work.WorkerParameters; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.JsonObjectRequest; import com.android.volley.toolbox.Volley; import com.google.gson.Gson; import org.json.JSONObject; import be.ucll.java.mobile.ucllbackgroundservices.model.WeatherSearch; // BackGroundWorker extends the Abstract class 'Worker' public class BackGroundWorker extends Worker implements Response.Listener, Response.ErrorListener { private static final String TAG = BackGroundWorker.class.getSimpleName(); public static final CharSequence CHANNEL_NAME = "UCLL BG Worker notifs"; public static final String CHANNEL_ID = "UCLL_NOTIFICATIONS"; public static final String CHANNEL_DESCRIPTION = "Shows background worker notifications whenever a periodic work request is handled by the work manager"; public static final int NOTIFICATION_ID = 1; public static final CharSequence NOTIFICATION_TITLE = "Current temperature"; private Context ctx; // Constructor public BackGroundWorker(@NonNull Context appContext, @NonNull WorkerParameters workerParams) { super(appContext, workerParams); } @NonNull @Override public Result doWork() { ctx = getApplicationContext(); try { Log.i(TAG, "Submitting Weather Web Service request"); // Hardgecodeerd op NB/OL van de UCLL Campus Proximus in Heverlee submitWeatherSearch(50.846105F, 4.727910F); // Alternatief gebaseerd op de 'huidige' locatie als je zin hebt om uit te werken /* <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> LocationManager locationMngr = (LocationManager) ctx.getSystemService(Context.LOCATION_SERVICE); locationMngr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, -1, this); MainActivity implements LocationListener @Override public void onLocationChanged(Location location) { // ... } */ return Result.success(); } catch (Throwable throwable) { Log.e(TAG, "Error notifying user", throwable); return Result.failure(); } } @Override public void onResponse(Object response) { // Cast into Gson JSONObject JSONObject jsono = (JSONObject) response; WeatherSearch ws = new Gson().fromJson(jsono.toString(), WeatherSearch.class); if (ws != null && ws.getWeatherObservation() != null) { String temp = ws.getWeatherObservation().getTemperature(); if (temp != null) { String message = "Heverlee: " + temp + " °C"; Log.i(TAG, "Creating notification with message: " + message); createNotification(message, ctx); } } } private void createNotification(String message, Context ctx) { // Make a NotificationChannel if possible. Only available since API level 26+ // A channel groups notifications together. It overrides 'old' notifications if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_DEFAULT); channel.setDescription(CHANNEL_DESCRIPTION); // Add the channel NotificationManager nm = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE); if (nm != null) { nm.createNotificationChannel(channel); } } Intent intent = new Intent(ctx, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); PendingIntent pi = PendingIntent.getActivity(ctx, 0, intent, 0); // Create the notification NotificationCompat.Builder builder = new NotificationCompat.Builder(ctx, CHANNEL_ID); builder.setSmallIcon(android.R.drawable.btn_star) .setContentTitle(NOTIFICATION_TITLE) .setContentText(message) .setPriority(NotificationCompat.PRIORITY_DEFAULT) .setContentIntent(pi) // Triggers MainActivity to open .setAutoCancel(true) // Removes the notification when clicked on it .setVibrate(new long[]{1000, 1000}); // Vibrate 2 times 1 second. This requires the VIBRATE Permission declaration in AndroidManifest.xml // Show the notification NotificationManagerCompat.from(ctx).notify(NOTIFICATION_ID, builder.build()); } // Weather Web Service data private static final String URL_GEONAMES_WEATHER_PART1 = "http://api.geonames.org/findNearByWeatherJSON?lat="; private static final String URL_GEONAMES_WEATHER_PART2 = "&lng="; private static final String URL_GEONAMES_WEATHER_PART3 = "&username=kbogaert"; private void submitWeatherSearch(float lat, float lng) { // Instantiate the RequestQueue for asynchronous operations RequestQueue queue = Volley.newRequestQueue(ctx); String url = URL_GEONAMES_WEATHER_PART1 + lat + URL_GEONAMES_WEATHER_PART2 + lng + URL_GEONAMES_WEATHER_PART3; Log.d(TAG, "URL: " + url); // Prepare the request to be send out towards the REST service OMDB_API_URL.. JsonObjectRequest req = new JsonObjectRequest(Request.Method.GET, url, null, this, this); // Add the request to the RequestQueue for asynchronous retrieval on separate thread. queue.add(req); } @Override public void onErrorResponse(VolleyError error) { // This is when the call upon the web service remains unanswered or in error Toast.makeText(ctx, error.getMessage(), Toast.LENGTH_SHORT).show(); Log.e(TAG, "Error calling service", error); } }
kdssoftware/UCLL-projects
Java/UCLL-java-mobile-background-services/app/src/main/java/be/ucll/java/mobile/ucllbackgroundservices/BackGroundWorker.java
1,662
// Hardgecodeerd op NB/OL van de UCLL Campus Proximus in Heverlee
line_comment
nl
package be.ucll.java.mobile.ucllbackgroundservices; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.location.Location; import android.location.LocationManager; import android.os.Build; import android.util.Log; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.core.app.NotificationCompat; import androidx.core.app.NotificationManagerCompat; import androidx.work.Worker; import androidx.work.WorkerParameters; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.JsonObjectRequest; import com.android.volley.toolbox.Volley; import com.google.gson.Gson; import org.json.JSONObject; import be.ucll.java.mobile.ucllbackgroundservices.model.WeatherSearch; // BackGroundWorker extends the Abstract class 'Worker' public class BackGroundWorker extends Worker implements Response.Listener, Response.ErrorListener { private static final String TAG = BackGroundWorker.class.getSimpleName(); public static final CharSequence CHANNEL_NAME = "UCLL BG Worker notifs"; public static final String CHANNEL_ID = "UCLL_NOTIFICATIONS"; public static final String CHANNEL_DESCRIPTION = "Shows background worker notifications whenever a periodic work request is handled by the work manager"; public static final int NOTIFICATION_ID = 1; public static final CharSequence NOTIFICATION_TITLE = "Current temperature"; private Context ctx; // Constructor public BackGroundWorker(@NonNull Context appContext, @NonNull WorkerParameters workerParams) { super(appContext, workerParams); } @NonNull @Override public Result doWork() { ctx = getApplicationContext(); try { Log.i(TAG, "Submitting Weather Web Service request"); // Hardgecodeerd op<SUF> submitWeatherSearch(50.846105F, 4.727910F); // Alternatief gebaseerd op de 'huidige' locatie als je zin hebt om uit te werken /* <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> LocationManager locationMngr = (LocationManager) ctx.getSystemService(Context.LOCATION_SERVICE); locationMngr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, -1, this); MainActivity implements LocationListener @Override public void onLocationChanged(Location location) { // ... } */ return Result.success(); } catch (Throwable throwable) { Log.e(TAG, "Error notifying user", throwable); return Result.failure(); } } @Override public void onResponse(Object response) { // Cast into Gson JSONObject JSONObject jsono = (JSONObject) response; WeatherSearch ws = new Gson().fromJson(jsono.toString(), WeatherSearch.class); if (ws != null && ws.getWeatherObservation() != null) { String temp = ws.getWeatherObservation().getTemperature(); if (temp != null) { String message = "Heverlee: " + temp + " °C"; Log.i(TAG, "Creating notification with message: " + message); createNotification(message, ctx); } } } private void createNotification(String message, Context ctx) { // Make a NotificationChannel if possible. Only available since API level 26+ // A channel groups notifications together. It overrides 'old' notifications if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_DEFAULT); channel.setDescription(CHANNEL_DESCRIPTION); // Add the channel NotificationManager nm = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE); if (nm != null) { nm.createNotificationChannel(channel); } } Intent intent = new Intent(ctx, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); PendingIntent pi = PendingIntent.getActivity(ctx, 0, intent, 0); // Create the notification NotificationCompat.Builder builder = new NotificationCompat.Builder(ctx, CHANNEL_ID); builder.setSmallIcon(android.R.drawable.btn_star) .setContentTitle(NOTIFICATION_TITLE) .setContentText(message) .setPriority(NotificationCompat.PRIORITY_DEFAULT) .setContentIntent(pi) // Triggers MainActivity to open .setAutoCancel(true) // Removes the notification when clicked on it .setVibrate(new long[]{1000, 1000}); // Vibrate 2 times 1 second. This requires the VIBRATE Permission declaration in AndroidManifest.xml // Show the notification NotificationManagerCompat.from(ctx).notify(NOTIFICATION_ID, builder.build()); } // Weather Web Service data private static final String URL_GEONAMES_WEATHER_PART1 = "http://api.geonames.org/findNearByWeatherJSON?lat="; private static final String URL_GEONAMES_WEATHER_PART2 = "&lng="; private static final String URL_GEONAMES_WEATHER_PART3 = "&username=kbogaert"; private void submitWeatherSearch(float lat, float lng) { // Instantiate the RequestQueue for asynchronous operations RequestQueue queue = Volley.newRequestQueue(ctx); String url = URL_GEONAMES_WEATHER_PART1 + lat + URL_GEONAMES_WEATHER_PART2 + lng + URL_GEONAMES_WEATHER_PART3; Log.d(TAG, "URL: " + url); // Prepare the request to be send out towards the REST service OMDB_API_URL.. JsonObjectRequest req = new JsonObjectRequest(Request.Method.GET, url, null, this, this); // Add the request to the RequestQueue for asynchronous retrieval on separate thread. queue.add(req); } @Override public void onErrorResponse(VolleyError error) { // This is when the call upon the web service remains unanswered or in error Toast.makeText(ctx, error.getMessage(), Toast.LENGTH_SHORT).show(); Log.e(TAG, "Error calling service", error); } }
204192_2
package be.ucll.java.mobile.ucllbackgroundservices; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.location.Location; import android.location.LocationManager; import android.os.Build; import android.util.Log; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.core.app.NotificationCompat; import androidx.core.app.NotificationManagerCompat; import androidx.work.Worker; import androidx.work.WorkerParameters; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.JsonObjectRequest; import com.android.volley.toolbox.Volley; import com.google.gson.Gson; import org.json.JSONObject; import be.ucll.java.mobile.ucllbackgroundservices.model.WeatherSearch; // BackGroundWorker extends the Abstract class 'Worker' public class BackGroundWorker extends Worker implements Response.Listener, Response.ErrorListener { private static final String TAG = BackGroundWorker.class.getSimpleName(); public static final CharSequence CHANNEL_NAME = "UCLL BG Worker notifs"; public static final String CHANNEL_ID = "UCLL_NOTIFICATIONS"; public static final String CHANNEL_DESCRIPTION = "Shows background worker notifications whenever a periodic work request is handled by the work manager"; public static final int NOTIFICATION_ID = 1; public static final CharSequence NOTIFICATION_TITLE = "Current temperature"; private Context ctx; // Constructor public BackGroundWorker(@NonNull Context appContext, @NonNull WorkerParameters workerParams) { super(appContext, workerParams); } @NonNull @Override public Result doWork() { ctx = getApplicationContext(); try { Log.i(TAG, "Submitting Weather Web Service request"); // Hardgecodeerd op NB/OL van de UCLL Campus Proximus in Heverlee submitWeatherSearch(50.846105F, 4.727910F); // Alternatief gebaseerd op de 'huidige' locatie als je zin hebt om uit te werken /* <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> LocationManager locationMngr = (LocationManager) ctx.getSystemService(Context.LOCATION_SERVICE); locationMngr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, -1, this); MainActivity implements LocationListener @Override public void onLocationChanged(Location location) { // ... } */ return Result.success(); } catch (Throwable throwable) { Log.e(TAG, "Error notifying user", throwable); return Result.failure(); } } @Override public void onResponse(Object response) { // Cast into Gson JSONObject JSONObject jsono = (JSONObject) response; WeatherSearch ws = new Gson().fromJson(jsono.toString(), WeatherSearch.class); if (ws != null && ws.getWeatherObservation() != null) { String temp = ws.getWeatherObservation().getTemperature(); if (temp != null) { String message = "Heverlee: " + temp + " °C"; Log.i(TAG, "Creating notification with message: " + message); createNotification(message, ctx); } } } private void createNotification(String message, Context ctx) { // Make a NotificationChannel if possible. Only available since API level 26+ // A channel groups notifications together. It overrides 'old' notifications if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_DEFAULT); channel.setDescription(CHANNEL_DESCRIPTION); // Add the channel NotificationManager nm = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE); if (nm != null) { nm.createNotificationChannel(channel); } } Intent intent = new Intent(ctx, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); PendingIntent pi = PendingIntent.getActivity(ctx, 0, intent, 0); // Create the notification NotificationCompat.Builder builder = new NotificationCompat.Builder(ctx, CHANNEL_ID); builder.setSmallIcon(android.R.drawable.btn_star) .setContentTitle(NOTIFICATION_TITLE) .setContentText(message) .setPriority(NotificationCompat.PRIORITY_DEFAULT) .setContentIntent(pi) // Triggers MainActivity to open .setAutoCancel(true) // Removes the notification when clicked on it .setVibrate(new long[]{1000, 1000}); // Vibrate 2 times 1 second. This requires the VIBRATE Permission declaration in AndroidManifest.xml // Show the notification NotificationManagerCompat.from(ctx).notify(NOTIFICATION_ID, builder.build()); } // Weather Web Service data private static final String URL_GEONAMES_WEATHER_PART1 = "http://api.geonames.org/findNearByWeatherJSON?lat="; private static final String URL_GEONAMES_WEATHER_PART2 = "&lng="; private static final String URL_GEONAMES_WEATHER_PART3 = "&username=kbogaert"; private void submitWeatherSearch(float lat, float lng) { // Instantiate the RequestQueue for asynchronous operations RequestQueue queue = Volley.newRequestQueue(ctx); String url = URL_GEONAMES_WEATHER_PART1 + lat + URL_GEONAMES_WEATHER_PART2 + lng + URL_GEONAMES_WEATHER_PART3; Log.d(TAG, "URL: " + url); // Prepare the request to be send out towards the REST service OMDB_API_URL.. JsonObjectRequest req = new JsonObjectRequest(Request.Method.GET, url, null, this, this); // Add the request to the RequestQueue for asynchronous retrieval on separate thread. queue.add(req); } @Override public void onErrorResponse(VolleyError error) { // This is when the call upon the web service remains unanswered or in error Toast.makeText(ctx, error.getMessage(), Toast.LENGTH_SHORT).show(); Log.e(TAG, "Error calling service", error); } }
kdssoftware/UCLL-projects
Java/UCLL-java-mobile-background-services/app/src/main/java/be/ucll/java/mobile/ucllbackgroundservices/BackGroundWorker.java
1,662
// Alternatief gebaseerd op de 'huidige' locatie als je zin hebt om uit te werken
line_comment
nl
package be.ucll.java.mobile.ucllbackgroundservices; import android.app.NotificationChannel; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.Context; import android.content.Intent; import android.location.Location; import android.location.LocationManager; import android.os.Build; import android.util.Log; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.core.app.NotificationCompat; import androidx.core.app.NotificationManagerCompat; import androidx.work.Worker; import androidx.work.WorkerParameters; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.JsonObjectRequest; import com.android.volley.toolbox.Volley; import com.google.gson.Gson; import org.json.JSONObject; import be.ucll.java.mobile.ucllbackgroundservices.model.WeatherSearch; // BackGroundWorker extends the Abstract class 'Worker' public class BackGroundWorker extends Worker implements Response.Listener, Response.ErrorListener { private static final String TAG = BackGroundWorker.class.getSimpleName(); public static final CharSequence CHANNEL_NAME = "UCLL BG Worker notifs"; public static final String CHANNEL_ID = "UCLL_NOTIFICATIONS"; public static final String CHANNEL_DESCRIPTION = "Shows background worker notifications whenever a periodic work request is handled by the work manager"; public static final int NOTIFICATION_ID = 1; public static final CharSequence NOTIFICATION_TITLE = "Current temperature"; private Context ctx; // Constructor public BackGroundWorker(@NonNull Context appContext, @NonNull WorkerParameters workerParams) { super(appContext, workerParams); } @NonNull @Override public Result doWork() { ctx = getApplicationContext(); try { Log.i(TAG, "Submitting Weather Web Service request"); // Hardgecodeerd op NB/OL van de UCLL Campus Proximus in Heverlee submitWeatherSearch(50.846105F, 4.727910F); // Alternatief gebaseerd<SUF> /* <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> LocationManager locationMngr = (LocationManager) ctx.getSystemService(Context.LOCATION_SERVICE); locationMngr.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10000, -1, this); MainActivity implements LocationListener @Override public void onLocationChanged(Location location) { // ... } */ return Result.success(); } catch (Throwable throwable) { Log.e(TAG, "Error notifying user", throwable); return Result.failure(); } } @Override public void onResponse(Object response) { // Cast into Gson JSONObject JSONObject jsono = (JSONObject) response; WeatherSearch ws = new Gson().fromJson(jsono.toString(), WeatherSearch.class); if (ws != null && ws.getWeatherObservation() != null) { String temp = ws.getWeatherObservation().getTemperature(); if (temp != null) { String message = "Heverlee: " + temp + " °C"; Log.i(TAG, "Creating notification with message: " + message); createNotification(message, ctx); } } } private void createNotification(String message, Context ctx) { // Make a NotificationChannel if possible. Only available since API level 26+ // A channel groups notifications together. It overrides 'old' notifications if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel channel = new NotificationChannel(CHANNEL_ID, CHANNEL_NAME, NotificationManager.IMPORTANCE_DEFAULT); channel.setDescription(CHANNEL_DESCRIPTION); // Add the channel NotificationManager nm = (NotificationManager) ctx.getSystemService(Context.NOTIFICATION_SERVICE); if (nm != null) { nm.createNotificationChannel(channel); } } Intent intent = new Intent(ctx, MainActivity.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); PendingIntent pi = PendingIntent.getActivity(ctx, 0, intent, 0); // Create the notification NotificationCompat.Builder builder = new NotificationCompat.Builder(ctx, CHANNEL_ID); builder.setSmallIcon(android.R.drawable.btn_star) .setContentTitle(NOTIFICATION_TITLE) .setContentText(message) .setPriority(NotificationCompat.PRIORITY_DEFAULT) .setContentIntent(pi) // Triggers MainActivity to open .setAutoCancel(true) // Removes the notification when clicked on it .setVibrate(new long[]{1000, 1000}); // Vibrate 2 times 1 second. This requires the VIBRATE Permission declaration in AndroidManifest.xml // Show the notification NotificationManagerCompat.from(ctx).notify(NOTIFICATION_ID, builder.build()); } // Weather Web Service data private static final String URL_GEONAMES_WEATHER_PART1 = "http://api.geonames.org/findNearByWeatherJSON?lat="; private static final String URL_GEONAMES_WEATHER_PART2 = "&lng="; private static final String URL_GEONAMES_WEATHER_PART3 = "&username=kbogaert"; private void submitWeatherSearch(float lat, float lng) { // Instantiate the RequestQueue for asynchronous operations RequestQueue queue = Volley.newRequestQueue(ctx); String url = URL_GEONAMES_WEATHER_PART1 + lat + URL_GEONAMES_WEATHER_PART2 + lng + URL_GEONAMES_WEATHER_PART3; Log.d(TAG, "URL: " + url); // Prepare the request to be send out towards the REST service OMDB_API_URL.. JsonObjectRequest req = new JsonObjectRequest(Request.Method.GET, url, null, this, this); // Add the request to the RequestQueue for asynchronous retrieval on separate thread. queue.add(req); } @Override public void onErrorResponse(VolleyError error) { // This is when the call upon the web service remains unanswered or in error Toast.makeText(ctx, error.getMessage(), Toast.LENGTH_SHORT).show(); Log.e(TAG, "Error calling service", error); } }
204193_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DistributionUtils.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import weka.estimators.DiscreteEstimator; import java.util.Arrays; /** * Class with some simple methods acting on * <code> CumulativeDiscreteDistribution. </code> * All of the methods in this class are very easily implemented * and the main use of this class is to gather all these methods * in a single place. It could be argued that some of the methods * should be implemented in the class * <code> CumulativeDiscreteDistribution </code> itself. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class DistributionUtils implements RevisionHandler { /** * Constant indicating the maximal number of classes * for which there is a minimal and maximal distribution * present in the pool. * One of the purposes of this class is to serve as a factory * for minimal and maximal cumulative probability distributions. * Since instances of <code> CumulativeDiscreteDistribution </code> * are immutable, we can create them beforehand and reuse them * every time one is needed. */ private static final int MAX_CLASSES = 20; /** * Array filled with minimal cumulative discrete probability * distributions. This means that probability one is given to the * first element. This array serves as a pool for the method * <code> getMinimalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_minimalDistributions; /** * Array filled with maximal cumulative discrete probability * distributions. This means that probability one is given to the * largest element. This array serves as a pool for the method * <code> getMaximalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_maximalDistributions; // fill both static arrays with the correct distributions static { m_minimalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; m_maximalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; for (int i = 1; i <= MAX_CLASSES; i++) { double[] dd = new double[i]; dd[dd.length - 1] = 1; m_maximalDistributions[i] = new CumulativeDiscreteDistribution(dd); Arrays.fill(dd,1); m_minimalDistributions[i] = new CumulativeDiscreteDistribution(dd); } } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameter * @return (1 - s) &times; cdf1 + s &times; cdf2 * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * cdf1.getCumulativeProbability(i) + s * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameters, only the relevant number * of entries is used, so the array may be longer than the common * length of <code> cdf1 </code> and <code> cdf2 </code> * @return (1 - s) &times; cdf1 + s &times; cdf2, or more specifically * a distribution cd such that <code> * cd.getCumulativeProbability(i) = * (1-s[i]) &times; cdf1.getCumulativeProbability(i) + * s[i] &times; cdf2.getCumulativeProbability(i) </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the array <code> s </code> * contains parameters not in the range <code> [0,1] </code> */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double[] s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (cdf1.getNumSymbols() > s.length) { throw new IllegalArgumentException ("Array with interpolation parameters is not " + " long enough"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { if (s[i] < 0 || s[i] > 1) { throw new IllegalArgumentException ("Interpolation parameter exceeds bounds"); } res[i] = (1 - s[i]) * cdf1.getCumulativeProbability(i) + s[i] * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> DiscreteDistribution. </code> * * @param ddf1 the first <code> DiscreteDistribution </code> * @param ddf2 the second <code> DiscreteDistribution </code> * @param s the interpolation parameter * @return <code> (1 - s) &times; ddf1 + s &times; ddf2 </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static DiscreteDistribution interpolate( DiscreteDistribution ddf1, DiscreteDistribution ddf2, double s) throws IllegalArgumentException { if (ddf1.getNumSymbols() != ddf2.getNumSymbols()) { throw new IllegalArgumentException ("DiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[ddf1.getNumSymbols()]; for (int i = 0, n = ddf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * ddf1.getProbability(i) + s * ddf2.getProbability(i); } return new DiscreteDistribution(res); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the minimum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the minimum of the two corresponding components. <br/> * Note: despite of its name, the returned cumulative probability * distribution dominates both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the minimum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMin( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.min(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the maximum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the maximum of the two corresponding components. * Note: despite of its name, the returned cumulative probability * distribution is dominated by both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the maximum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMax( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.max(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Converts a <code> DiscreteEstimator </code> to an array of * doubles. * * @param df the <code> DiscreteEstimator </code> to be converted * @return an array of doubles representing the * <code> DiscreteEstimator </code> */ public static double[] getDistributionArray(DiscreteEstimator df) { double[] dfa = new double[df.getNumSymbols()]; for (int i = 0; i < dfa.length; i++) { dfa[i] = df.getProbability(i); } return dfa; } /** * Get the minimal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the first element. * * @param numClasses the number of elements * @return the minimal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMinimalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_minimalDistributions[numClasses]; } double[] dd = new double[numClasses]; Arrays.fill(dd,1); return new CumulativeDiscreteDistribution(dd); } /** * Get the maximal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the last class. * * @param numClasses the number of elements * @return the maximal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMaximalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_maximalDistributions[numClasses]; } double[] dd = new double[numClasses]; dd[dd.length - 1] = 1; return new CumulativeDiscreteDistribution(dd); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
caglar/jDenetX
src/weka/classifiers/misc/monotone/DistributionUtils.java
3,465
/* * DistributionUtils.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * DistributionUtils.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import weka.estimators.DiscreteEstimator; import java.util.Arrays; /** * Class with some simple methods acting on * <code> CumulativeDiscreteDistribution. </code> * All of the methods in this class are very easily implemented * and the main use of this class is to gather all these methods * in a single place. It could be argued that some of the methods * should be implemented in the class * <code> CumulativeDiscreteDistribution </code> itself. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 5922 $ */ public class DistributionUtils implements RevisionHandler { /** * Constant indicating the maximal number of classes * for which there is a minimal and maximal distribution * present in the pool. * One of the purposes of this class is to serve as a factory * for minimal and maximal cumulative probability distributions. * Since instances of <code> CumulativeDiscreteDistribution </code> * are immutable, we can create them beforehand and reuse them * every time one is needed. */ private static final int MAX_CLASSES = 20; /** * Array filled with minimal cumulative discrete probability * distributions. This means that probability one is given to the * first element. This array serves as a pool for the method * <code> getMinimalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_minimalDistributions; /** * Array filled with maximal cumulative discrete probability * distributions. This means that probability one is given to the * largest element. This array serves as a pool for the method * <code> getMaximalCumulativeDiscreteDistribution. </code> */ private static final CumulativeDiscreteDistribution[] m_maximalDistributions; // fill both static arrays with the correct distributions static { m_minimalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; m_maximalDistributions = new CumulativeDiscreteDistribution[MAX_CLASSES + 1]; for (int i = 1; i <= MAX_CLASSES; i++) { double[] dd = new double[i]; dd[dd.length - 1] = 1; m_maximalDistributions[i] = new CumulativeDiscreteDistribution(dd); Arrays.fill(dd,1); m_minimalDistributions[i] = new CumulativeDiscreteDistribution(dd); } } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameter * @return (1 - s) &times; cdf1 + s &times; cdf2 * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * cdf1.getCumulativeProbability(i) + s * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> CumulativeDiscreteDistribution. </code> * * @param cdf1 the first <code> CumulativeDiscreteDistribution </code> * @param cdf2 the second <code> CumulativeDiscreteDistribution </code> * @param s the interpolation parameters, only the relevant number * of entries is used, so the array may be longer than the common * length of <code> cdf1 </code> and <code> cdf2 </code> * @return (1 - s) &times; cdf1 + s &times; cdf2, or more specifically * a distribution cd such that <code> * cd.getCumulativeProbability(i) = * (1-s[i]) &times; cdf1.getCumulativeProbability(i) + * s[i] &times; cdf2.getCumulativeProbability(i) </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the array <code> s </code> * contains parameters not in the range <code> [0,1] </code> */ public static CumulativeDiscreteDistribution interpolate( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2, double[] s) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols()) { throw new IllegalArgumentException ("CumulativeDiscreteDistributions don't have " + "the same size"); } if (cdf1.getNumSymbols() > s.length) { throw new IllegalArgumentException ("Array with interpolation parameters is not " + " long enough"); } double[] res = new double[cdf1.getNumSymbols()]; for (int i = 0, n = cdf1.getNumSymbols(); i < n; i++) { if (s[i] < 0 || s[i] > 1) { throw new IllegalArgumentException ("Interpolation parameter exceeds bounds"); } res[i] = (1 - s[i]) * cdf1.getCumulativeProbability(i) + s[i] * cdf2.getCumulativeProbability(i); } return new CumulativeDiscreteDistribution(res); } /** * Compute a linear interpolation between the two given * <code> DiscreteDistribution. </code> * * @param ddf1 the first <code> DiscreteDistribution </code> * @param ddf2 the second <code> DiscreteDistribution </code> * @param s the interpolation parameter * @return <code> (1 - s) &times; ddf1 + s &times; ddf2 </code> * @throws IllegalArgumentException if the two distributions * don't have the same size or if the parameter <code> s </code> * is not in the range [0,1] */ public static DiscreteDistribution interpolate( DiscreteDistribution ddf1, DiscreteDistribution ddf2, double s) throws IllegalArgumentException { if (ddf1.getNumSymbols() != ddf2.getNumSymbols()) { throw new IllegalArgumentException ("DiscreteDistributions don't have " + "the same size"); } if (s < 0 || s > 1) { throw new IllegalArgumentException ("Parameter s exceeds bounds"); } double[] res = new double[ddf1.getNumSymbols()]; for (int i = 0, n = ddf1.getNumSymbols(); i < n; i++) { res[i] = (1 - s) * ddf1.getProbability(i) + s * ddf2.getProbability(i); } return new DiscreteDistribution(res); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the minimum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the minimum of the two corresponding components. <br/> * Note: despite of its name, the returned cumulative probability * distribution dominates both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the minimum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMin( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.min(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Create a new <code> CumulativeDiscreteDistribution </code> * that is the maximum of the two given <code> * CumulativeDiscreteDistribution. </code> * Each component of the resulting probability distribution * is the maximum of the two corresponding components. * Note: despite of its name, the returned cumulative probability * distribution is dominated by both the arguments of this method. * * @param cdf1 first <code> CumulativeDiscreteDistribution </code> * @param cdf2 second <code> CumulativeDiscreteDistribution </code> * @return the maximum of the two distributions * @throws IllegalArgumentException if the two distributions * dont't have the same length */ public static CumulativeDiscreteDistribution takeMax( CumulativeDiscreteDistribution cdf1, CumulativeDiscreteDistribution cdf2) throws IllegalArgumentException { if (cdf1.getNumSymbols() != cdf2.getNumSymbols() ) throw new IllegalArgumentException ("Cumulative distributions don't have the same length"); double[] cdf = new double[cdf1.getNumSymbols()]; int n = cdf.length; for (int i = 0; i < n; i++) { cdf[i] = Math.max(cdf1.getCumulativeProbability(i), cdf2.getCumulativeProbability(i)); } return new CumulativeDiscreteDistribution(cdf); } /** * Converts a <code> DiscreteEstimator </code> to an array of * doubles. * * @param df the <code> DiscreteEstimator </code> to be converted * @return an array of doubles representing the * <code> DiscreteEstimator </code> */ public static double[] getDistributionArray(DiscreteEstimator df) { double[] dfa = new double[df.getNumSymbols()]; for (int i = 0; i < dfa.length; i++) { dfa[i] = df.getProbability(i); } return dfa; } /** * Get the minimal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the first element. * * @param numClasses the number of elements * @return the minimal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMinimalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_minimalDistributions[numClasses]; } double[] dd = new double[numClasses]; Arrays.fill(dd,1); return new CumulativeDiscreteDistribution(dd); } /** * Get the maximal <code> CumulativeDiscreteDistribution </code> * over <code> numClasses </code> elements. This means that * a probability of one is assigned to the last class. * * @param numClasses the number of elements * @return the maximal <code> CumulativeDiscreteDistribution </code> * over the requested number of elements * @throws IllegalArgumentException if <code> numClasses </code> * is smaller or equal than 0 */ public static CumulativeDiscreteDistribution getMaximalCumulativeDiscreteDistribution( int numClasses) throws IllegalArgumentException { if (numClasses <= 0) { throw new IllegalArgumentException ("Number of elements must be positive"); } if (numClasses <= MAX_CLASSES) { return m_maximalDistributions[numClasses]; } double[] dd = new double[numClasses]; dd[dd.length - 1] = 1; return new CumulativeDiscreteDistribution(dd); } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision: 5922 $"); } }
204197_1
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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, see <http://www.gnu.org/licenses/>. */ /* * BitMatrix.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; /** * Interface specifying a simple matrix of booleans. Operations are * limited to setting, getting, clearing and counting. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public interface BitMatrix { /** * Return the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column); /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool); /** * Sets the bit at the specified position to <code> true. </code> * The return value indicates whether anything has changed, * i.e.&nbsp; if the bit at the specified position was <code> true * </code> before calling this method, then <code> false </code> is * returned (and the bit remains <code> true </code> of course). * In the other case <code> true </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column); /** * Clears the bit at the specified position. The return value indicates * whether the bit was actually cleared, i.e.&nbsp; if the bit was * originally <code> true </code> then <code> true </code> is returned. * In the other case <code> false </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column); /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows(); /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns(); /** * Counts the number of bits that are set in the specified column. * * @param column index of the column * @return the number of bits that are set in the requested column */ public int columnCount(int column); /** * Counts the number of bits that are set in the specified row. * * @param row index of the row * @return the number of bits that are set in the requested row */ public int rowCount(int row); }
svn2github/weka
tags/ordinalStochasticDominance-1.0.2/src/main/java/weka/classifiers/misc/monotone/BitMatrix.java
1,026
/* * BitMatrix.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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, see <http://www.gnu.org/licenses/>. */ /* * BitMatrix.java *<SUF>*/ package weka.classifiers.misc.monotone; /** * Interface specifying a simple matrix of booleans. Operations are * limited to setting, getting, clearing and counting. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public interface BitMatrix { /** * Return the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column); /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool); /** * Sets the bit at the specified position to <code> true. </code> * The return value indicates whether anything has changed, * i.e.&nbsp; if the bit at the specified position was <code> true * </code> before calling this method, then <code> false </code> is * returned (and the bit remains <code> true </code> of course). * In the other case <code> true </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column); /** * Clears the bit at the specified position. The return value indicates * whether the bit was actually cleared, i.e.&nbsp; if the bit was * originally <code> true </code> then <code> true </code> is returned. * In the other case <code> false </code> is returned. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column); /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows(); /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns(); /** * Counts the number of bits that are set in the specified column. * * @param column index of the column * @return the number of bits that are set in the requested column */ public int columnCount(int column); /** * Counts the number of bits that are set in the specified row. * * @param row index of the row * @return the number of bits that are set in the requested row */ public int rowCount(int row); }
204200_0
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe de check op deze manier om een out of bounds exception te // verkomen bij kortere namen (bv. "windows 10" vs "linux") if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
gauquier/NMBS-java
NMBS/src/dao/CheckIfConnected.java
599
// ik doe de check op deze manier om een out of bounds exception te
line_comment
nl
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe<SUF> // verkomen bij kortere namen (bv. "windows 10" vs "linux") if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
204200_1
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe de check op deze manier om een out of bounds exception te // verkomen bij kortere namen (bv. "windows 10" vs "linux") if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
gauquier/NMBS-java
NMBS/src/dao/CheckIfConnected.java
599
// verkomen bij kortere namen (bv. "windows 10" vs "linux")
line_comment
nl
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe de check op deze manier om een out of bounds exception te // verkomen bij<SUF> if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
204200_2
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe de check op deze manier om een out of bounds exception te // verkomen bij kortere namen (bv. "windows 10" vs "linux") if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
gauquier/NMBS-java
NMBS/src/dao/CheckIfConnected.java
599
// voorkom out of bounds exception bij kortere
line_comment
nl
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe de check op deze manier om een out of bounds exception te // verkomen bij kortere namen (bv. "windows 10" vs "linux") if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out<SUF> // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
204200_3
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe de check op deze manier om een out of bounds exception te // verkomen bij kortere namen (bv. "windows 10" vs "linux") if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
gauquier/NMBS-java
NMBS/src/dao/CheckIfConnected.java
599
// voorkom out of bounds exception bij kortere
line_comment
nl
package dao; import java.io.IOException; public class CheckIfConnected { private static String os = System.getProperty("os.name").toLowerCase(); private static boolean windows = false; private static boolean linux = false; private static boolean mac = false; public static boolean checkIfConnected() { // Gebaseerd op // http://stackoverflow.com/questions/9922543/why-does-inetaddress-isreachable-return-false-when-i-can-ping-the-ip-address Process p1; try { // ik doe de check op deze manier om een out of bounds exception te // verkomen bij kortere namen (bv. "windows 10" vs "linux") if (os.length() > 6) { if (os.substring(0, 7).equals("windows")) { windows = true; } } if (os.length() > 5) {// voorkom out of bounds exception bij kortere // naam if (os.substring(0, 6).equals("linux")) { linux = true; } } if (os.length() > 2) {// voorkom out<SUF> // naam if (os.substring(0, 3).equals("mac")) { mac = true; } } if (windows || linux) { p1 = java.lang.Runtime.getRuntime().exec("ping -w 1 www.google.com"); // "-w 1" to make it not unbearably slow on Linux (tested in // Ubuntu 16.04.1) when connected to the Internet // and slightly faster on Windows, too } else { if (mac) { p1 = java.lang.Runtime.getRuntime().exec("ping -c 1 www.google.com"); } else { p1 = java.lang.Runtime.getRuntime().exec("ping www.google.com"); } } int returnVal = p1.waitFor(); boolean reachable = (returnVal == 0); return reachable; } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } return false; } }
204204_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * Coordinates.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.monotone.util; import weka.core.Instance; import java.io.Serializable; /** * This is a simple implementation of the data space. The <code> * Coordinates </code> holds the internal weka value of an instance, * but <i> with the class removed </i>. The class is immutable, * and works best when all attibutes are nominal (ordinal), although * it will not give an error when working with numeric attributes. * In the latter case, performance will degrade because of the way * in which the hashcode is calculated. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class Coordinates implements Serializable { /** for serialization */ private static final long serialVersionUID = 2319016195345994738L; /** * The internal weka values of the attributes of the instance, minus * the class attribute. */ private int[] m_coord; /** * The hashcode of this object. Calculated during construction. */ private int m_hashCode; /** * Create the <code> Coordinates </code> for the given instance. * * @param instance the <code> Instance </code> on which the <code> * Coordinates </code> will be based */ public Coordinates(Instance instance) { double[] values = instance.toDoubleArray(); int classIndex = instance.classIndex(); if (classIndex == -1) { m_coord = new int[values.length]; } else { m_coord = new int[values.length - 1]; } m_hashCode = 0; int factor=1; for (int i = 0,j = 0;i < values.length; i++) { if (i != classIndex) { m_coord[j] = (int) values[i]; if (i > 0 && i - 1 != classIndex) { factor *= instance.attribute(i-1).numValues(); } else if (i - 1 == classIndex && classIndex != -1 && classIndex != 0) { factor *= instance.attribute(i - 2).numValues(); } m_hashCode += (m_coord[j])*factor; j++; } } } /** * Get the value of the attribute with index <code> index, </code> * ignoring the class attribute. Indices are counted starting from * 0. * * @param index the index of the requested attribute * @return the value of this attribute, in internal floating point format. */ public double getValue(int index) { return m_coord[index]; } /** * Get the values of the coordinates. * * @param values array serving as output, and the first * <code> dimension() </code> values are filled in. */ public void getValues(double[] values) { // XXX this is a rather strange method, maybe it should be changed // into one that returns (using System.arraycopy) the requested values for (int i = 0; i < m_coord.length; i++) { values[i] = m_coord[i]; } } /** * Indicates if the object <code> o </code> equals <code> this. </code> * * @param o the reference object with which to compare * @return <code> true </code> if <code> o </code> equals <code> * this, </code> <code> false </code> otherwise */ public boolean equals(Object o) { if (! (o instanceof Coordinates) ) { return false; } Coordinates cc = (Coordinates) o; // if the length or hashCodes differ, the objects are certainly not equal if (m_coord.length != cc.m_coord.length || m_hashCode != cc.m_hashCode) { return false; } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] != cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is strictly smaller than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i) </code> and that there is * at least one index i such that * <code> this.getValue(i) &ne; cc.getValue(i) </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is strictly * smaller than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean strictlySmaller(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } // Skip all equal values int i = 0; while(i < m_coord.length && cc.m_coord[i] == m_coord[i]) { i++; } if (i == m_coord.length) { return false; // equality ! } for (; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is smaller or equal than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i). </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is * smaller or equal than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean smallerOrEqual(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Gets the hash code value for this object. * * @return the requested hash code */ public int hashCode() { return m_hashCode; } /** * Gets the dimension of the data space, this is the number of attributes, * exluding the class attribute. * * @return the dimension of the data space this object resides in */ public int dimension() { return m_coord.length; } /** * Get a string representation of this object. * * @return the requested string representation */ public String toString() { String s = "("; for (int i = 0; i < m_coord.length - 1; i++) { s += m_coord[i] + ","; } return s + m_coord[m_coord.length - 1] + ")"; } }
svn2github/weka
tags/before_fixes_for_FilteredClassifier/weka/classifiers/monotone/util/Coordinates.java
2,179
/* * Coordinates.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * Coordinates.java *<SUF>*/ package weka.classifiers.monotone.util; import weka.core.Instance; import java.io.Serializable; /** * This is a simple implementation of the data space. The <code> * Coordinates </code> holds the internal weka value of an instance, * but <i> with the class removed </i>. The class is immutable, * and works best when all attibutes are nominal (ordinal), although * it will not give an error when working with numeric attributes. * In the latter case, performance will degrade because of the way * in which the hashcode is calculated. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class Coordinates implements Serializable { /** for serialization */ private static final long serialVersionUID = 2319016195345994738L; /** * The internal weka values of the attributes of the instance, minus * the class attribute. */ private int[] m_coord; /** * The hashcode of this object. Calculated during construction. */ private int m_hashCode; /** * Create the <code> Coordinates </code> for the given instance. * * @param instance the <code> Instance </code> on which the <code> * Coordinates </code> will be based */ public Coordinates(Instance instance) { double[] values = instance.toDoubleArray(); int classIndex = instance.classIndex(); if (classIndex == -1) { m_coord = new int[values.length]; } else { m_coord = new int[values.length - 1]; } m_hashCode = 0; int factor=1; for (int i = 0,j = 0;i < values.length; i++) { if (i != classIndex) { m_coord[j] = (int) values[i]; if (i > 0 && i - 1 != classIndex) { factor *= instance.attribute(i-1).numValues(); } else if (i - 1 == classIndex && classIndex != -1 && classIndex != 0) { factor *= instance.attribute(i - 2).numValues(); } m_hashCode += (m_coord[j])*factor; j++; } } } /** * Get the value of the attribute with index <code> index, </code> * ignoring the class attribute. Indices are counted starting from * 0. * * @param index the index of the requested attribute * @return the value of this attribute, in internal floating point format. */ public double getValue(int index) { return m_coord[index]; } /** * Get the values of the coordinates. * * @param values array serving as output, and the first * <code> dimension() </code> values are filled in. */ public void getValues(double[] values) { // XXX this is a rather strange method, maybe it should be changed // into one that returns (using System.arraycopy) the requested values for (int i = 0; i < m_coord.length; i++) { values[i] = m_coord[i]; } } /** * Indicates if the object <code> o </code> equals <code> this. </code> * * @param o the reference object with which to compare * @return <code> true </code> if <code> o </code> equals <code> * this, </code> <code> false </code> otherwise */ public boolean equals(Object o) { if (! (o instanceof Coordinates) ) { return false; } Coordinates cc = (Coordinates) o; // if the length or hashCodes differ, the objects are certainly not equal if (m_coord.length != cc.m_coord.length || m_hashCode != cc.m_hashCode) { return false; } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] != cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is strictly smaller than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i) </code> and that there is * at least one index i such that * <code> this.getValue(i) &ne; cc.getValue(i) </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is strictly * smaller than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean strictlySmaller(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } // Skip all equal values int i = 0; while(i < m_coord.length && cc.m_coord[i] == m_coord[i]) { i++; } if (i == m_coord.length) { return false; // equality ! } for (; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Checks if <code> this </code> is smaller or equal than <code> cc. </code> * This means that for all indices i it holds that * <code> this.getValue(i) &lt;= cc.getValue(i). </code> * * @param cc the <code> Coordinates </code> that <code> this </code> is * compared to * @return <code> true </code> if <code> this </code> is * smaller or equal than <code> cc, </code> <code> false </code> otherwise * @throws IllegalArgumentException if the dimensions of both objects differ */ public boolean smallerOrEqual(Coordinates cc) throws IllegalArgumentException { if (cc.m_coord.length != m_coord.length) { throw new IllegalArgumentException ("Coordinates are not from the same space"); } for (int i = 0; i < m_coord.length; i++) { if (m_coord[i] > cc.m_coord[i]) { return false; } } return true; } /** * Gets the hash code value for this object. * * @return the requested hash code */ public int hashCode() { return m_hashCode; } /** * Gets the dimension of the data space, this is the number of attributes, * exluding the class attribute. * * @return the dimension of the data space this object resides in */ public int dimension() { return m_coord.length; } /** * Get a string representation of this object. * * @return the requested string representation */ public String toString() { String s = "("; for (int i = 0; i < m_coord.length - 1; i++) { s += m_coord[i] + ","; } return s + m_coord[m_coord.length - 1] + ")"; } }
204205_1
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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, see <http://www.gnu.org/licenses/>. */ /* * InstancesComparator.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Comparator; /** * Class to compare instances with respect to a given attribute, indicated * by its index. The ordering of the attribute values is determined * by the internal values of WEKA. There is also the possibility of * reversing this order. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public class InstancesComparator implements Comparator, RevisionHandler { /** index of the attribute */ private int m_Index; /** If 1 then the order is not reversed, when -1, the order is reversed */ private int m_Reverse = 1; /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index. * * @param index the index on which to compare instances */ public InstancesComparator(int index) { m_Index = index; } /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index, with the possibility of * reversing the order. * * @param index the index on which to compare instances * @param reverse if <code> true </code> the order is reversed, if * <code> false </code> the order is not reversed */ public InstancesComparator(int index, boolean reverse) { m_Index = index; m_Reverse = (reverse == true) ? -1 : 1; } /** * Compares two objects (instances) with respect to the attribute * this comparator is constructed on. * * @param o1 the first object to be compared * @param o2 the second object to be compared * @return -1 if <code> o1 &lt; o2 </code> (wrt to the given attribute), * 1 if <code> o1 &gt; o2 </code>, and 0 if <code> o1 </code> and * <code> o2 </code> are equal (wrt to the given attribute) */ public int compare(Object o1, Object o2) { Instance i1 = (Instance) o1; Instance i2 = (Instance) o2; if (i1.value(m_Index) < i2.value(m_Index)) { return -1 * m_Reverse; } else if (i1.value(m_Index) > i2.value(m_Index)) { return 1 * m_Reverse; } return 0; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision$"); } }
svn2github/weka
tags/ordinalStochasticDominance-1.0.1/src/main/java/weka/classifiers/misc/monotone/InstancesComparator.java
966
/* * InstancesComparator.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * 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, see <http://www.gnu.org/licenses/>. */ /* * InstancesComparator.java *<SUF>*/ package weka.classifiers.misc.monotone; import weka.core.Instance; import weka.core.RevisionHandler; import weka.core.RevisionUtils; import java.util.Comparator; /** * Class to compare instances with respect to a given attribute, indicated * by its index. The ordering of the attribute values is determined * by the internal values of WEKA. There is also the possibility of * reversing this order. * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision$ */ public class InstancesComparator implements Comparator, RevisionHandler { /** index of the attribute */ private int m_Index; /** If 1 then the order is not reversed, when -1, the order is reversed */ private int m_Reverse = 1; /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index. * * @param index the index on which to compare instances */ public InstancesComparator(int index) { m_Index = index; } /** * Construct an <code> InstancesComparator </code> that compares * the attributes with the given index, with the possibility of * reversing the order. * * @param index the index on which to compare instances * @param reverse if <code> true </code> the order is reversed, if * <code> false </code> the order is not reversed */ public InstancesComparator(int index, boolean reverse) { m_Index = index; m_Reverse = (reverse == true) ? -1 : 1; } /** * Compares two objects (instances) with respect to the attribute * this comparator is constructed on. * * @param o1 the first object to be compared * @param o2 the second object to be compared * @return -1 if <code> o1 &lt; o2 </code> (wrt to the given attribute), * 1 if <code> o1 &gt; o2 </code>, and 0 if <code> o1 </code> and * <code> o2 </code> are equal (wrt to the given attribute) */ public int compare(Object o1, Object o2) { Instance i1 = (Instance) o1; Instance i2 = (Instance) o2; if (i1.value(m_Index) < i2.value(m_Index)) { return -1 * m_Reverse; } else if (i1.value(m_Index) > i2.value(m_Index)) { return 1 * m_Reverse; } return 0; } /** * Returns the revision string. * * @return the revision */ public String getRevision() { return RevisionUtils.extract("$Revision$"); } }
204211_1
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BooleanBitMatrix.java * Copyright (C) 2004 Stijn Lievens * */ package weka.classifiers.monotone.util; /** * This class is a very simple implementation of a BitMatrix. * In fact, it uses a two-dimensional array of booleans, so it is * not very space efficient. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class BooleanBitMatrix implements BitMatrix { /** The two-dimensional array of booleans. */ private boolean[][] m_bits; /** The number of rows. */ private int m_rows; /** The number of columns */ private int m_columns; /** * Construct a <code> BitMatrix </code> with the indicated * number of rows and columns. All bits are initially * set to <code> false </code>. * * @param rows the number of rows * @param columns the number of column */ public BooleanBitMatrix(int rows, int columns) { m_bits = new boolean[rows][columns]; m_rows = rows; m_columns = columns; } /** * A copy constructor. Constructs a copy of the given * <code> BitMatrix </code>. * * @param bm the <code> BitMatrix </code> to be copied. */ public BooleanBitMatrix(BooleanBitMatrix bm) { this(bm.m_rows, bm.m_columns); for (int i = 0; i < m_rows; i++) { System.arraycopy(bm.m_bits[i], 0, m_bits[i], 0, m_columns); } } /** * Returns the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column) { return m_bits[row][column]; } /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool) { m_bits[row][column] = bool; return bool; } /** * Sets the bit at the specified position to <code> true. </code> * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column) { return !get(row, column) && set(row, column, true); } /** * Clears the bit at the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column) { return get(row, column) && !set(row, column, false); } /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows() { return m_rows; } /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns() { return m_columns; } /** * Counts the number of bits that are set in the specified column. * * @param column index of the column of which the bits are to be counted * @return the number of bits that are set in the requested column */ public int columnCount(int column) { int count = 0; for (int i = 0; i < m_rows; i++) { count += (m_bits[i][column] ? 1 : 0); } return count; } /** * Counts the number of bits that are set in the specified row. * * @param row index of the row of which the bits are to be counted * @return the number of bits that are set in the requested row */ public int rowCount(int row) { int count = 0; for (int i = 0; i < m_columns; i++) { count += (m_bits[row][i] ? 1 : 0); } return count; } /** * Swap the rows and the columns of the <code> BooleanBitMatrix. </code> * * @return the transposed matrix */ public BooleanBitMatrix transpose() { BooleanBitMatrix transposed = new BooleanBitMatrix(m_columns, m_rows); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { transposed.set(j, i, get(i, j)); } } return transposed; } /** * Swaps the rows and the columns of the <code> BooleanBitMatrix, </code> * without creating a new object. * The <code> BooleanBitMatrix </code> must be a square matrix. * * @throws IllegalArgumentException if the <code> BooleanBitMatrix </code> * is not square. */ public void transposeInPlace() throws IllegalArgumentException { if (m_rows != m_columns) { throw new IllegalArgumentException ("The BooleanBitMatrix is not square"); } for (int i = 0; i < m_rows; i++) { for (int j = i + 1; j < m_columns; j++) { swap(i, j, j, i); } } } /** * Swap the elements with coordinates <code> (r1,c1) </code> and * <code> (r2,c2). </code> * * @param r1 index of first row * @param c1 index of first column * @param r2 index of second row * @param c2 index of second column */ private void swap(int r1, int c1, int r2, int c2) { boolean tmp = get(r1, c1); set(r1, c1, get(r2, c2)); set(r2, c2, tmp); } /** * Create a compact string representation of the matrix. * * @return a <code> String </code> representing the matrix, * row by row. */ public String toString() { StringBuffer sb = new StringBuffer(m_rows * (m_columns + 1) ); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { sb.append(get(i, j) ? 1 : 0); } sb.append("\n"); } return sb.toString(); } }
svn2github/weka
tags/before_fixes_for_FilteredClassifier/weka/classifiers/monotone/util/BooleanBitMatrix.java
2,106
/* * BooleanBitMatrix.java * Copyright (C) 2004 Stijn Lievens * */
block_comment
nl
/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* * BooleanBitMatrix.java *<SUF>*/ package weka.classifiers.monotone.util; /** * This class is a very simple implementation of a BitMatrix. * In fact, it uses a two-dimensional array of booleans, so it is * not very space efficient. * * <p> * This implementation is part of the master's thesis: "Studie * en implementatie van instantie-gebaseerde algoritmen voor gesuperviseerd * rangschikken", Stijn Lievens, Ghent University, 2004. * </p> * * @author Stijn Lievens ([email protected]) * @version $Revision: 1.1 $ */ public class BooleanBitMatrix implements BitMatrix { /** The two-dimensional array of booleans. */ private boolean[][] m_bits; /** The number of rows. */ private int m_rows; /** The number of columns */ private int m_columns; /** * Construct a <code> BitMatrix </code> with the indicated * number of rows and columns. All bits are initially * set to <code> false </code>. * * @param rows the number of rows * @param columns the number of column */ public BooleanBitMatrix(int rows, int columns) { m_bits = new boolean[rows][columns]; m_rows = rows; m_columns = columns; } /** * A copy constructor. Constructs a copy of the given * <code> BitMatrix </code>. * * @param bm the <code> BitMatrix </code> to be copied. */ public BooleanBitMatrix(BooleanBitMatrix bm) { this(bm.m_rows, bm.m_columns); for (int i = 0; i < m_rows; i++) { System.arraycopy(bm.m_bits[i], 0, m_bits[i], 0, m_columns); } } /** * Returns the element a the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit at the * specified position is set, <code> false </code> * otherwise */ public boolean get(int row, int column) { return m_bits[row][column]; } /** * Sets the bit at the specified position to the specified * value. * * @param row the row of the position * @param column the column of the position * @param bool the value to fill in * @return the value of <code> bool </code> */ public boolean set(int row, int column, boolean bool) { m_bits[row][column] = bool; return bool; } /** * Sets the bit at the specified position to <code> true. </code> * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * set, <code> false </code> otherwise */ public boolean set(int row, int column) { return !get(row, column) && set(row, column, true); } /** * Clears the bit at the specified position. * * @param row the row of the position * @param column the column of the position * @return <code> true </code> if the bit was actually * cleared, <code> false </code> otherwise */ public boolean clear(int row, int column) { return get(row, column) && !set(row, column, false); } /** * Gets the number of rows. * * @return the number of rows of the matrix */ public int rows() { return m_rows; } /** * Gets the number of columns. * * @return the number of columns of the matrix */ public int columns() { return m_columns; } /** * Counts the number of bits that are set in the specified column. * * @param column index of the column of which the bits are to be counted * @return the number of bits that are set in the requested column */ public int columnCount(int column) { int count = 0; for (int i = 0; i < m_rows; i++) { count += (m_bits[i][column] ? 1 : 0); } return count; } /** * Counts the number of bits that are set in the specified row. * * @param row index of the row of which the bits are to be counted * @return the number of bits that are set in the requested row */ public int rowCount(int row) { int count = 0; for (int i = 0; i < m_columns; i++) { count += (m_bits[row][i] ? 1 : 0); } return count; } /** * Swap the rows and the columns of the <code> BooleanBitMatrix. </code> * * @return the transposed matrix */ public BooleanBitMatrix transpose() { BooleanBitMatrix transposed = new BooleanBitMatrix(m_columns, m_rows); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { transposed.set(j, i, get(i, j)); } } return transposed; } /** * Swaps the rows and the columns of the <code> BooleanBitMatrix, </code> * without creating a new object. * The <code> BooleanBitMatrix </code> must be a square matrix. * * @throws IllegalArgumentException if the <code> BooleanBitMatrix </code> * is not square. */ public void transposeInPlace() throws IllegalArgumentException { if (m_rows != m_columns) { throw new IllegalArgumentException ("The BooleanBitMatrix is not square"); } for (int i = 0; i < m_rows; i++) { for (int j = i + 1; j < m_columns; j++) { swap(i, j, j, i); } } } /** * Swap the elements with coordinates <code> (r1,c1) </code> and * <code> (r2,c2). </code> * * @param r1 index of first row * @param c1 index of first column * @param r2 index of second row * @param c2 index of second column */ private void swap(int r1, int c1, int r2, int c2) { boolean tmp = get(r1, c1); set(r1, c1, get(r2, c2)); set(r2, c2, tmp); } /** * Create a compact string representation of the matrix. * * @return a <code> String </code> representing the matrix, * row by row. */ public String toString() { StringBuffer sb = new StringBuffer(m_rows * (m_columns + 1) ); for (int i = 0; i < m_rows; i++) { for (int j = 0; j < m_columns; j++) { sb.append(get(i, j) ? 1 : 0); } sb.append("\n"); } return sb.toString(); } }
204212_0
import java.util.Objects; /** @author Elias De Hondt * 24/11/2022 */ public class Boerderij { // Attributen private Boerderijdieren dieren[]; private int aantalDieren; // Constructors public Boerderij() { this.dieren = new Boerderijdieren[5]; this.aantalDieren = 0; } // Methode public void voegDierToe(Boerderijdieren dier) { if (aantalDieren >= 5) { System.out.printf("Er is geen plaats meer voor %s. De stal zit vol!\n", dier.getNaam()); } else { this.dieren[aantalDieren] = dier; aantalDieren++; } } public void toonDieren() { for (int i = 0; i <= this.aantalDieren-1; i++) { System.out.println(dieren[i].toString()); } } public void toonGeluiden() { for (int i = 0; i <= this.aantalDieren-1; i++) { System.out.printf("%s maakt geluid \"%s\"\n", dieren[i].getNaam(),dieren[i].getGeluid()); } } public void toonVoeding() { for (int i = 0; i <= this.aantalDieren-1; i++) { System.out.printf("%s eet %s\n", dieren[i].getNaam(),dieren[i].getVoeding()); } } public Boerderijdieren zoekDierOpNaam(String naam) { for (int i = 0; i <= this.aantalDieren-1; i++) { if (Objects.equals(dieren[i].getNaam(), naam)) return dieren[i]; } return null; } }
EliasDeHondt/ComputerProgramming1-OOConcepts
W8P2/W8P2 Boerderij/src/Boerderij.java
475
/** @author Elias De Hondt * 24/11/2022 */
block_comment
nl
import java.util.Objects; /** @author Elias De<SUF>*/ public class Boerderij { // Attributen private Boerderijdieren dieren[]; private int aantalDieren; // Constructors public Boerderij() { this.dieren = new Boerderijdieren[5]; this.aantalDieren = 0; } // Methode public void voegDierToe(Boerderijdieren dier) { if (aantalDieren >= 5) { System.out.printf("Er is geen plaats meer voor %s. De stal zit vol!\n", dier.getNaam()); } else { this.dieren[aantalDieren] = dier; aantalDieren++; } } public void toonDieren() { for (int i = 0; i <= this.aantalDieren-1; i++) { System.out.println(dieren[i].toString()); } } public void toonGeluiden() { for (int i = 0; i <= this.aantalDieren-1; i++) { System.out.printf("%s maakt geluid \"%s\"\n", dieren[i].getNaam(),dieren[i].getGeluid()); } } public void toonVoeding() { for (int i = 0; i <= this.aantalDieren-1; i++) { System.out.printf("%s eet %s\n", dieren[i].getNaam(),dieren[i].getVoeding()); } } public Boerderijdieren zoekDierOpNaam(String naam) { for (int i = 0; i <= this.aantalDieren-1; i++) { if (Objects.equals(dieren[i].getNaam(), naam)) return dieren[i]; } return null; } }
204213_0
/** * Vincent Verboven * 24/11/2022 */ public class Boerderij{ private Boerderijdier[] dieren; private int aantalDieren; public Boerderij(){ dieren = new Boerderijdier[5]; aantalDieren = 0; } public void voegDierToe(Boerderijdier dier){ if(this.aantalDieren < 5){ this.dieren[aantalDieren] = dier; this.aantalDieren++; } else { System.out.println("Er is geen plaats meer voor " + dier.getNaam() + ". De stal zit vol!"); } } public void toonDieren(){ for (Boerderijdier dier : dieren ){ System.out.println(dier); } } public void toonGeluiden(){ for (Boerderijdier dier: dieren) { System.out.printf("%s maakt geluid \"%s\"\n",dier.getNaam(), dier.getGeluid()); } } public void toonVoeding(){ for (Boerderijdier dier: dieren) { System.out.printf("%s eet %s\n",dier.getNaam(), dier.getVoeding()); } } public Boerderijdier zoekDierOpNaam(String naam){ for (Boerderijdier dier: dieren) if(naam.equals(dier.getNaam())) return dier; return null; } }
Meastro85/OOPROG-Java1
P2W2/P2W2/Boerderijdieren/src/Boerderij.java
368
/** * Vincent Verboven * 24/11/2022 */
block_comment
nl
/** * Vincent Verboven <SUF>*/ public class Boerderij{ private Boerderijdier[] dieren; private int aantalDieren; public Boerderij(){ dieren = new Boerderijdier[5]; aantalDieren = 0; } public void voegDierToe(Boerderijdier dier){ if(this.aantalDieren < 5){ this.dieren[aantalDieren] = dier; this.aantalDieren++; } else { System.out.println("Er is geen plaats meer voor " + dier.getNaam() + ". De stal zit vol!"); } } public void toonDieren(){ for (Boerderijdier dier : dieren ){ System.out.println(dier); } } public void toonGeluiden(){ for (Boerderijdier dier: dieren) { System.out.printf("%s maakt geluid \"%s\"\n",dier.getNaam(), dier.getGeluid()); } } public void toonVoeding(){ for (Boerderijdier dier: dieren) { System.out.printf("%s eet %s\n",dier.getNaam(), dier.getVoeding()); } } public Boerderijdier zoekDierOpNaam(String naam){ for (Boerderijdier dier: dieren) if(naam.equals(dier.getNaam())) return dier; return null; } }
204222_0
package be.kuleuven.csa.controller; import javafx.beans.property.ReadOnlyObjectWrapper; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.fxml.FXML; import javafx.scene.control.*; import javafx.stage.Stage; import java.util.ArrayList; public class BeheerBoerderijenController { @FXML private Button btnDelete; @FXML private Button btnAdd; @FXML private Button btnModify; @FXML private Button btnClose; @FXML private TableView tblBoerderijen; public void initialize() { initTable(); btnAdd.setOnAction(e -> addNewRow()); btnModify.setOnAction(e -> { verifyOneRowSelected(); modifyCurrentRow(); }); btnDelete.setOnAction(e -> { verifyOneRowSelected(); deleteCurrentRow(); }); btnClose.setOnAction(e -> { var stage = (Stage) btnClose.getScene().getWindow(); stage.close(); }); } private void initTable() { tblBoerderijen.getSelectionModel().setSelectionMode(SelectionMode.SINGLE); tblBoerderijen.getColumns().clear(); // TODO verwijderen en "echte data" toevoegen! int colIndex = 0; for(var colName : new String[]{"Naam", "Voornaam", "Oppervlakte", "Aantal varkens"}) { TableColumn<ObservableList<String>, String> col = new TableColumn<>(colName); final int finalColIndex = colIndex; col.setCellValueFactory(f -> new ReadOnlyObjectWrapper<>(f.getValue().get(finalColIndex))); tblBoerderijen.getColumns().add(col); colIndex++; } for(int i = 0; i < 10; i++) { tblBoerderijen.getItems().add(FXCollections.observableArrayList("Boer " + i, "Jozef V" + i, i*10 + "", i * 33 + "")); } } private void addNewRow() { } private void deleteCurrentRow() { } private void modifyCurrentRow() { } public void showAlert(String title, String content) { var alert = new Alert(Alert.AlertType.WARNING); alert.setTitle(title); alert.setHeaderText(title); alert.setContentText(content); alert.showAndWait(); } private void verifyOneRowSelected() { if(tblBoerderijen.getSelectionModel().getSelectedCells().size() == 0) { showAlert("Hela!", "Eerst een boer selecteren hé."); } } }
KULeuven-Diepenbeek/db-course
examples/java/project-template-202021/src/main/java/be/kuleuven/csa/controller/BeheerBoerderijenController.java
648
// TODO verwijderen en "echte data" toevoegen!
line_comment
nl
package be.kuleuven.csa.controller; import javafx.beans.property.ReadOnlyObjectWrapper; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.fxml.FXML; import javafx.scene.control.*; import javafx.stage.Stage; import java.util.ArrayList; public class BeheerBoerderijenController { @FXML private Button btnDelete; @FXML private Button btnAdd; @FXML private Button btnModify; @FXML private Button btnClose; @FXML private TableView tblBoerderijen; public void initialize() { initTable(); btnAdd.setOnAction(e -> addNewRow()); btnModify.setOnAction(e -> { verifyOneRowSelected(); modifyCurrentRow(); }); btnDelete.setOnAction(e -> { verifyOneRowSelected(); deleteCurrentRow(); }); btnClose.setOnAction(e -> { var stage = (Stage) btnClose.getScene().getWindow(); stage.close(); }); } private void initTable() { tblBoerderijen.getSelectionModel().setSelectionMode(SelectionMode.SINGLE); tblBoerderijen.getColumns().clear(); // TODO verwijderen<SUF> int colIndex = 0; for(var colName : new String[]{"Naam", "Voornaam", "Oppervlakte", "Aantal varkens"}) { TableColumn<ObservableList<String>, String> col = new TableColumn<>(colName); final int finalColIndex = colIndex; col.setCellValueFactory(f -> new ReadOnlyObjectWrapper<>(f.getValue().get(finalColIndex))); tblBoerderijen.getColumns().add(col); colIndex++; } for(int i = 0; i < 10; i++) { tblBoerderijen.getItems().add(FXCollections.observableArrayList("Boer " + i, "Jozef V" + i, i*10 + "", i * 33 + "")); } } private void addNewRow() { } private void deleteCurrentRow() { } private void modifyCurrentRow() { } public void showAlert(String title, String content) { var alert = new Alert(Alert.AlertType.WARNING); alert.setTitle(title); alert.setHeaderText(title); alert.setContentText(content); alert.showAndWait(); } private void verifyOneRowSelected() { if(tblBoerderijen.getSelectionModel().getSelectedCells().size() == 0) { showAlert("Hela!", "Eerst een boer selecteren hé."); } } }
204225_0
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij_ArrayList.java
492
/** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij<SUF>*/ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
204225_1
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij_ArrayList.java
492
/** * Constructor voor de ArrayList */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de<SUF>*/ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
204225_2
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij_ArrayList.java
492
/** * Voeg een dier aan de lijst toe */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier<SUF>*/ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
204225_3
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij_ArrayList.java
492
/** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige<SUF>*/ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
204225_4
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij_ArrayList.java
492
/** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam<SUF>*/ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
204225_5
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij_ArrayList.java
492
/** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam<SUF>*/ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
204225_6
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij_ArrayList.java
492
/** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij bevat als enig attribuut een lijst van dieren (type ArrayList). */ import java.util.ArrayList; import java.util.List; public class Boerderij_ArrayList { private List<Dier> dieren; /** * Constructor voor de ArrayList */ public Boerderij_ArrayList() { dieren = new ArrayList<>(); } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren.add(dier); } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (Dier dier : dieren) { System.out.println(dier); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " maakt geluid " + dier.getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (Dier dier : dieren) { System.out.println(dier.getNaam() + " eet " + dier.getVoeding()); } } /** * Geeft true als<SUF>*/ public boolean zoekDierOpNaam(String zoekNaam) { for (Dier dier : dieren) { String naam = dier.getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
204239_0
/** @author Elias De Hondt * 21/11/2022 */ public class Konijn extends Boerderijdieren { // Attributen private boolean isGraver; // Constructors public Konijn(String naam, boolean isGraver) { super(naam, "Snifsnif", "gras"); this.isGraver = isGraver; } // Methode @Override public String toString() { return String.format("%s maakt geluid \"%s\" en eet %s en graaft %b", super.getNaam(),super.getGeluid(),super.getVoeding(),this.isGraver); } }
EliasDeHondt/ComputerProgramming1-OOConcepts
W8P2/W8P2 Boerderij/src/Konijn.java
167
/** @author Elias De Hondt * 21/11/2022 */
block_comment
nl
/** @author Elias De<SUF>*/ public class Konijn extends Boerderijdieren { // Attributen private boolean isGraver; // Constructors public Konijn(String naam, boolean isGraver) { super(naam, "Snifsnif", "gras"); this.isGraver = isGraver; } // Methode @Override public String toString() { return String.format("%s maakt geluid \"%s\" en eet %s en graaft %b", super.getNaam(),super.getGeluid(),super.getVoeding(),this.isGraver); } }
204241_0
/** * Vincent Verboven * 21/11/2022 */ public class Boerderijdier { private String naam; private String geluid; private String voeding; public Boerderijdier(String naam, String geluid, String voeding) { this.naam = naam; this.geluid = geluid; this.voeding = voeding; } public String getNaam() { return naam; } public String getGeluid() { return geluid; } public String getVoeding() { return voeding; } @Override public String toString() { return String.format("%s maakt geluid \"%s\"en eet %s",naam,geluid,voeding); } }
Meastro85/OOPROG-Java1
P2W2/P2W2/Boerderijdieren/src/Boerderijdier.java
188
/** * Vincent Verboven * 21/11/2022 */
block_comment
nl
/** * Vincent Verboven <SUF>*/ public class Boerderijdier { private String naam; private String geluid; private String voeding; public Boerderijdier(String naam, String geluid, String voeding) { this.naam = naam; this.geluid = geluid; this.voeding = voeding; } public String getNaam() { return naam; } public String getGeluid() { return geluid; } public String getVoeding() { return voeding; } @Override public String toString() { return String.format("%s maakt geluid \"%s\"en eet %s",naam,geluid,voeding); } }
204245_0
package be.kdg.boederij; /** * Testklasse voor het project. Werk eerst alle andere klassen uit. * Zie onderaan voor de verwachte afdruk. */ public class TestKlasse { public static void main(String[] args) { Boerderij boerderij = new Boerderij(); boerderij.voegDierToe(new Konijn("Bugs", true)); boerderij.voegDierToe(new Koe("Belle", 15)); boerderij.voegDierToe(new Konijn("Bunny", false)); boerderij.voegDierToe(new Kip("Generaal Kiekens", 3)); boerderij.voegDierToe(new Kip("Chick", 4)); System.out.println("--------\ntoonDieren\n"); boerderij.toonDieren(); System.out.println("--------\nbom\n"); boerderij.toonGeluiden(); System.out.println("--------\netenstijd\n"); boerderij.toonVoeding(); System.out.println("--------\nzoeken\n"); if (boerderij.zoekDierOpNaam("Belle")) { System.out.println("Belle gevonden"); } if (!(boerderij.zoekDierOpNaam("Jos"))) { System.out.println("Jos niet gevonden"); } } } /* -------- toonDieren Bugs maakt geluid Snif, eet gras en graaft wel Belle maakt geluid Boe, eet gras en geeft 15 melk per dag Bunny maakt geluid Snif, eet gras en graaft niet Generaal Kiekens maakt geluid Toktok, eet mais en legt 3 eieren per week Chick maakt geluid Toktok, eet mais en legt 4 eieren per week -------- bom Bugs maakt geluid Snif Belle maakt geluid Boe Bunny maakt geluid Snif Generaal Kiekens maakt geluid Toktok Chick maakt geluid Toktok -------- etenstijd Bugs eet gras Belle eet gras Bunny eet gras Generaal Kiekens eet mais Chick eet mais -------- zoeken Belle gevonden Jos niet gevonden */
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/TestKlasse.java
510
/** * Testklasse voor het project. Werk eerst alle andere klassen uit. * Zie onderaan voor de verwachte afdruk. */
block_comment
nl
package be.kdg.boederij; /** * Testklasse voor het<SUF>*/ public class TestKlasse { public static void main(String[] args) { Boerderij boerderij = new Boerderij(); boerderij.voegDierToe(new Konijn("Bugs", true)); boerderij.voegDierToe(new Koe("Belle", 15)); boerderij.voegDierToe(new Konijn("Bunny", false)); boerderij.voegDierToe(new Kip("Generaal Kiekens", 3)); boerderij.voegDierToe(new Kip("Chick", 4)); System.out.println("--------\ntoonDieren\n"); boerderij.toonDieren(); System.out.println("--------\nbom\n"); boerderij.toonGeluiden(); System.out.println("--------\netenstijd\n"); boerderij.toonVoeding(); System.out.println("--------\nzoeken\n"); if (boerderij.zoekDierOpNaam("Belle")) { System.out.println("Belle gevonden"); } if (!(boerderij.zoekDierOpNaam("Jos"))) { System.out.println("Jos niet gevonden"); } } } /* -------- toonDieren Bugs maakt geluid Snif, eet gras en graaft wel Belle maakt geluid Boe, eet gras en geeft 15 melk per dag Bunny maakt geluid Snif, eet gras en graaft niet Generaal Kiekens maakt geluid Toktok, eet mais en legt 3 eieren per week Chick maakt geluid Toktok, eet mais en legt 4 eieren per week -------- bom Bugs maakt geluid Snif Belle maakt geluid Boe Bunny maakt geluid Snif Generaal Kiekens maakt geluid Toktok Chick maakt geluid Toktok -------- etenstijd Bugs eet gras Belle eet gras Bunny eet gras Generaal Kiekens eet mais Chick eet mais -------- zoeken Belle gevonden Jos niet gevonden */
204245_1
package be.kdg.boederij; /** * Testklasse voor het project. Werk eerst alle andere klassen uit. * Zie onderaan voor de verwachte afdruk. */ public class TestKlasse { public static void main(String[] args) { Boerderij boerderij = new Boerderij(); boerderij.voegDierToe(new Konijn("Bugs", true)); boerderij.voegDierToe(new Koe("Belle", 15)); boerderij.voegDierToe(new Konijn("Bunny", false)); boerderij.voegDierToe(new Kip("Generaal Kiekens", 3)); boerderij.voegDierToe(new Kip("Chick", 4)); System.out.println("--------\ntoonDieren\n"); boerderij.toonDieren(); System.out.println("--------\nbom\n"); boerderij.toonGeluiden(); System.out.println("--------\netenstijd\n"); boerderij.toonVoeding(); System.out.println("--------\nzoeken\n"); if (boerderij.zoekDierOpNaam("Belle")) { System.out.println("Belle gevonden"); } if (!(boerderij.zoekDierOpNaam("Jos"))) { System.out.println("Jos niet gevonden"); } } } /* -------- toonDieren Bugs maakt geluid Snif, eet gras en graaft wel Belle maakt geluid Boe, eet gras en geeft 15 melk per dag Bunny maakt geluid Snif, eet gras en graaft niet Generaal Kiekens maakt geluid Toktok, eet mais en legt 3 eieren per week Chick maakt geluid Toktok, eet mais en legt 4 eieren per week -------- bom Bugs maakt geluid Snif Belle maakt geluid Boe Bunny maakt geluid Snif Generaal Kiekens maakt geluid Toktok Chick maakt geluid Toktok -------- etenstijd Bugs eet gras Belle eet gras Bunny eet gras Generaal Kiekens eet mais Chick eet mais -------- zoeken Belle gevonden Jos niet gevonden */
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/TestKlasse.java
510
/* -------- toonDieren Bugs maakt geluid Snif, eet gras en graaft wel Belle maakt geluid Boe, eet gras en geeft 15 melk per dag Bunny maakt geluid Snif, eet gras en graaft niet Generaal Kiekens maakt geluid Toktok, eet mais en legt 3 eieren per week Chick maakt geluid Toktok, eet mais en legt 4 eieren per week -------- bom Bugs maakt geluid Snif Belle maakt geluid Boe Bunny maakt geluid Snif Generaal Kiekens maakt geluid Toktok Chick maakt geluid Toktok -------- etenstijd Bugs eet gras Belle eet gras Bunny eet gras Generaal Kiekens eet mais Chick eet mais -------- zoeken Belle gevonden Jos niet gevonden */
block_comment
nl
package be.kdg.boederij; /** * Testklasse voor het project. Werk eerst alle andere klassen uit. * Zie onderaan voor de verwachte afdruk. */ public class TestKlasse { public static void main(String[] args) { Boerderij boerderij = new Boerderij(); boerderij.voegDierToe(new Konijn("Bugs", true)); boerderij.voegDierToe(new Koe("Belle", 15)); boerderij.voegDierToe(new Konijn("Bunny", false)); boerderij.voegDierToe(new Kip("Generaal Kiekens", 3)); boerderij.voegDierToe(new Kip("Chick", 4)); System.out.println("--------\ntoonDieren\n"); boerderij.toonDieren(); System.out.println("--------\nbom\n"); boerderij.toonGeluiden(); System.out.println("--------\netenstijd\n"); boerderij.toonVoeding(); System.out.println("--------\nzoeken\n"); if (boerderij.zoekDierOpNaam("Belle")) { System.out.println("Belle gevonden"); } if (!(boerderij.zoekDierOpNaam("Jos"))) { System.out.println("Jos niet gevonden"); } } } /* -------- toonDieren <SUF>*/
204246_1
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package sets; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; /** * @author Martijn van der Bruggen * @version Dec 10, 2018 (c) HAN University Instituut Toegepaste Biologie en * Chemie Bio-informatica * */ public class DemoSetStrings { public static void main(String[] args) { Set<String> boerderij = new HashSet<String>(); Set<String> dierentuin = new HashSet<String>(); boerderij.add("kip"); boerderij.add("konijn"); boerderij.add("varken"); dierentuin.add("beer"); dierentuin.add("leeuw"); dierentuin.add("konijn"); System.out.println(dierentuin); System.out.println(boerderij); boerderij.retainAll(dierentuin); System.out.println(boerderij); } }
hanbioinformatica/owe6a
Week5_HMset/src/sets/DemoSetStrings.java
302
/** * @author Martijn van der Bruggen * @version Dec 10, 2018 (c) HAN University Instituut Toegepaste Biologie en * Chemie Bio-informatica * */
block_comment
nl
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package sets; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import java.util.Set; /** * @author Martijn van<SUF>*/ public class DemoSetStrings { public static void main(String[] args) { Set<String> boerderij = new HashSet<String>(); Set<String> dierentuin = new HashSet<String>(); boerderij.add("kip"); boerderij.add("konijn"); boerderij.add("varken"); dierentuin.add("beer"); dierentuin.add("leeuw"); dierentuin.add("konijn"); System.out.println(dierentuin); System.out.println(boerderij); boerderij.retainAll(dierentuin); System.out.println(boerderij); } }
204254_0
package be.kdg.boederij; /** * De klasse Boerderij bevat als attributen een lijst van dieren (maximaal 10 elementen via constante) en een aantal (type int). */ public class Boerderij { private static final int MAX = 10; private Dier[] dieren = new Dier[MAX]; private int aantalDieren; /** * Default constructor voor de lijst */ public Boerderij() { } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren[aantalDieren++] = dier; } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (int i = 0; i < aantalDieren; i++) { System.out.println(dieren[i]); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (int i = 0; i < aantalDieren; i++) { System.out.println(dieren[i].getNaam() + " maakt geluid " + dieren[i].getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (int i = 0; i < aantalDieren; i++) { System.out.println(dieren[i].getNaam() + " eet " + dieren[i].getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (int i = 0; i < aantalDieren; i++) { String naam = dieren[i].getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }
gvdhaege/KdG
Java Programming/Deel 2/W1 - Overerving/Oefeningen/Oplossingen/Boerderij/src/be/kdg/boederij/Boerderij.java
549
/** * De klasse Boerderij bevat als attributen een lijst van dieren (maximaal 10 elementen via constante) en een aantal (type int). */
block_comment
nl
package be.kdg.boederij; /** * De klasse Boerderij<SUF>*/ public class Boerderij { private static final int MAX = 10; private Dier[] dieren = new Dier[MAX]; private int aantalDieren; /** * Default constructor voor de lijst */ public Boerderij() { } /** * Voeg een dier aan de lijst toe */ public void voegDierToe(Dier dier) { dieren[aantalDieren++] = dier; } /** * Geeft de volledige informatie over alle dieren (zie voorbeeld) * Voorbeeld: Bugs maakt geluid Snif, eet gras en graaft wel */ public void toonDieren() { for (int i = 0; i < aantalDieren; i++) { System.out.println(dieren[i]); } } /** * Geeft de naam van het dier en het geluid dat het maakt voor alle dieren. * Voorbeeld: Bugs maakt geluid Snif */ public void toonGeluiden() { for (int i = 0; i < aantalDieren; i++) { System.out.println(dieren[i].getNaam() + " maakt geluid " + dieren[i].getGeluid()); } } /** * Geeft de naam van het dier en wat het eet voor alle dieren. * Voorbeeld: Bugs eet gras */ public void toonVoeding() { for (int i = 0; i < aantalDieren; i++) { System.out.println(dieren[i].getNaam() + " eet " + dieren[i].getVoeding()); } } /** * Geeft true als er een dier met de te zoeken naam in de lijst voorkomt. */ public boolean zoekDierOpNaam(String zoekNaam) { for (int i = 0; i < aantalDieren; i++) { String naam = dieren[i].getNaam(); if (zoekNaam.equalsIgnoreCase(naam)) { return true; } } return false; } }