Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1069: Missing @NoArgsConstructor annotations in model #1070

Merged
merged 2 commits into from
Jan 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<groupId>io.getlime.security</groupId>
<artifactId>powerauth-webflow-parent</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>pom</packaging>

<parent>
Expand Down
8 changes: 4 additions & 4 deletions powerauth-data-adapter-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@

<name>powerauth-data-adapter-client</name>
<artifactId>powerauth-data-adapter-client</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -46,12 +46,12 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-data-adapter-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-nextstep-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.getlime.core</groupId>
Expand Down
6 changes: 3 additions & 3 deletions powerauth-data-adapter-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
<name>powerauth-data-adapter-model</name>
<artifactId>powerauth-data-adapter-model</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand All @@ -44,7 +44,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-nextstep-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down
4 changes: 2 additions & 2 deletions powerauth-mtoken-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>powerauth-mtoken-model</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>

<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
6 changes: 3 additions & 3 deletions powerauth-nextstep-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@
<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>powerauth-nextstep-client</artifactId>
<name>powerauth-nextstep-client</name>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<dependencies>
Expand All @@ -47,7 +47,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-nextstep-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.getlime.core</groupId>
Expand Down
4 changes: 2 additions & 2 deletions powerauth-nextstep-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
<artifactId>powerauth-nextstep-model</artifactId>
<name>powerauth-nextstep-model</name>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<parent>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-webflow-parent</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;
Expand All @@ -31,6 +32,7 @@
* @author Roman Strobl, roman.strobl@wultra.com
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class BankAccountDetail {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
import io.getlime.security.powerauth.lib.nextstep.model.entity.enumeration.EncryptionAlgorithm;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
* Credential value stored in database, optionally encrypted.
*
* @author Roman Strobl, roman.strobl@wultra.com
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class CredentialValue {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
* Result of enabling mobile token.
*
* @author Roman Strobl, roman.strobl@wultra.com
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class EnableMobileTokenResult {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
import io.getlime.security.powerauth.lib.nextstep.model.entity.enumeration.EncryptionAlgorithm;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

/**
* OTP value stored in database, optionally encrypted.
*
* @author Roman Strobl, roman.strobl@wultra.com
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class OtpValue {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.Size;
Expand All @@ -29,6 +30,7 @@
* @author Roman Strobl, roman.strobl@wultra.com
*/
@Data
@NoArgsConstructor
@AllArgsConstructor
public class PartyInfo {

Expand Down
10 changes: 5 additions & 5 deletions powerauth-nextstep/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
<name>powerauth-nextstep</name>
<artifactId>powerauth-nextstep</artifactId>
<description>PowerAuth 2.0 Next Step Server</description>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>war</packaging>

<parent>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-webflow-parent</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -72,7 +72,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-nextstep-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
Expand All @@ -82,7 +82,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-data-adapter-client</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
Expand Down Expand Up @@ -136,7 +136,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-nextstep-client</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions powerauth-tpp-engine-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</parent>

<name>powerauth-tpp-engine-client</name>
<artifactId>powerauth-tpp-engine-client</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<dependencies>
Expand All @@ -52,7 +52,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-tpp-engine-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions powerauth-tpp-engine-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@
<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</parent>

<name>powerauth-tpp-engine-model</name>
<artifactId>powerauth-tpp-engine-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
6 changes: 3 additions & 3 deletions powerauth-tpp-engine/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
<name>powerauth-tpp-engine</name>
<artifactId>powerauth-tpp-engine</artifactId>
<description>Default TPP registry and consent engine implementation</description>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<packaging>war</packaging>

<parent>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-webflow-parent</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-tpp-engine-model</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.getlime.core</groupId>
Expand Down
6 changes: 3 additions & 3 deletions powerauth-webflow-authentication-approval-sca/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@
<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>powerauth-webflow-authentication-approval-sca</name>
<artifactId>powerauth-webflow-authentication-approval-sca</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-webflow-authentication</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
</dependencies>

Expand Down
8 changes: 4 additions & 4 deletions powerauth-webflow-authentication-consent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@
<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>powerauth-webflow-authentication-consent</artifactId>
<name>powerauth-webflow-authentication-consent</name>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-webflow-authentication</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-data-adapter-client</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
Expand Down
6 changes: 3 additions & 3 deletions powerauth-webflow-authentication-form/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@
<parent>
<artifactId>powerauth-webflow-parent</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>

<name>powerauth-webflow-authentication-form</name>
<artifactId>powerauth-webflow-authentication-form</artifactId>
<groupId>io.getlime.security</groupId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>

<dependencies>
<dependency>
<groupId>io.getlime.security</groupId>
<artifactId>powerauth-webflow-authentication</artifactId>
<version>1.2.0</version>
<version>1.3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
Expand Down
Loading