Skip to content
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 mdx-gateway-generator/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ org.ow2.asm:asm-util:9.6=spotbugs
org.ow2.asm:asm:9.2=jacocoAnt
org.ow2.asm:asm:9.6=spotbugs
org.projectlombok:lombok:1.18.24=runtimeClasspath,testRuntimeClasspath
org.projectlombok:lombok:1.18.36=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.projectlombok:lombok:1.18.38=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.reflections:reflections:0.10.2=runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:1.7.32=runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:2.0.0=spotbugsSlf4j
Expand Down
2 changes: 1 addition & 1 deletion mdx-gateways/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ org.ow2.asm:asm-util:9.6=spotbugs
org.ow2.asm:asm:9.2=jacocoAnt
org.ow2.asm:asm:9.3=pmd
org.ow2.asm:asm:9.6=spotbugs
org.projectlombok:lombok:1.18.36=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.projectlombok:lombok:1.18.38=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.reflections:reflections:0.10.2=annotationProcessor,runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:1.7.30=testCompileClasspath
org.slf4j:slf4j-api:1.7.32=annotationProcessor,runtimeClasspath,testRuntimeClasspath
Expand Down
2 changes: 1 addition & 1 deletion mdx-models/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ org.ow2.asm:asm-util:9.6=spotbugs
org.ow2.asm:asm:9.2=jacocoAnt
org.ow2.asm:asm:9.3=pmd
org.ow2.asm:asm:9.6=spotbugs
org.projectlombok:lombok:1.18.36=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.projectlombok:lombok:1.18.38=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.reflections:reflections:0.10.2=runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:1.7.32=runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:2.0.0=spotbugsSlf4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

public class Authentication extends MdxBase<Authentication> {

private String appVersion;
Comment thread
ndasari2 marked this conversation as resolved.
@Deprecated
private Boolean canUsePayments;
@Deprecated
Expand Down Expand Up @@ -47,6 +48,24 @@ public Authentication(String newLoginName, char[] newPassword) {
setPassword(newPassword);
}

/**
* Returns the version of the application.
*
* @return the application version as a {@link String}, or {@code null} if not set
*/
public String getAppVersion() {
return appVersion;
}

/**
* Sets the version of the application.
*
* @param appVersion the application version to set
*/
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
}

public final Boolean isCanUsePayments() {
return canUsePayments;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public enum DeviceRegistration {
SECONDARY
}

private String appVersion;
private List<Challenge> challenges;
private String clientDeviceToken;
private Integer deviceHeight;
Expand Down
2 changes: 1 addition & 1 deletion mdx-web/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ org.ow2.asm:asm:9.1=testCompileClasspath,testRuntimeClasspath
org.ow2.asm:asm:9.2=jacocoAnt
org.ow2.asm:asm:9.3=pmd
org.ow2.asm:asm:9.6=spotbugs
org.projectlombok:lombok:1.18.36=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.projectlombok:lombok:1.18.38=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.reflections:reflections:0.10.2=runtimeClasspath,testRuntimeClasspath
org.skyscreamer:jsonassert:1.5.1=testCompileClasspath,testRuntimeClasspath
org.slf4j:jul-to-slf4j:1.7.36=compileClasspath,runtimeClasspath,testCompileClasspath,testRuntimeClasspath
Expand Down
2 changes: 1 addition & 1 deletion realtime/gradle.lockfile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ org.ow2.asm:asm-util:9.6=spotbugs
org.ow2.asm:asm:9.2=jacocoAnt
org.ow2.asm:asm:9.3=pmd
org.ow2.asm:asm:9.6=spotbugs
org.projectlombok:lombok:1.18.36=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.projectlombok:lombok:1.18.38=annotationProcessor,compileClasspath,lombok,testAnnotationProcessor,testCompileClasspath
org.reflections:reflections:0.10.2=runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:1.7.32=runtimeClasspath,testRuntimeClasspath
org.slf4j:slf4j-api:2.0.0=spotbugsSlf4j
Expand Down