This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:tx="http://www.springframework.org/schema/tx" | |
| xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd | |
| http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd | |
| http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd" | |
| default-autowire="byName"> | |
| <bean id="abstractDao" class="org.lnu.is.dao.dao.DefaultDao" abstract="true"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.lnu.is.mailing.exception; | |
| /** | |
| * Custom exception for mail exception situations. | |
| * @author ivanursul | |
| * | |
| */ | |
| public class MailException extends RuntimeException { | |
| private static final long serialVersionUID = -2414207564909105820L; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.lnu.is.integration.access | |
| import io.gatling.core.Predef.checkBuilder2Check | |
| import io.gatling.core.Predef.doIf | |
| import io.gatling.core.Predef.exec | |
| import io.gatling.core.Predef.findCheckBuilder2ValidatorCheckBuilder | |
| import io.gatling.core.Predef.foreach | |
| import io.gatling.core.Predef.stringToExpression | |
| import io.gatling.core.Predef.validatorCheckBuilder2CheckBuilder | |
| import io.gatling.core.Predef.value2Expression |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.lnu.is.integration.access | |
| import io.gatling.core.Predef.checkBuilder2Check | |
| import io.gatling.core.Predef.doIf | |
| import io.gatling.core.Predef.exec | |
| import io.gatling.core.Predef.findCheckBuilder2ValidatorCheckBuilder | |
| import io.gatling.core.Predef.foreach | |
| import io.gatling.core.Predef.feed | |
| import io.gatling.core.Predef.stringToExpression | |
| import io.gatling.core.Predef.validatorCheckBuilder2CheckBuilder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| url | accessDeniedId | |
|---|---|---|
| /gendertypes | 1 | |
| /persons/types | 2 | |
| /streets/types | 3 | |
| /timeperiods/types | 4 | |
| /papers/types | 5 | |
| /orders/types | 6 | |
| /marriedtypes | 7 | |
| /languages | 8 | |
| /honors/types | 9 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.lnu.is.integration.access | |
| import io.gatling.core.Predef.checkBuilder2Check | |
| import io.gatling.core.Predef.doIf | |
| import io.gatling.core.Predef.exec | |
| import io.gatling.core.Predef.findCheckBuilder2ValidatorCheckBuilder | |
| import io.gatling.core.Predef.foreach | |
| import io.gatling.core.Predef.feed | |
| import io.gatling.core.Predef.stringToExpression | |
| import io.gatling.core.Predef.validatorCheckBuilder2CheckBuilder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "offset": 0, | |
| "limit": 20, | |
| "count": 41949, | |
| "resources": [ | |
| { | |
| "id": 1, | |
| "adminUnitTypeId": 6, | |
| "name": "Ураїна", | |
| "uri": "/adminunits/1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.lnu.is.mailing.model; | |
| import java.io.InputStream; | |
| /** | |
| * Model for mail attachment. | |
| * @author ivanursul | |
| * | |
| */ | |
| public class Attachment { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.lnu.is.mailing.model; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| /** | |
| * Model for describign whole email. | |
| * @author ivanursul | |
| * |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.lnu.is.mailing.model; | |
| import java.util.List; | |
| /** | |
| * Simple email, without attachments. | |
| * @author ivanursul | |
| * | |
| */ |