Added common and root project
This commit is contained in:
114
quarkus/.mvn/wrapper/MavenWrapperDownloader.java
vendored
Normal file
114
quarkus/.mvn/wrapper/MavenWrapperDownloader.java
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
/*
|
||||
Licensed to the Apache Software Foundation (ASF) under one
|
||||
or more contributor license agreements. See the NOTICE file
|
||||
distributed with this work for additional information
|
||||
regarding copyright ownership. The ASF licenses this file
|
||||
to you under the Apache License, Version 2.0 (the
|
||||
"License"); you may not use this file except in compliance
|
||||
with the License. You may obtain a copy of the License at
|
||||
|
||||
https://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing,
|
||||
software distributed under the License is distributed on an
|
||||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
KIND, either express or implied. See the License for the
|
||||
specific language governing permissions and limitations
|
||||
under the License.
|
||||
*/
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.FileOutputStream;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.nio.channels.Channels;
|
||||
import java.nio.channels.ReadableByteChannel;
|
||||
import java.util.Properties;
|
||||
|
||||
public class MavenWrapperDownloader {
|
||||
|
||||
/**
|
||||
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
|
||||
*/
|
||||
private static final String DEFAULT_DOWNLOAD_URL =
|
||||
"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar";
|
||||
|
||||
/**
|
||||
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
|
||||
* use instead of the default one.
|
||||
*/
|
||||
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
|
||||
".mvn/wrapper/maven-wrapper.properties";
|
||||
|
||||
/**
|
||||
* Path where the maven-wrapper.jar will be saved to.
|
||||
*/
|
||||
private static final String MAVEN_WRAPPER_JAR_PATH =
|
||||
".mvn/wrapper/maven-wrapper.jar";
|
||||
|
||||
/**
|
||||
* Name of the property which should be used to override the default download url for the wrapper.
|
||||
*/
|
||||
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
|
||||
|
||||
public static void main(String args[]) {
|
||||
System.out.println("- Downloader started");
|
||||
File baseDirectory = new File(args[0]);
|
||||
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
|
||||
|
||||
// If the maven-wrapper.properties exists, read it and check if it contains a custom
|
||||
// wrapperUrl parameter.
|
||||
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
|
||||
String url = DEFAULT_DOWNLOAD_URL;
|
||||
if(mavenWrapperPropertyFile.exists()) {
|
||||
FileInputStream mavenWrapperPropertyFileInputStream = null;
|
||||
try {
|
||||
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
|
||||
Properties mavenWrapperProperties = new Properties();
|
||||
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
|
||||
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
|
||||
} catch (IOException e) {
|
||||
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
|
||||
} finally {
|
||||
try {
|
||||
if(mavenWrapperPropertyFileInputStream != null) {
|
||||
mavenWrapperPropertyFileInputStream.close();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
// Ignore ...
|
||||
}
|
||||
}
|
||||
}
|
||||
System.out.println("- Downloading from: : " + url);
|
||||
|
||||
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
|
||||
if(!outputFile.getParentFile().exists()) {
|
||||
if(!outputFile.getParentFile().mkdirs()) {
|
||||
System.out.println(
|
||||
"- ERROR creating output direcrory '" + outputFile.getParentFile().getAbsolutePath() + "'");
|
||||
}
|
||||
}
|
||||
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
|
||||
try {
|
||||
downloadFileFromURL(url, outputFile);
|
||||
System.out.println("Done");
|
||||
System.exit(0);
|
||||
} catch (Throwable e) {
|
||||
System.out.println("- Error downloading");
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
|
||||
URL website = new URL(urlString);
|
||||
ReadableByteChannel rbc;
|
||||
rbc = Channels.newChannel(website.openStream());
|
||||
FileOutputStream fos = new FileOutputStream(destination);
|
||||
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
|
||||
fos.close();
|
||||
rbc.close();
|
||||
}
|
||||
|
||||
}
|
||||
BIN
quarkus/.mvn/wrapper/maven-wrapper.jar
vendored
Normal file
BIN
quarkus/.mvn/wrapper/maven-wrapper.jar
vendored
Normal file
Binary file not shown.
1
quarkus/.mvn/wrapper/maven-wrapper.properties
vendored
Normal file
1
quarkus/.mvn/wrapper/maven-wrapper.properties
vendored
Normal file
@@ -0,0 +1 @@
|
||||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
|
||||
286
quarkus/mvnw
vendored
Executable file
286
quarkus/mvnw
vendored
Executable file
@@ -0,0 +1,286 @@
|
||||
#!/bin/sh
|
||||
# ----------------------------------------------------------------------------
|
||||
# Licensed to the Apache Software Foundation (ASF) under one
|
||||
# or more contributor license agreements. See the NOTICE file
|
||||
# distributed with this work for additional information
|
||||
# regarding copyright ownership. The ASF licenses this file
|
||||
# to you under the Apache License, Version 2.0 (the
|
||||
# "License"); you may not use this file except in compliance
|
||||
# with the License. You may obtain a copy of the License at
|
||||
#
|
||||
# https://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing,
|
||||
# software distributed under the License is distributed on an
|
||||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
# KIND, either express or implied. See the License for the
|
||||
# specific language governing permissions and limitations
|
||||
# under the License.
|
||||
# ----------------------------------------------------------------------------
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Maven2 Start Up Batch script
|
||||
#
|
||||
# Required ENV vars:
|
||||
# ------------------
|
||||
# JAVA_HOME - location of a JDK home dir
|
||||
#
|
||||
# Optional ENV vars
|
||||
# -----------------
|
||||
# M2_HOME - location of maven2's installed home dir
|
||||
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||
# e.g. to debug Maven itself, use
|
||||
# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||
# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||
# ----------------------------------------------------------------------------
|
||||
|
||||
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||
|
||||
if [ -f /etc/mavenrc ] ; then
|
||||
. /etc/mavenrc
|
||||
fi
|
||||
|
||||
if [ -f "$HOME/.mavenrc" ] ; then
|
||||
. "$HOME/.mavenrc"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
# OS specific support. $var _must_ be set to either true or false.
|
||||
cygwin=false;
|
||||
darwin=false;
|
||||
mingw=false
|
||||
case "`uname`" in
|
||||
CYGWIN*) cygwin=true ;;
|
||||
MINGW*) mingw=true;;
|
||||
Darwin*) darwin=true
|
||||
# Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
|
||||
# See https://developer.apple.com/library/mac/qa/qa1170/_index.html
|
||||
if [ -z "$JAVA_HOME" ]; then
|
||||
if [ -x "/usr/libexec/java_home" ]; then
|
||||
export JAVA_HOME="`/usr/libexec/java_home`"
|
||||
else
|
||||
export JAVA_HOME="/Library/Java/Home"
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -z "$JAVA_HOME" ] ; then
|
||||
if [ -r /etc/gentoo-release ] ; then
|
||||
JAVA_HOME=`java-config --jre-home`
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$M2_HOME" ] ; then
|
||||
## resolve links - $0 may be a link to maven's home
|
||||
PRG="$0"
|
||||
|
||||
# need this for relative symlinks
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG="`dirname "$PRG"`/$link"
|
||||
fi
|
||||
done
|
||||
|
||||
saveddir=`pwd`
|
||||
|
||||
M2_HOME=`dirname "$PRG"`/..
|
||||
|
||||
# make it fully qualified
|
||||
M2_HOME=`cd "$M2_HOME" && pwd`
|
||||
|
||||
cd "$saveddir"
|
||||
# echo Using m2 at $M2_HOME
|
||||
fi
|
||||
|
||||
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
||||
if $cygwin ; then
|
||||
[ -n "$M2_HOME" ] &&
|
||||
M2_HOME=`cygpath --unix "$M2_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||
fi
|
||||
|
||||
# For Mingw, ensure paths are in UNIX format before anything is touched
|
||||
if $mingw ; then
|
||||
[ -n "$M2_HOME" ] &&
|
||||
M2_HOME="`(cd "$M2_HOME"; pwd)`"
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
|
||||
# TODO classpath?
|
||||
fi
|
||||
|
||||
if [ -z "$JAVA_HOME" ]; then
|
||||
javaExecutable="`which javac`"
|
||||
if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
|
||||
# readlink(1) is not available as standard on Solaris 10.
|
||||
readLink=`which readlink`
|
||||
if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
|
||||
if $darwin ; then
|
||||
javaHome="`dirname \"$javaExecutable\"`"
|
||||
javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
|
||||
else
|
||||
javaExecutable="`readlink -f \"$javaExecutable\"`"
|
||||
fi
|
||||
javaHome="`dirname \"$javaExecutable\"`"
|
||||
javaHome=`expr "$javaHome" : '\(.*\)/bin'`
|
||||
JAVA_HOME="$javaHome"
|
||||
export JAVA_HOME
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$JAVACMD" ] ; then
|
||||
if [ -n "$JAVA_HOME" ] ; then
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||
# IBM's JDK on AIX uses strange locations for the executables
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
else
|
||||
JAVACMD="`which java`"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
echo "Error: JAVA_HOME is not defined correctly." >&2
|
||||
echo " We cannot execute $JAVACMD" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$JAVA_HOME" ] ; then
|
||||
echo "Warning: JAVA_HOME environment variable is not set."
|
||||
fi
|
||||
|
||||
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||
|
||||
# traverses directory structure from process work directory to filesystem root
|
||||
# first directory with .mvn subdirectory is considered project base directory
|
||||
find_maven_basedir() {
|
||||
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
echo "Path not specified to find_maven_basedir"
|
||||
return 1
|
||||
fi
|
||||
|
||||
basedir="$1"
|
||||
wdir="$1"
|
||||
while [ "$wdir" != '/' ] ; do
|
||||
if [ -d "$wdir"/.mvn ] ; then
|
||||
basedir=$wdir
|
||||
break
|
||||
fi
|
||||
# workaround for JBEAP-8937 (on Solaris 10/Sparc)
|
||||
if [ -d "${wdir}" ]; then
|
||||
wdir=`cd "$wdir/.."; pwd`
|
||||
fi
|
||||
# end of workaround
|
||||
done
|
||||
echo "${basedir}"
|
||||
}
|
||||
|
||||
# concatenates all lines of a file
|
||||
concat_lines() {
|
||||
if [ -f "$1" ]; then
|
||||
echo "$(tr -s '\n' ' ' < "$1")"
|
||||
fi
|
||||
}
|
||||
|
||||
BASE_DIR=`find_maven_basedir "$(pwd)"`
|
||||
if [ -z "$BASE_DIR" ]; then
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
##########################################################################################
|
||||
# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||
# This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||
##########################################################################################
|
||||
if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Found .mvn/wrapper/maven-wrapper.jar"
|
||||
fi
|
||||
else
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
|
||||
fi
|
||||
jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar"
|
||||
while IFS="=" read key value; do
|
||||
case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
|
||||
esac
|
||||
done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Downloading from: $jarUrl"
|
||||
fi
|
||||
wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
|
||||
|
||||
if command -v wget > /dev/null; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Found wget ... using wget"
|
||||
fi
|
||||
wget "$jarUrl" -O "$wrapperJarPath"
|
||||
elif command -v curl > /dev/null; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Found curl ... using curl"
|
||||
fi
|
||||
curl -o "$wrapperJarPath" "$jarUrl"
|
||||
else
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Falling back to using Java to download"
|
||||
fi
|
||||
javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
|
||||
if [ -e "$javaClass" ]; then
|
||||
if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo " - Compiling MavenWrapperDownloader.java ..."
|
||||
fi
|
||||
# Compiling the Java class
|
||||
("$JAVA_HOME/bin/javac" "$javaClass")
|
||||
fi
|
||||
if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||
# Running the downloader
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo " - Running MavenWrapperDownloader.java ..."
|
||||
fi
|
||||
("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
##########################################################################################
|
||||
# End of extension
|
||||
##########################################################################################
|
||||
|
||||
export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo $MAVEN_PROJECTBASEDIR
|
||||
fi
|
||||
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin; then
|
||||
[ -n "$M2_HOME" ] &&
|
||||
M2_HOME=`cygpath --path --windows "$M2_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||
fi
|
||||
|
||||
WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||
|
||||
exec "$JAVACMD" \
|
||||
$MAVEN_OPTS \
|
||||
-classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
|
||||
"-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||
${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
|
||||
161
quarkus/mvnw.cmd
vendored
Normal file
161
quarkus/mvnw.cmd
vendored
Normal file
@@ -0,0 +1,161 @@
|
||||
@REM ----------------------------------------------------------------------------
|
||||
@REM Licensed to the Apache Software Foundation (ASF) under one
|
||||
@REM or more contributor license agreements. See the NOTICE file
|
||||
@REM distributed with this work for additional information
|
||||
@REM regarding copyright ownership. The ASF licenses this file
|
||||
@REM to you under the Apache License, Version 2.0 (the
|
||||
@REM "License"); you may not use this file except in compliance
|
||||
@REM with the License. You may obtain a copy of the License at
|
||||
@REM
|
||||
@REM https://www.apache.org/licenses/LICENSE-2.0
|
||||
@REM
|
||||
@REM Unless required by applicable law or agreed to in writing,
|
||||
@REM software distributed under the License is distributed on an
|
||||
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
@REM KIND, either express or implied. See the License for the
|
||||
@REM specific language governing permissions and limitations
|
||||
@REM under the License.
|
||||
@REM ----------------------------------------------------------------------------
|
||||
|
||||
@REM ----------------------------------------------------------------------------
|
||||
@REM Maven2 Start Up Batch script
|
||||
@REM
|
||||
@REM Required ENV vars:
|
||||
@REM JAVA_HOME - location of a JDK home dir
|
||||
@REM
|
||||
@REM Optional ENV vars
|
||||
@REM M2_HOME - location of maven2's installed home dir
|
||||
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
|
||||
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
|
||||
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||
@REM e.g. to debug Maven itself, use
|
||||
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||
@REM ----------------------------------------------------------------------------
|
||||
|
||||
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
|
||||
@echo off
|
||||
@REM set title of command window
|
||||
title %0
|
||||
@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
|
||||
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
|
||||
|
||||
@REM set %HOME% to equivalent of $HOME
|
||||
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
|
||||
|
||||
@REM Execute a user defined script before this one
|
||||
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
|
||||
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
|
||||
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
|
||||
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
|
||||
:skipRcPre
|
||||
|
||||
@setlocal
|
||||
|
||||
set ERROR_CODE=0
|
||||
|
||||
@REM To isolate internal variables from possible post scripts, we use another setlocal
|
||||
@setlocal
|
||||
|
||||
@REM ==== START VALIDATION ====
|
||||
if not "%JAVA_HOME%" == "" goto OkJHome
|
||||
|
||||
echo.
|
||||
echo Error: JAVA_HOME not found in your environment. >&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||
echo location of your Java installation. >&2
|
||||
echo.
|
||||
goto error
|
||||
|
||||
:OkJHome
|
||||
if exist "%JAVA_HOME%\bin\java.exe" goto init
|
||||
|
||||
echo.
|
||||
echo Error: JAVA_HOME is set to an invalid directory. >&2
|
||||
echo JAVA_HOME = "%JAVA_HOME%" >&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||
echo location of your Java installation. >&2
|
||||
echo.
|
||||
goto error
|
||||
|
||||
@REM ==== END VALIDATION ====
|
||||
|
||||
:init
|
||||
|
||||
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
|
||||
@REM Fallback to current working directory if not found.
|
||||
|
||||
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
|
||||
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
|
||||
|
||||
set EXEC_DIR=%CD%
|
||||
set WDIR=%EXEC_DIR%
|
||||
:findBaseDir
|
||||
IF EXIST "%WDIR%"\.mvn goto baseDirFound
|
||||
cd ..
|
||||
IF "%WDIR%"=="%CD%" goto baseDirNotFound
|
||||
set WDIR=%CD%
|
||||
goto findBaseDir
|
||||
|
||||
:baseDirFound
|
||||
set MAVEN_PROJECTBASEDIR=%WDIR%
|
||||
cd "%EXEC_DIR%"
|
||||
goto endDetectBaseDir
|
||||
|
||||
:baseDirNotFound
|
||||
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
|
||||
cd "%EXEC_DIR%"
|
||||
|
||||
:endDetectBaseDir
|
||||
|
||||
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
|
||||
|
||||
@setlocal EnableExtensions EnableDelayedExpansion
|
||||
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
|
||||
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
|
||||
|
||||
:endReadAdditionalConfig
|
||||
|
||||
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
|
||||
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
|
||||
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||
|
||||
set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar"
|
||||
FOR /F "tokens=1,2 delims==" %%A IN (%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties) DO (
|
||||
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
|
||||
)
|
||||
|
||||
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||
if exist %WRAPPER_JAR% (
|
||||
echo Found %WRAPPER_JAR%
|
||||
) else (
|
||||
echo Couldn't find %WRAPPER_JAR%, downloading it ...
|
||||
echo Downloading from: %DOWNLOAD_URL%
|
||||
powershell -Command "(New-Object Net.WebClient).DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"
|
||||
echo Finished downloading %WRAPPER_JAR%
|
||||
)
|
||||
@REM End of extension
|
||||
|
||||
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
|
||||
if ERRORLEVEL 1 goto error
|
||||
goto end
|
||||
|
||||
:error
|
||||
set ERROR_CODE=1
|
||||
|
||||
:end
|
||||
@endlocal & set ERROR_CODE=%ERROR_CODE%
|
||||
|
||||
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
|
||||
@REM check for post script, once with legacy .bat ending and once with .cmd ending
|
||||
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
|
||||
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
|
||||
:skipRcPost
|
||||
|
||||
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
|
||||
if "%MAVEN_BATCH_PAUSE%" == "on" pause
|
||||
|
||||
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
|
||||
|
||||
exit /B %ERROR_CODE%
|
||||
17
quarkus/pom.xml
Normal file
17
quarkus/pom.xml
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.fuin.cqrs4j.example.quarkus</groupId>
|
||||
<artifactId>cqrs4j-quarkus-example-root</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<packaging>pom</packaging>
|
||||
|
||||
<modules>
|
||||
<module>shared</module>
|
||||
<module>query</module>
|
||||
<module>command</module>
|
||||
</modules>
|
||||
|
||||
</project>
|
||||
134
quarkus/shared/pom.xml
Normal file
134
quarkus/shared/pom.xml
Normal file
@@ -0,0 +1,134 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.fuin.cqrs4j.example.quarkus</groupId>
|
||||
<artifactId>cqrs4j-quarkus-example-shared</artifactId>
|
||||
<version>0.1.0-SNAPSHOT</version>
|
||||
<name>cqrs4j-quarkus-example-shared</name>
|
||||
<description>Quarkus CQRS Shared Code for Demo Application</description>
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<java.version>1.8</java.version>
|
||||
<esc.version>0.3.1-SNAPSHOT</esc.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<!-- Compile -->
|
||||
|
||||
<dependency>
|
||||
<groupId>org.fuin</groupId>
|
||||
<artifactId>ddd-4-java</artifactId>
|
||||
<version>0.2.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.fuin</groupId>
|
||||
<artifactId>cqrs-4-java</artifactId>
|
||||
<version>0.2.1-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.fuin</groupId>
|
||||
<artifactId>objects4j</artifactId>
|
||||
<version>0.6.9-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.fuin.esc</groupId>
|
||||
<artifactId>esc-spi</artifactId>
|
||||
<version>${esc.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.fuin.esc</groupId>
|
||||
<artifactId>esc-esjc</artifactId>
|
||||
<version>${esc.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.7.25</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.hibernate.validator</groupId>
|
||||
<artifactId>hibernate-validator</artifactId>
|
||||
<version>6.0.10.Final</version>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<artifactId>jaxb-impl</artifactId>
|
||||
<groupId>com.sun.xml.bind</groupId>
|
||||
</exclusion>
|
||||
<exclusion>
|
||||
<artifactId>jaxb-api</artifactId>
|
||||
<groupId>javax.xml.bind</groupId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.glassfish</groupId>
|
||||
<artifactId>javax.json</artifactId>
|
||||
<version>1.1.4</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.eclipse</groupId>
|
||||
<artifactId>yasson</artifactId>
|
||||
<version>1.0.3</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>jakarta.persistence</groupId>
|
||||
<artifactId>jakarta.persistence-api</artifactId>
|
||||
<version>2.2.3</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Test -->
|
||||
|
||||
<dependency>
|
||||
<groupId>junit</groupId>
|
||||
<artifactId>junit</artifactId>
|
||||
<version>4.12</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.assertj</groupId>
|
||||
<artifactId>assertj-core</artifactId>
|
||||
<version>3.10.0</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.fuin</groupId>
|
||||
<artifactId>units4j</artifactId>
|
||||
<version>0.8.3</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>nl.jqno.equalsverifier</groupId>
|
||||
<artifactId>equalsverifier</artifactId>
|
||||
<version>2.4.6</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<version>2.6</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
@@ -0,0 +1,88 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import javax.annotation.concurrent.Immutable;
|
||||
import javax.json.bind.annotation.JsonbProperty;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import org.fuin.cqrs4j.AbstractAggregateCommand;
|
||||
import org.fuin.ddd4j.ddd.DomainEventExpectedEntityIdPath;
|
||||
import org.fuin.ddd4j.ddd.EventType;
|
||||
import org.fuin.esc.spi.SerializedDataType;
|
||||
import org.fuin.objects4j.common.Contract;
|
||||
|
||||
/**
|
||||
* A new person should be created in the system.
|
||||
*/
|
||||
@Immutable
|
||||
@DomainEventExpectedEntityIdPath(PersonId.class)
|
||||
public final class CreatePersonCommand extends AbstractAggregateCommand<PersonId, PersonId> {
|
||||
|
||||
private static final long serialVersionUID = 1000L;
|
||||
|
||||
/** Never changing unique event type name. */
|
||||
public static final EventType TYPE = new EventType("CreatePersonCommand");
|
||||
|
||||
/** Unique name used for marshalling/unmarshalling the event. */
|
||||
public static final SerializedDataType SER_TYPE = new SerializedDataType(CreatePersonCommand.TYPE.asBaseType());
|
||||
|
||||
@NotNull
|
||||
@JsonbProperty("name")
|
||||
private PersonName name;
|
||||
|
||||
/**
|
||||
* Protected default constructor for deserialization.
|
||||
*/
|
||||
protected CreatePersonCommand() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* A new person was created in the system.
|
||||
*
|
||||
* @param id Identifies uniquely a person.
|
||||
* @param name Name of a person.
|
||||
*/
|
||||
public CreatePersonCommand(@NotNull final PersonId id, @NotNull final PersonName name) {
|
||||
super(id, null);
|
||||
Contract.requireArgNotNull("name", name);
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final EventType getEventType() {
|
||||
return CreatePersonCommand.TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns: Name of a person.
|
||||
*
|
||||
* @return Current value.
|
||||
*/
|
||||
@NotNull
|
||||
public final PersonName getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String toString() {
|
||||
return "Create person '" + name + "' with identifier '" + getAggregateRootId() + "'";
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,87 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import javax.annotation.concurrent.Immutable;
|
||||
import javax.json.bind.annotation.JsonbProperty;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import org.fuin.ddd4j.ddd.AbstractDomainEvent;
|
||||
import org.fuin.ddd4j.ddd.EntityIdPath;
|
||||
import org.fuin.ddd4j.ddd.EventType;
|
||||
import org.fuin.esc.spi.SerializedDataType;
|
||||
import org.fuin.objects4j.common.Contract;
|
||||
|
||||
/**
|
||||
* A new person was created in the system.
|
||||
*/
|
||||
@Immutable
|
||||
public final class PersonCreatedEvent extends AbstractDomainEvent<PersonId> {
|
||||
|
||||
private static final long serialVersionUID = 1000L;
|
||||
|
||||
/** Never changing unique event type name. */
|
||||
public static final EventType TYPE = new EventType("PersonCreatedEvent");
|
||||
|
||||
/** Unique name used for marshalling/unmarshalling the event. */
|
||||
public static final SerializedDataType SER_TYPE = new SerializedDataType(PersonCreatedEvent.TYPE.asBaseType());
|
||||
|
||||
@NotNull
|
||||
@JsonbProperty("name")
|
||||
private PersonName name;
|
||||
|
||||
/**
|
||||
* Protected default constructor for deserialization.
|
||||
*/
|
||||
protected PersonCreatedEvent() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* A new person was created in the system.
|
||||
*
|
||||
* @param id Identifies uniquely a person.
|
||||
* @param name Name of a person.
|
||||
*/
|
||||
public PersonCreatedEvent(@NotNull final PersonId id, @NotNull final PersonName name) {
|
||||
super(new EntityIdPath(id));
|
||||
Contract.requireArgNotNull("name", name);
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final EventType getEventType() {
|
||||
return PersonCreatedEvent.TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns: Name of a person.
|
||||
*
|
||||
* @return Current value.
|
||||
*/
|
||||
@NotNull
|
||||
public final PersonName getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String toString() {
|
||||
return "Person '" + name + "' was created";
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import javax.annotation.concurrent.Immutable;
|
||||
import javax.json.bind.adapter.JsonbAdapter;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import org.fuin.ddd4j.ddd.AggregateRootUuid;
|
||||
import org.fuin.ddd4j.ddd.EntityType;
|
||||
import org.fuin.ddd4j.ddd.StringBasedEntityType;
|
||||
import org.fuin.objects4j.ui.Label;
|
||||
import org.fuin.objects4j.ui.ShortLabel;
|
||||
import org.fuin.objects4j.ui.Tooltip;
|
||||
import org.fuin.objects4j.vo.ValueObjectConverter;
|
||||
|
||||
/**
|
||||
* Identifies uniquely a person.
|
||||
*/
|
||||
@ShortLabel(bundle = "ddd-cqrs-4-java-example", key = "PersonId.slabel", value = "PID")
|
||||
@Label(bundle = "ddd-cqrs-4-java-example", key = "PersonId.label", value = "Person's ID")
|
||||
@Tooltip(bundle = "ddd-cqrs-4-java-example", key = "PersonId.tooltip", value = "Unique identifier of a person")
|
||||
@Immutable
|
||||
public final class PersonId extends AggregateRootUuid {
|
||||
|
||||
private static final long serialVersionUID = 1000L;
|
||||
|
||||
/** Unique name of the aggregate this identifier refers to. */
|
||||
public static final EntityType TYPE = new StringBasedEntityType("PERSON");
|
||||
|
||||
/**
|
||||
* Default constructor.
|
||||
*/
|
||||
protected PersonId() {
|
||||
super(PersonId.TYPE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor with all data.
|
||||
*
|
||||
* @param value
|
||||
* Persistent value.
|
||||
*/
|
||||
public PersonId(@NotNull final UUID value) {
|
||||
super(PersonId.TYPE, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifies if the given string can be converted into a Person ID.
|
||||
*
|
||||
* @param value
|
||||
* String with valid UUID string. A <code>null</code> value ris also valid.
|
||||
*
|
||||
* @return {@literal true} if the string is a valid UUID.
|
||||
*/
|
||||
public static boolean isValid(final String value) {
|
||||
if (value == null) {
|
||||
return true;
|
||||
}
|
||||
return AggregateRootUuid.isValid(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses a given string and returns a new instance of PersonId.
|
||||
*
|
||||
* @param value
|
||||
* String with valid UUID to convert. A <code>null</code> value returns <code>null</code>.
|
||||
*
|
||||
* @return Converted value.
|
||||
*/
|
||||
public static PersonId valueOf(final String value) {
|
||||
if (value == null) {
|
||||
return null;
|
||||
}
|
||||
AggregateRootUuid.requireArgValid("value", value);
|
||||
return new PersonId(UUID.fromString(value));
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts the value object from/to UUID.
|
||||
*/
|
||||
public static final class Converter implements ValueObjectConverter<UUID, PersonId>, JsonbAdapter<PersonId, UUID> {
|
||||
|
||||
// Attribute Converter
|
||||
|
||||
@Override
|
||||
public final Class<UUID> getBaseTypeClass() {
|
||||
return UUID.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final Class<PersonId> getValueObjectClass() {
|
||||
return PersonId.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isValid(final UUID value) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final PersonId toVO(final UUID value) {
|
||||
if (value == null) {
|
||||
return null;
|
||||
}
|
||||
return new PersonId(value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final UUID fromVO(final PersonId value) {
|
||||
if (value == null) {
|
||||
return null;
|
||||
}
|
||||
return value.asBaseType();
|
||||
}
|
||||
|
||||
// JSONB Adapter
|
||||
|
||||
@Override
|
||||
public final UUID adaptToJson(final PersonId obj) throws Exception {
|
||||
return fromVO(obj);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final PersonId adaptFromJson(final UUID value) throws Exception {
|
||||
return toVO(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,216 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import java.lang.annotation.Documented;
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
import java.lang.annotation.Target;
|
||||
|
||||
import javax.annotation.concurrent.Immutable;
|
||||
import javax.json.bind.adapter.JsonbAdapter;
|
||||
import javax.validation.Constraint;
|
||||
import javax.validation.ConstraintValidator;
|
||||
import javax.validation.ConstraintValidatorContext;
|
||||
import javax.validation.Payload;
|
||||
import javax.validation.constraints.NotNull;
|
||||
|
||||
import org.fuin.objects4j.common.ConstraintViolationException;
|
||||
import org.fuin.objects4j.ui.Label;
|
||||
import org.fuin.objects4j.ui.ShortLabel;
|
||||
import org.fuin.objects4j.ui.Tooltip;
|
||||
import org.fuin.objects4j.vo.AbstractStringValueObject;
|
||||
import org.fuin.objects4j.vo.ValueObjectConverter;
|
||||
|
||||
/**
|
||||
* Name of a person.
|
||||
*/
|
||||
@ShortLabel(bundle = "ddd-cqrs-4-java-example", key = "PersonName.slabel", value = "PNAME")
|
||||
@Label(bundle = "ddd-cqrs-4-java-example", key = "PersonName.label", value = "Person's name")
|
||||
@Tooltip(bundle = "ddd-cqrs-4-java-example", key = "PersonName.tooltip", value = "Name of a person")
|
||||
@Immutable
|
||||
public final class PersonName extends AbstractStringValueObject {
|
||||
|
||||
private static final long serialVersionUID = 1000L;
|
||||
|
||||
/** Max length of a person's name. */
|
||||
public static final int MAX_LENGTH = 100;
|
||||
|
||||
@NotNull
|
||||
@PersonNameStr
|
||||
private String value;
|
||||
|
||||
/**
|
||||
* Protected default constructor for deserialization.
|
||||
*/
|
||||
protected PersonName() {
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor with mandatory data.
|
||||
*
|
||||
* @param value Value.
|
||||
*/
|
||||
public PersonName(final String value) {
|
||||
super();
|
||||
PersonName.requireArgValid("value", value);
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String asBaseType() {
|
||||
return value;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String toString() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifies that a given string can be converted into the type.
|
||||
*
|
||||
* @param value Value to validate.
|
||||
*
|
||||
* @return Returns <code>true</code> if it's a valid type else
|
||||
* <code>false</code>.
|
||||
*/
|
||||
public static boolean isValid(final String value) {
|
||||
if (value == null) {
|
||||
return true;
|
||||
}
|
||||
if (value.length() == 0) {
|
||||
return false;
|
||||
}
|
||||
final String trimmed = value.trim();
|
||||
if (trimmed.length() > PersonName.MAX_LENGTH) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Verifies if the argument is valid and throws an exception if this is not the
|
||||
* case.
|
||||
*
|
||||
* @param name Name of the value for a possible error message.
|
||||
* @param value Value to check.
|
||||
*
|
||||
* @throws ConstraintViolationException The value was not valid.
|
||||
*/
|
||||
public static void requireArgValid(@NotNull final String name, @NotNull final String value)
|
||||
throws ConstraintViolationException {
|
||||
|
||||
if (!PersonName.isValid(value)) {
|
||||
throw new ConstraintViolationException("The argument '" + name + "' is not valid: '" + value + "'");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Ensures that the string can be converted into the type.
|
||||
*/
|
||||
@Target({ ElementType.METHOD, ElementType.PARAMETER, ElementType.FIELD, ElementType.ANNOTATION_TYPE })
|
||||
@Retention(RetentionPolicy.RUNTIME)
|
||||
@Constraint(validatedBy = { Validator.class })
|
||||
@Documented
|
||||
public static @interface PersonNameStr {
|
||||
|
||||
String message()
|
||||
|
||||
default "{org.fuin.cqrs4j.example.javasecdi.PersonName.message}";
|
||||
|
||||
Class<?>[] groups() default {};
|
||||
|
||||
Class<? extends Payload>[] payload() default {};
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Validates if a string is compliant with the type.
|
||||
*/
|
||||
public static final class Validator implements ConstraintValidator<PersonNameStr, String> {
|
||||
|
||||
@Override
|
||||
public final void initialize(final PersonNameStr annotation) {
|
||||
// Not used
|
||||
}
|
||||
|
||||
@Override
|
||||
public final boolean isValid(final String value, final ConstraintValidatorContext context) {
|
||||
return PersonName.isValid(value);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts the value object from/to string.
|
||||
*/
|
||||
public static final class Converter
|
||||
implements ValueObjectConverter<String, PersonName>, JsonbAdapter<PersonName, String> {
|
||||
|
||||
// Attribute Converter
|
||||
|
||||
@Override
|
||||
public final Class<String> getBaseTypeClass() {
|
||||
return String.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final Class<PersonName> getValueObjectClass() {
|
||||
return PersonName.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isValid(final String value) {
|
||||
return PersonName.isValid(value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final PersonName toVO(final String value) {
|
||||
if (value == null) {
|
||||
return null;
|
||||
}
|
||||
return new PersonName(value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final String fromVO(final PersonName value) {
|
||||
if (value == null) {
|
||||
return null;
|
||||
}
|
||||
return value.asBaseType();
|
||||
}
|
||||
|
||||
// JSONB Adapter
|
||||
|
||||
@Override
|
||||
public final String adaptToJson(final PersonName obj) throws Exception {
|
||||
return fromVO(obj);
|
||||
}
|
||||
|
||||
@Override
|
||||
public final PersonName adaptFromJson(final String str) throws Exception {
|
||||
return toVO(str);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
import java.util.function.Function;
|
||||
|
||||
import org.fuin.ddd4j.ddd.EntityId;
|
||||
import org.fuin.ddd4j.ddd.EntityIdFactory;
|
||||
|
||||
/**
|
||||
* Factory that creates entity identifier instances based on the type.
|
||||
*/
|
||||
public final class SharedEntityIdFactory implements EntityIdFactory {
|
||||
|
||||
private Map<String, Function<String, EntityId>> valueOfMap;
|
||||
|
||||
private Map<String, Function<String, Boolean>> isValidMap;
|
||||
|
||||
/**
|
||||
* Default constructor.
|
||||
*/
|
||||
public SharedEntityIdFactory() {
|
||||
super();
|
||||
valueOfMap = new HashMap<>();
|
||||
isValidMap = new HashMap<>();
|
||||
valueOfMap.put(PersonId.TYPE.asString(), PersonId::valueOf);
|
||||
isValidMap.put(PersonId.TYPE.asString(), PersonId::isValid);
|
||||
}
|
||||
|
||||
@Override
|
||||
public EntityId createEntityId(final String type, final String id) {
|
||||
final Function<String, EntityId> factory = valueOfMap.get(type);
|
||||
if (factory == null) {
|
||||
throw new IllegalArgumentException("Unknown type: " + type);
|
||||
}
|
||||
return factory.apply(id);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean containsType(final String type) {
|
||||
return valueOfMap.containsKey(type);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isValid(String type, String id) {
|
||||
final Function<String, Boolean> func = isValidMap.get(type);
|
||||
if (func == null) {
|
||||
return false;
|
||||
}
|
||||
return func.apply(id);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,189 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import java.nio.charset.Charset;
|
||||
|
||||
import javax.json.bind.adapter.JsonbAdapter;
|
||||
|
||||
import org.eclipse.yasson.FieldAccessStrategy;
|
||||
import org.fuin.ddd4j.ddd.EntityIdPathConverter;
|
||||
import org.fuin.ddd4j.ddd.EventIdConverter;
|
||||
import org.fuin.esc.spi.Base64Data;
|
||||
import org.fuin.esc.spi.EscEvent;
|
||||
import org.fuin.esc.spi.EscEvents;
|
||||
import org.fuin.esc.spi.EscMeta;
|
||||
import org.fuin.esc.spi.EscSpiUtils;
|
||||
import org.fuin.esc.spi.JsonbDeSerializer;
|
||||
import org.fuin.esc.spi.SerDeserializerRegistry;
|
||||
import org.fuin.esc.spi.SerializedDataType;
|
||||
import org.fuin.esc.spi.SerializedDataTypeRegistry;
|
||||
import org.fuin.esc.spi.SimpleSerializedDataTypeRegistry;
|
||||
import org.fuin.esc.spi.SimpleSerializerDeserializerRegistry;
|
||||
|
||||
|
||||
/**
|
||||
* Utility code shared between command (write) and query (read) module.
|
||||
*/
|
||||
public final class SharedUtils {
|
||||
|
||||
/** All types that will be written into and read from the event store. */
|
||||
private static TypeClass[] USER_DEFINED_TYPES = new TypeClass[] {
|
||||
new TypeClass(PersonCreatedEvent.SER_TYPE, PersonCreatedEvent.class) };
|
||||
|
||||
/** All JSON-B adapters from this module. */
|
||||
public static JsonbAdapter<?, ?>[] JSONB_ADAPTERS = new JsonbAdapter<?, ?>[] { new EventIdConverter(),
|
||||
new EntityIdPathConverter(new SharedEntityIdFactory()), new PersonId.Converter(),
|
||||
new PersonName.Converter() };
|
||||
|
||||
private SharedUtils() {
|
||||
throw new UnsupportedOperationException("It is not allowed to create an instance of a utiliy class");
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a registry that allows finding types (classes) based on their unique
|
||||
* type name.
|
||||
*
|
||||
* @return New instance.
|
||||
*/
|
||||
public static SerializedDataTypeRegistry createTypeRegistry() {
|
||||
|
||||
// Contains all types for usage with JSON-B
|
||||
final SimpleSerializedDataTypeRegistry typeRegistry = new SimpleSerializedDataTypeRegistry();
|
||||
|
||||
// Base types always needed
|
||||
typeRegistry.add(EscEvent.SER_TYPE, EscEvent.class);
|
||||
typeRegistry.add(EscEvents.SER_TYPE, EscEvents.class);
|
||||
typeRegistry.add(EscMeta.SER_TYPE, EscMeta.class);
|
||||
typeRegistry.add(Base64Data.SER_TYPE, Base64Data.class);
|
||||
|
||||
// User defined types
|
||||
for (final TypeClass tc : USER_DEFINED_TYPES) {
|
||||
typeRegistry.add(tc.getType(), tc.getClasz());
|
||||
}
|
||||
return typeRegistry;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a registry that connects the type with the appropriate serializer and
|
||||
* de-serializer.
|
||||
*
|
||||
* @param typeRegistry Type registry (Mapping from type name to class).
|
||||
* @param jsonbDeSer JSON-B serializer/deserializer to use.
|
||||
*
|
||||
* @return New instance.
|
||||
*/
|
||||
public static SerDeserializerRegistry createSerDeserializerRegistry(final SerializedDataTypeRegistry typeRegistry,
|
||||
final JsonbDeSerializer jsonbDeSer) {
|
||||
|
||||
final SimpleSerializerDeserializerRegistry registry = new SimpleSerializerDeserializerRegistry();
|
||||
|
||||
// Base types always needed
|
||||
registry.add(EscEvents.SER_TYPE, "application/json", jsonbDeSer);
|
||||
registry.add(EscEvent.SER_TYPE, "application/json", jsonbDeSer);
|
||||
registry.add(EscMeta.SER_TYPE, "application/json", jsonbDeSer);
|
||||
registry.add(Base64Data.SER_TYPE, "application/json", jsonbDeSer);
|
||||
|
||||
// User defined types
|
||||
for (final TypeClass tc : USER_DEFINED_TYPES) {
|
||||
registry.add(tc.getType(), "application/json", jsonbDeSer);
|
||||
}
|
||||
jsonbDeSer.init(typeRegistry, registry, registry);
|
||||
|
||||
return registry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a registry that connects the type with the appropriate serializer and
|
||||
* de-serializer.
|
||||
*
|
||||
* @return New instance.
|
||||
*/
|
||||
public static SerDeserializerRegistry createRegistry() {
|
||||
|
||||
// Knows about all types for usage with JSON-B
|
||||
final SerializedDataTypeRegistry typeRegistry = SharedUtils.createTypeRegistry();
|
||||
|
||||
// Does the actual marshalling/unmarshalling
|
||||
final JsonbDeSerializer jsonbDeSer = SharedUtils.createJsonbDeSerializer();
|
||||
|
||||
// Registry connects the type with the appropriate serializer and de-serializer
|
||||
final SerDeserializerRegistry serDeserRegistry = SharedUtils.createSerDeserializerRegistry(typeRegistry,
|
||||
jsonbDeSer);
|
||||
|
||||
return serDeserRegistry;
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates an instance of the JSON-B serializer/deserializer.
|
||||
*
|
||||
* @return New instance that is fully initialized with al necessary settings.
|
||||
*/
|
||||
public static JsonbDeSerializer createJsonbDeSerializer() {
|
||||
|
||||
return JsonbDeSerializer.builder().withSerializers(EscSpiUtils.createEscJsonbSerializers())
|
||||
.withDeserializers(EscSpiUtils.createEscJsonbDeserializers())
|
||||
.withAdapters(JSONB_ADAPTERS).withPropertyVisibilityStrategy(new FieldAccessStrategy())
|
||||
.withEncoding(Charset.forName("utf-8")).build();
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* Helper class for type/class combination.
|
||||
*/
|
||||
private static final class TypeClass {
|
||||
|
||||
private final SerializedDataType type;
|
||||
|
||||
private final Class<?> clasz;
|
||||
|
||||
/**
|
||||
* Constructor with all data.
|
||||
*
|
||||
* @param type Type.
|
||||
* @param clasz Class.
|
||||
*/
|
||||
public TypeClass(final SerializedDataType type, final Class<?> clasz) {
|
||||
super();
|
||||
this.type = type;
|
||||
this.clasz = clasz;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the type.
|
||||
*
|
||||
* @return Type.
|
||||
*/
|
||||
public SerializedDataType getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the class.
|
||||
*
|
||||
* @return Class.
|
||||
*/
|
||||
public Class<?> getClasz() {
|
||||
return clasz;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved. http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as
|
||||
* published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library 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 library. If not, see
|
||||
* http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
/**
|
||||
* Domain specific code to be shared between all modules.
|
||||
*/
|
||||
0
quarkus/shared/src/main/resources/.gitkeep
Normal file
0
quarkus/shared/src/main/resources/.gitkeep
Normal file
@@ -0,0 +1,108 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.charset.Charset;
|
||||
import java.time.ZonedDateTime;
|
||||
import java.util.UUID;
|
||||
|
||||
import javax.json.bind.Jsonb;
|
||||
import javax.json.bind.JsonbBuilder;
|
||||
import javax.json.bind.JsonbConfig;
|
||||
|
||||
import org.apache.commons.io.IOUtils;
|
||||
import org.eclipse.yasson.FieldAccessStrategy;
|
||||
import org.fuin.utils4j.Utils4J;
|
||||
import org.junit.Test;
|
||||
|
||||
// CHECKSTYLE:OFF
|
||||
public final class CreatePersonCommandTest {
|
||||
|
||||
private static final String PERSON_UUID = "84565d62-115e-4502-b7c9-38ad69c64b05";
|
||||
|
||||
|
||||
@Test
|
||||
public final void testSerializeDeserialize() {
|
||||
|
||||
// PREPARE
|
||||
final CreatePersonCommand original = createTestee();
|
||||
|
||||
// TEST
|
||||
final CreatePersonCommand copy = Utils4J.deserialize(Utils4J.serialize(original));
|
||||
|
||||
// VERIFY
|
||||
assertThat(copy).isEqualTo(original);
|
||||
assertThat(copy.getAggregateRootId()).isEqualTo(original.getAggregateRootId());
|
||||
assertThat(copy.getName()).isEqualTo(original.getName());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public final void testMarshalUnmarshalJson() {
|
||||
|
||||
// PREPARE
|
||||
final CreatePersonCommand original = createTestee();
|
||||
|
||||
final JsonbConfig config = new JsonbConfig().withAdapters(SharedUtils.JSONB_ADAPTERS)
|
||||
.withPropertyVisibilityStrategy(new FieldAccessStrategy());
|
||||
final Jsonb jsonb = JsonbBuilder.create(config);
|
||||
|
||||
// TEST
|
||||
final String json = jsonb.toJson(original, CreatePersonCommand.class);
|
||||
final CreatePersonCommand copy = jsonb.fromJson(json, CreatePersonCommand.class);
|
||||
|
||||
// VERIFY
|
||||
assertThat(copy).isEqualTo(original);
|
||||
assertThat(copy.getAggregateRootId()).isEqualTo(original.getAggregateRootId());
|
||||
assertThat(copy.getName()).isEqualTo(original.getName());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public final void testUnmarshalJsonFromFile() throws IOException {
|
||||
|
||||
// PREPARE
|
||||
final String json = IOUtils.toString(this.getClass().getResourceAsStream("/commands/CreatePersonCommand.json"),
|
||||
Charset.forName("utf-8"));
|
||||
final JsonbConfig config = new JsonbConfig().withAdapters(SharedUtils.JSONB_ADAPTERS)
|
||||
.withPropertyVisibilityStrategy(new FieldAccessStrategy());
|
||||
final Jsonb jsonb = JsonbBuilder.create(config);
|
||||
|
||||
|
||||
// TEST
|
||||
final CreatePersonCommand copy = jsonb.fromJson(json, CreatePersonCommand.class);
|
||||
|
||||
// VERIFY
|
||||
assertThat(copy.getEventId().asBaseType()).isEqualTo(UUID.fromString("109a77b2-1de2-46fc-aee1-97fa7740a552"));
|
||||
assertThat(copy.getTimestamp()).isEqualTo(ZonedDateTime.parse("2019-11-17T10:27:13.183+01:00[Europe/Berlin]"));
|
||||
assertThat(copy.getAggregateRootId().asString()).isEqualTo(PERSON_UUID);
|
||||
assertThat(copy.getName().asString()).isEqualTo("Peter Parker");
|
||||
|
||||
}
|
||||
|
||||
private CreatePersonCommand createTestee() {
|
||||
final PersonId personId = new PersonId(UUID.fromString(PERSON_UUID));
|
||||
final PersonName personName = new PersonName("Peter Parker");
|
||||
return new CreatePersonCommand(personId, personName);
|
||||
}
|
||||
|
||||
}
|
||||
// CHECKSTYLE:ON
|
||||
@@ -0,0 +1,108 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.fuin.utils4j.Utils4J.deserialize;
|
||||
import static org.fuin.utils4j.Utils4J.serialize;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.charset.Charset;
|
||||
import java.util.UUID;
|
||||
|
||||
import javax.json.bind.Jsonb;
|
||||
import javax.json.bind.JsonbBuilder;
|
||||
import javax.json.bind.JsonbConfig;
|
||||
|
||||
import org.apache.commons.io.IOUtils;
|
||||
import org.eclipse.yasson.FieldAccessStrategy;
|
||||
import org.junit.Test;
|
||||
|
||||
|
||||
// CHECKSTYLE:OFF
|
||||
public final class PersonCreatedEventTest {
|
||||
|
||||
@Test
|
||||
public final void testSerializeDeserialize() {
|
||||
|
||||
// PREPARE
|
||||
final PersonCreatedEvent original = createTestee();
|
||||
|
||||
// TEST
|
||||
final PersonCreatedEvent copy = deserialize(serialize(original));
|
||||
|
||||
// VERIFY
|
||||
assertThat(copy).isEqualTo(original);
|
||||
assertThat(copy.getName()).isEqualTo(original.getName());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public final void testMarshalUnmarshalJson() {
|
||||
|
||||
// PREPARE
|
||||
final PersonCreatedEvent original = createTestee();
|
||||
|
||||
final JsonbConfig config = new JsonbConfig().withAdapters(SharedUtils.JSONB_ADAPTERS)
|
||||
.withPropertyVisibilityStrategy(new FieldAccessStrategy());
|
||||
final Jsonb jsonb = JsonbBuilder.create(config);
|
||||
|
||||
// TEST
|
||||
final String json = jsonb.toJson(original, PersonCreatedEvent.class);
|
||||
final PersonCreatedEvent copy = jsonb.fromJson(json, PersonCreatedEvent.class);
|
||||
|
||||
// VERIFY
|
||||
assertThat(copy).isEqualTo(original);
|
||||
assertThat(copy.getName()).isEqualTo(original.getName());
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public final void testUnmarshalJson() throws IOException {
|
||||
|
||||
// PREPARE
|
||||
final PersonCreatedEvent original = createTestee();
|
||||
final JsonbConfig config = new JsonbConfig().withAdapters(SharedUtils.JSONB_ADAPTERS)
|
||||
.withPropertyVisibilityStrategy(new FieldAccessStrategy());
|
||||
final Jsonb jsonb = JsonbBuilder.create(config);
|
||||
|
||||
// TEST
|
||||
final String json = IOUtils.toString(this.getClass().getResourceAsStream("/events/PersonCreatedEvent.json"),
|
||||
Charset.forName("utf-8"));
|
||||
final PersonCreatedEvent copy = jsonb.fromJson(json, PersonCreatedEvent.class);
|
||||
|
||||
// VERIFY
|
||||
assertThat(copy.getEntityIdPath()).isEqualTo(original.getEntityIdPath());
|
||||
assertThat(copy.getName()).isEqualTo(original.getName());
|
||||
|
||||
}
|
||||
|
||||
|
||||
@Test
|
||||
public final void testToString() {
|
||||
assertThat(createTestee().toString())
|
||||
.isEqualTo("Person 'Peter Parker' was created");
|
||||
}
|
||||
|
||||
private PersonCreatedEvent createTestee() {
|
||||
final PersonId personId = new PersonId(UUID.fromString("f645969a-402d-41a9-882b-d2d8000d0f43"));
|
||||
final PersonName personName = new PersonName("Peter Parker");
|
||||
return new PersonCreatedEvent(personId, personName);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.junit.Assert.fail;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import org.fuin.ddd4j.ddd.EntityType;
|
||||
import org.fuin.ddd4j.ddd.StringBasedEntityType;
|
||||
import org.fuin.objects4j.common.ConstraintViolationException;
|
||||
import org.junit.Test;
|
||||
|
||||
import nl.jqno.equalsverifier.EqualsVerifier;
|
||||
import nl.jqno.equalsverifier.Warning;
|
||||
|
||||
/**
|
||||
* Test for {@link PersonId}.
|
||||
*/
|
||||
public final class PersonIdTest {
|
||||
|
||||
private static final String PERSON_UUID = "84565d62-115e-4502-b7c9-38ad69c64b05";
|
||||
|
||||
@Test
|
||||
public void testEquals() {
|
||||
EqualsVerifier.forClass(PersonId.class).suppress(Warning.NONFINAL_FIELDS)
|
||||
.withNonnullFields("entityType", "uuid")
|
||||
.withPrefabValues(EntityType.class, new StringBasedEntityType("A"), new StringBasedEntityType("B"))
|
||||
.verify();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testValueOf() {
|
||||
final PersonId personId = PersonId.valueOf(PERSON_UUID);
|
||||
|
||||
assertThat(personId.asString()).isEqualTo(PERSON_UUID);
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testValueOfIllegalArgumentCharacter() {
|
||||
try {
|
||||
PersonId.valueOf("abc");
|
||||
fail();
|
||||
} catch (final ConstraintViolationException ex) {
|
||||
assertThat(ex.getMessage()).isEqualTo("The argument 'value' is not valid: 'abc'");
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public final void testConverterUnmarshal() throws Exception {
|
||||
|
||||
// PREPARE
|
||||
final String personIdValue = PERSON_UUID;
|
||||
|
||||
// TEST
|
||||
final PersonId personId = new PersonId.Converter().adaptFromJson(UUID.fromString(PERSON_UUID));
|
||||
|
||||
// VERIFY
|
||||
assertThat(personId.asString()).isEqualTo(personIdValue);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testConverterMarshal() throws Exception {
|
||||
|
||||
final PersonId personId = PersonId.valueOf(PERSON_UUID);
|
||||
|
||||
// TEST
|
||||
final UUID uuid = new PersonId.Converter().adaptToJson(personId);
|
||||
|
||||
// VERIFY
|
||||
assertThat(uuid).isEqualTo(UUID.fromString(PERSON_UUID));
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,134 @@
|
||||
/**
|
||||
* Copyright (C) 2015 Michael Schnell. All rights reserved.
|
||||
* http://www.fuin.org/
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or modify it under
|
||||
* the terms of the GNU Lesser General Public License as published by the Free
|
||||
* Software Foundation; either version 3 of the License, or (at your option) any
|
||||
* later version.
|
||||
*
|
||||
* This library 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 library. If not, see http://www.gnu.org/licenses/.
|
||||
*/
|
||||
package org.fuin.cqrs4j.example.quarkus.shared;
|
||||
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
import org.fuin.objects4j.common.ConstraintViolationException;
|
||||
import org.fuin.utils4j.Utils4J;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import nl.jqno.equalsverifier.EqualsVerifier;
|
||||
import nl.jqno.equalsverifier.Warning;
|
||||
|
||||
// CHECKSTYLE:OFF
|
||||
public final class PersonNameTest {
|
||||
|
||||
@Test
|
||||
public void testSerialize() {
|
||||
final PersonName original = new PersonName("Peter Parker");
|
||||
final PersonName copy = Utils4J.deserialize(Utils4J.serialize(original));
|
||||
assertThat(original).isEqualTo(copy);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testHashCodeEquals() {
|
||||
EqualsVerifier.forClass(PersonName.class).suppress(Warning.NULL_FIELDS).withRedefinedSuperclass().verify();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMarshalJson() throws Exception {
|
||||
|
||||
// PREPARE
|
||||
final String str = "Peter Parker";
|
||||
final PersonName testee = new PersonName(str);
|
||||
|
||||
// TEST & VERIFY
|
||||
assertThat(new PersonName.Converter().adaptToJson(testee)).isEqualTo(str);
|
||||
assertThat(new PersonName.Converter().adaptToJson(null)).isNull();
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUnmarshalJson() throws Exception {
|
||||
|
||||
// PREPARE
|
||||
final String str = "Peter Parker";
|
||||
final PersonName testee = new PersonName(str);
|
||||
|
||||
// TEST & VERIFY
|
||||
assertThat(new PersonName.Converter().adaptFromJson(str)).isEqualTo(testee);
|
||||
assertThat(new PersonName.Converter().adaptFromJson(null)).isNull();
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testIsValid() {
|
||||
|
||||
assertThat(PersonName.isValid(null)).isTrue();
|
||||
assertThat(PersonName.isValid("Peter Parker")).isTrue();
|
||||
|
||||
assertThat(PersonName.isValid("")).isFalse();
|
||||
assertThat(PersonName.isValid("123456789.123456789.123456789.123456789.123456789."
|
||||
+ "123456789.123456789.123456789.123456789.123456789." + "12345")).isFalse();
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRequireArgValid() {
|
||||
|
||||
PersonName.requireArgValid("a", "Peter Parker");
|
||||
PersonName.requireArgValid("b", null);
|
||||
|
||||
try {
|
||||
PersonName.requireArgValid("c", "");
|
||||
Assert.fail();
|
||||
} catch (final ConstraintViolationException ex) {
|
||||
assertThat(ex.getMessage()).isEqualTo("The argument 'c' is not valid: ''");
|
||||
}
|
||||
|
||||
try {
|
||||
PersonName.requireArgValid("d", "123456789.123456789.123456789.123456789.123456789."
|
||||
+ "123456789.123456789.123456789.123456789.123456789." + "12345");
|
||||
Assert.fail();
|
||||
} catch (final ConstraintViolationException ex) {
|
||||
assertThat(ex.getMessage())
|
||||
.isEqualTo("The argument 'd' is not valid: '" + "123456789.123456789.123456789.123456789.123456789."
|
||||
+ "123456789.123456789.123456789.123456789.123456789." + "12345" + "'");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testValidator() {
|
||||
|
||||
assertThat(new PersonName.Validator().isValid(null, null)).isTrue();
|
||||
assertThat(new PersonName.Validator().isValid("Peter Parker", null)).isTrue();
|
||||
|
||||
assertThat(new PersonName.Validator().isValid("", null)).isFalse();
|
||||
assertThat(new PersonName.Validator().isValid("123456789.123456789.123456789.123456789.123456789."
|
||||
+ "123456789.123456789.123456789.123456789.123456789." + "12345", null)).isFalse();
|
||||
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testValueObjectConverter() {
|
||||
|
||||
assertThat(new PersonName.Converter().getBaseTypeClass()).isEqualTo(String.class);
|
||||
assertThat(new PersonName.Converter().getValueObjectClass()).isEqualTo(PersonName.class);
|
||||
assertThat(new PersonName.Converter().isValid(null)).isTrue();
|
||||
assertThat(new PersonName.Converter().isValid("Peter Parker")).isTrue();
|
||||
|
||||
assertThat(new PersonName.Converter().isValid("123456789.123456789.123456789.123456789.123456789."
|
||||
+ "123456789.123456789.123456789.123456789.123456789." + "12345")).isFalse();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"event-id": "109a77b2-1de2-46fc-aee1-97fa7740a552",
|
||||
"event-timestamp": "2019-11-17T10:27:13.183+01:00[Europe/Berlin]",
|
||||
"entity-id-path": "PERSON 84565d62-115e-4502-b7c9-38ad69c64b05",
|
||||
"name": "Peter Parker"
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"event-id": "a7b88543-ce32-40eb-a3fe-f49aec39b570",
|
||||
"event-timestamp": "2019-11-02T09:56:40.669Z[Etc/UTC]",
|
||||
"entity-id-path": "PERSON f645969a-402d-41a9-882b-d2d8000d0f43",
|
||||
"name": "Peter Parker"
|
||||
}
|
||||
Reference in New Issue
Block a user