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
| [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project QBAP-client: Fatal error compiling: java.lang.IllegalStateException: !foundGetterForPart -> [Help 1] | |
| org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.5.1:compile (default-compile) on project QBAP-client: Fatal error compiling | |
| at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:215) | |
| at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156) | |
| at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148) | |
| at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117) | |
| at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81) | |
| at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreaded |
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
| import javax.ws.rs.*; | |
| import javax.ws.rs.core.MediaType; | |
| import java.util.Collection; | |
| @Path("users") | |
| @Produces(MediaType.APPLICATION_JSON) | |
| public interface UsersResource { | |
| @GET Collection<UserDto> getAll(); |
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"?> | |
| <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
| xmlns="http://maven.apache.org/POM/4.0.0" | |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
| <modelVersion>4.0.0</modelVersion> | |
| <groupId>com.q.q</groupId> | |
| <artifactId>QBAP</artifactId> |
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
| public class PasswordUpdateDto { | |
| private String currentPassword; | |
| private String newPassword; | |
| private String repeatedNewPassword; | |
| public String getCurrentPassword() { | |
| return currentPassword; | |
| } |
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 com.ig.base.App.client.ui.application.content.update; | |
| import com.github.nalukit.nalu.client.component.AbstractComponent; | |
| import com.ig.base.App.client.widget.AppButton; | |
| import com.ig.base.App.client.widget.AppDialog; | |
| import com.ig.base.App.client.widget.UiLocker; | |
| import com.ig.base.App.shared.update.UpdaterRestResource; | |
| import com.ig.base.App.shared.update.UpdaterStatusDto; | |
| import elemental2.dom.*; | |
| import org.dominokit.domino.ui.Typography.Paragraph; |
OlderNewer