From e147bdb7da8e48c1483c7732a0eb6b6f54699b66 Mon Sep 17 00:00:00 2001 From: Thomas Lenz Date: Tue, 20 May 2014 16:18:21 +0200 Subject: update version management --- id/server/.project | 17 + .../.settings/org.eclipse.core.resources.prefs | 2 + id/server/.settings/org.eclipse.m2e.core.prefs | 4 + id/server/auth/.classpath | 32 ++ id/server/auth/.codepro/deadCodeEntryPoints.xml | 12 + id/server/auth/.gitignore | 3 + id/server/auth/.project | 40 ++ id/server/auth/.settings/.jsdtscope | 13 + .../.settings/org.eclipse.core.resources.prefs | 5 + .../auth/.settings/org.eclipse.jdt.core.prefs | 8 + .../auth/.settings/org.eclipse.m2e.core.prefs | 4 + .../.settings/org.eclipse.wst.common.component | 29 ++ .../org.eclipse.wst.common.project.facet.core.xml | 7 + .../org.eclipse.wst.jsdt.ui.superType.container | 1 + .../org.eclipse.wst.jsdt.ui.superType.name | 1 + .../.settings/org.eclipse.wst.validation.prefs | 2 + .../auth/.settings/org.maven.ide.eclipse.prefs | 8 + id/server/idserverlib/.classpath | 34 ++ .../idserverlib/.codepro/deadCodeEntryPoints.xml | 101 +++++ id/server/idserverlib/.gitignore | 2 + id/server/idserverlib/.project | 35 ++ .../.settings/org.eclipse.core.resources.prefs | 5 + .../.settings/org.eclipse.jdt.core.prefs | 8 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../.settings/org.eclipse.wst.common.component | 8 + .../org.eclipse.wst.common.project.facet.core.xml | 7 + .../.settings/org.eclipse.wst.validation.prefs | 2 + .../.settings/org.maven.ide.eclipse.prefs | 8 + id/server/moa-id-commons/.classpath | 38 ++ id/server/moa-id-commons/.gitignore | 1 + id/server/moa-id-commons/.project | 37 ++ .../.settings/org.eclipse.core.resources.prefs | 5 + .../.settings/org.eclipse.jdt.core.prefs | 5 + .../.settings/org.eclipse.jpt.core.prefs | 3 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../.settings/org.eclipse.wst.common.component | 7 + ...eclipse.wst.common.project.facet.core.prefs.xml | 7 + .../org.eclipse.wst.common.project.facet.core.xml | 6 + .../.settings/org.eclipse.wst.validation.prefs | 2 + id/server/moa-id-commons/pom.xml | 4 +- .../moa/id/commons/xjc/JaxbBooleanAdapter.java | 59 +++ id/server/pom.xml | 4 +- id/server/proxy/.classpath | 26 ++ id/server/proxy/.gitignore | 2 + id/server/proxy/.project | 40 ++ .../.settings/org.eclipse.core.resources.prefs | 2 + .../proxy/.settings/org.eclipse.jdt.core.prefs | 8 + .../proxy/.settings/org.eclipse.m2e.core.prefs | 4 + .../.settings/org.eclipse.wst.common.component | 25 ++ .../org.eclipse.wst.common.project.facet.core.xml | 7 + .../.settings/org.eclipse.wst.validation.prefs | 2 + .../proxy/.settings/org.maven.ide.eclipse.prefs | 8 + id/server/proxy/pom.xml | 4 +- id/server/stork2-commons/.classpath | 37 ++ id/server/stork2-commons/.gitignore | 1 + id/server/stork2-commons/.project | 36 ++ .../.settings/org.eclipse.core.resources.prefs | 6 + .../.settings/org.eclipse.jdt.core.prefs | 8 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../.settings/org.eclipse.wst.common.component | 6 + .../org.eclipse.wst.common.project.facet.core.xml | 5 + .../.settings/org.eclipse.wst.validation.prefs | 2 + id/server/stork2-commons/pom.xml | 4 +- .../src/main/java/pvp_postbinding_template.html | 48 +++ id/server/stork2-commons/stork-commons.log | 432 +++++++++++++++++++++ .../stork2-commons/stork-commons.log.2014-03-27 | 432 +++++++++++++++++++++ .../stork2-commons/stork-commons.log.2014-03-28 | 108 ++++++ id/server/stork2-saml-engine/.classpath | 32 ++ id/server/stork2-saml-engine/.gitignore | 1 + id/server/stork2-saml-engine/.project | 36 ++ .../.settings/org.eclipse.core.resources.prefs | 5 + .../.settings/org.eclipse.jdt.core.prefs | 12 + .../.settings/org.eclipse.m2e.core.prefs | 4 + .../.settings/org.eclipse.wst.common.component | 5 + .../org.eclipse.wst.common.project.facet.core.xml | 5 + .../.settings/org.eclipse.wst.validation.prefs | 2 + id/server/stork2-saml-engine/pom.xml | 4 +- 77 files changed, 1937 insertions(+), 10 deletions(-) create mode 100644 id/server/.project create mode 100644 id/server/.settings/org.eclipse.core.resources.prefs create mode 100644 id/server/.settings/org.eclipse.m2e.core.prefs create mode 100644 id/server/auth/.classpath create mode 100644 id/server/auth/.codepro/deadCodeEntryPoints.xml create mode 100644 id/server/auth/.gitignore create mode 100644 id/server/auth/.project create mode 100644 id/server/auth/.settings/.jsdtscope create mode 100644 id/server/auth/.settings/org.eclipse.core.resources.prefs create mode 100644 id/server/auth/.settings/org.eclipse.jdt.core.prefs create mode 100644 id/server/auth/.settings/org.eclipse.m2e.core.prefs create mode 100644 id/server/auth/.settings/org.eclipse.wst.common.component create mode 100644 id/server/auth/.settings/org.eclipse.wst.common.project.facet.core.xml create mode 100644 id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.container create mode 100644 id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.name create mode 100644 id/server/auth/.settings/org.eclipse.wst.validation.prefs create mode 100644 id/server/auth/.settings/org.maven.ide.eclipse.prefs create mode 100644 id/server/idserverlib/.classpath create mode 100644 id/server/idserverlib/.codepro/deadCodeEntryPoints.xml create mode 100644 id/server/idserverlib/.gitignore create mode 100644 id/server/idserverlib/.project create mode 100644 id/server/idserverlib/.settings/org.eclipse.core.resources.prefs create mode 100644 id/server/idserverlib/.settings/org.eclipse.jdt.core.prefs create mode 100644 id/server/idserverlib/.settings/org.eclipse.m2e.core.prefs create mode 100644 id/server/idserverlib/.settings/org.eclipse.wst.common.component create mode 100644 id/server/idserverlib/.settings/org.eclipse.wst.common.project.facet.core.xml create mode 100644 id/server/idserverlib/.settings/org.eclipse.wst.validation.prefs create mode 100644 id/server/idserverlib/.settings/org.maven.ide.eclipse.prefs create mode 100644 id/server/moa-id-commons/.classpath create mode 100644 id/server/moa-id-commons/.gitignore create mode 100644 id/server/moa-id-commons/.project create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.core.resources.prefs create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.jdt.core.prefs create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.jpt.core.prefs create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.m2e.core.prefs create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.wst.common.component create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.prefs.xml create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.xml create mode 100644 id/server/moa-id-commons/.settings/org.eclipse.wst.validation.prefs create mode 100644 id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/xjc/JaxbBooleanAdapter.java create mode 100644 id/server/proxy/.classpath create mode 100644 id/server/proxy/.gitignore create mode 100644 id/server/proxy/.project create mode 100644 id/server/proxy/.settings/org.eclipse.core.resources.prefs create mode 100644 id/server/proxy/.settings/org.eclipse.jdt.core.prefs create mode 100644 id/server/proxy/.settings/org.eclipse.m2e.core.prefs create mode 100644 id/server/proxy/.settings/org.eclipse.wst.common.component create mode 100644 id/server/proxy/.settings/org.eclipse.wst.common.project.facet.core.xml create mode 100644 id/server/proxy/.settings/org.eclipse.wst.validation.prefs create mode 100644 id/server/proxy/.settings/org.maven.ide.eclipse.prefs create mode 100644 id/server/stork2-commons/.classpath create mode 100644 id/server/stork2-commons/.gitignore create mode 100644 id/server/stork2-commons/.project create mode 100644 id/server/stork2-commons/.settings/org.eclipse.core.resources.prefs create mode 100644 id/server/stork2-commons/.settings/org.eclipse.jdt.core.prefs create mode 100644 id/server/stork2-commons/.settings/org.eclipse.m2e.core.prefs create mode 100644 id/server/stork2-commons/.settings/org.eclipse.wst.common.component create mode 100644 id/server/stork2-commons/.settings/org.eclipse.wst.common.project.facet.core.xml create mode 100644 id/server/stork2-commons/.settings/org.eclipse.wst.validation.prefs create mode 100644 id/server/stork2-commons/src/main/java/pvp_postbinding_template.html create mode 100644 id/server/stork2-commons/stork-commons.log create mode 100644 id/server/stork2-commons/stork-commons.log.2014-03-27 create mode 100644 id/server/stork2-commons/stork-commons.log.2014-03-28 create mode 100644 id/server/stork2-saml-engine/.classpath create mode 100644 id/server/stork2-saml-engine/.gitignore create mode 100644 id/server/stork2-saml-engine/.project create mode 100644 id/server/stork2-saml-engine/.settings/org.eclipse.core.resources.prefs create mode 100644 id/server/stork2-saml-engine/.settings/org.eclipse.jdt.core.prefs create mode 100644 id/server/stork2-saml-engine/.settings/org.eclipse.m2e.core.prefs create mode 100644 id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.component create mode 100644 id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.project.facet.core.xml create mode 100644 id/server/stork2-saml-engine/.settings/org.eclipse.wst.validation.prefs (limited to 'id/server') diff --git a/id/server/.project b/id/server/.project new file mode 100644 index 000000000..ada8ac1d1 --- /dev/null +++ b/id/server/.project @@ -0,0 +1,17 @@ + + + moa-id + + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + + diff --git a/id/server/.settings/org.eclipse.core.resources.prefs b/id/server/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..99f26c020 --- /dev/null +++ b/id/server/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/id/server/.settings/org.eclipse.m2e.core.prefs b/id/server/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/id/server/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/id/server/auth/.classpath b/id/server/auth/.classpath new file mode 100644 index 000000000..b645d7579 --- /dev/null +++ b/id/server/auth/.classpath @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/id/server/auth/.codepro/deadCodeEntryPoints.xml b/id/server/auth/.codepro/deadCodeEntryPoints.xml new file mode 100644 index 000000000..814d580d8 --- /dev/null +++ b/id/server/auth/.codepro/deadCodeEntryPoints.xml @@ -0,0 +1,12 @@ + + + + + + + + \ No newline at end of file diff --git a/id/server/auth/.gitignore b/id/server/auth/.gitignore new file mode 100644 index 000000000..0b1e2434c --- /dev/null +++ b/id/server/auth/.gitignore @@ -0,0 +1,3 @@ +/target +/bin +/target diff --git a/id/server/auth/.project b/id/server/auth/.project new file mode 100644 index 000000000..a90b7bf5f --- /dev/null +++ b/id/server/auth/.project @@ -0,0 +1,40 @@ + + + moa-id-auth + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + moa-spss-lib + moa-common + stork-saml-engine + moa-id-commons + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.jdt.core.javanature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jem.workbench.JavaEMFNature + + diff --git a/id/server/auth/.settings/.jsdtscope b/id/server/auth/.settings/.jsdtscope new file mode 100644 index 000000000..3b2886eab --- /dev/null +++ b/id/server/auth/.settings/.jsdtscope @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/id/server/auth/.settings/org.eclipse.core.resources.prefs b/id/server/auth/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..839d647ee --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,5 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/main/resources=UTF-8 +encoding//src/test/java=UTF-8 +encoding/=UTF-8 diff --git a/id/server/auth/.settings/org.eclipse.jdt.core.prefs b/id/server/auth/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..69c31cd49 --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/id/server/auth/.settings/org.eclipse.m2e.core.prefs b/id/server/auth/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/id/server/auth/.settings/org.eclipse.wst.common.component b/id/server/auth/.settings/org.eclipse.wst.common.component new file mode 100644 index 000000000..9216b6340 --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.wst.common.component @@ -0,0 +1,29 @@ + + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + + + + + + + + diff --git a/id/server/auth/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/server/auth/.settings/org.eclipse.wst.common.project.facet.core.xml new file mode 100644 index 000000000..463771365 --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.container b/id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.container new file mode 100644 index 000000000..3bd5d0a48 --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.container @@ -0,0 +1 @@ +org.eclipse.wst.jsdt.launching.baseBrowserLibrary \ No newline at end of file diff --git a/id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.name b/id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.name new file mode 100644 index 000000000..05bd71b6e --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.wst.jsdt.ui.superType.name @@ -0,0 +1 @@ +Window \ No newline at end of file diff --git a/id/server/auth/.settings/org.eclipse.wst.validation.prefs b/id/server/auth/.settings/org.eclipse.wst.validation.prefs new file mode 100644 index 000000000..04cad8cb7 --- /dev/null +++ b/id/server/auth/.settings/org.eclipse.wst.validation.prefs @@ -0,0 +1,2 @@ +disabled=06target +eclipse.preferences.version=1 diff --git a/id/server/auth/.settings/org.maven.ide.eclipse.prefs b/id/server/auth/.settings/org.maven.ide.eclipse.prefs new file mode 100644 index 000000000..5fed4cf5a --- /dev/null +++ b/id/server/auth/.settings/org.maven.ide.eclipse.prefs @@ -0,0 +1,8 @@ +activeProfiles= +eclipse.preferences.version=1 +fullBuildGoals=process-test-resources +includeModules=false +resolveWorkspaceProjects=true +resourceFilterGoals=process-resources resources\:testResources +skipCompilerPlugin=true +version=1 diff --git a/id/server/idserverlib/.classpath b/id/server/idserverlib/.classpath new file mode 100644 index 000000000..20ec727db --- /dev/null +++ b/id/server/idserverlib/.classpath @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/id/server/idserverlib/.codepro/deadCodeEntryPoints.xml b/id/server/idserverlib/.codepro/deadCodeEntryPoints.xml new file mode 100644 index 000000000..d1a0b79e7 --- /dev/null +++ b/id/server/idserverlib/.codepro/deadCodeEntryPoints.xml @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/id/server/idserverlib/.gitignore b/id/server/idserverlib/.gitignore new file mode 100644 index 000000000..4dc009173 --- /dev/null +++ b/id/server/idserverlib/.gitignore @@ -0,0 +1,2 @@ +/target +/bin diff --git a/id/server/idserverlib/.project b/id/server/idserverlib/.project new file mode 100644 index 000000000..7520e9f8e --- /dev/null +++ b/id/server/idserverlib/.project @@ -0,0 +1,35 @@ + + + moa-id-lib + + + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.jdt.core.javanature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.common.modulecore.ModuleCoreNature + + diff --git a/id/server/idserverlib/.settings/org.eclipse.core.resources.prefs b/id/server/idserverlib/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..839d647ee --- /dev/null +++ b/id/server/idserverlib/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,5 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/main/resources=UTF-8 +encoding//src/test/java=UTF-8 +encoding/=UTF-8 diff --git a/id/server/idserverlib/.settings/org.eclipse.jdt.core.prefs b/id/server/idserverlib/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..69c31cd49 --- /dev/null +++ b/id/server/idserverlib/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/id/server/idserverlib/.settings/org.eclipse.m2e.core.prefs b/id/server/idserverlib/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/id/server/idserverlib/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/id/server/idserverlib/.settings/org.eclipse.wst.common.component b/id/server/idserverlib/.settings/org.eclipse.wst.common.component new file mode 100644 index 000000000..002edc99d --- /dev/null +++ b/id/server/idserverlib/.settings/org.eclipse.wst.common.component @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/id/server/idserverlib/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/server/idserverlib/.settings/org.eclipse.wst.common.project.facet.core.xml new file mode 100644 index 000000000..0c619da6d --- /dev/null +++ b/id/server/idserverlib/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/id/server/idserverlib/.settings/org.eclipse.wst.validation.prefs b/id/server/idserverlib/.settings/org.eclipse.wst.validation.prefs new file mode 100644 index 000000000..04cad8cb7 --- /dev/null +++ b/id/server/idserverlib/.settings/org.eclipse.wst.validation.prefs @@ -0,0 +1,2 @@ +disabled=06target +eclipse.preferences.version=1 diff --git a/id/server/idserverlib/.settings/org.maven.ide.eclipse.prefs b/id/server/idserverlib/.settings/org.maven.ide.eclipse.prefs new file mode 100644 index 000000000..5fed4cf5a --- /dev/null +++ b/id/server/idserverlib/.settings/org.maven.ide.eclipse.prefs @@ -0,0 +1,8 @@ +activeProfiles= +eclipse.preferences.version=1 +fullBuildGoals=process-test-resources +includeModules=false +resolveWorkspaceProjects=true +resourceFilterGoals=process-resources resources\:testResources +skipCompilerPlugin=true +version=1 diff --git a/id/server/moa-id-commons/.classpath b/id/server/moa-id-commons/.classpath new file mode 100644 index 000000000..a6c84d0a8 --- /dev/null +++ b/id/server/moa-id-commons/.classpath @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/id/server/moa-id-commons/.gitignore b/id/server/moa-id-commons/.gitignore new file mode 100644 index 000000000..ea8c4bf7f --- /dev/null +++ b/id/server/moa-id-commons/.gitignore @@ -0,0 +1 @@ +/target diff --git a/id/server/moa-id-commons/.project b/id/server/moa-id-commons/.project new file mode 100644 index 000000000..a7c3725f2 --- /dev/null +++ b/id/server/moa-id-commons/.project @@ -0,0 +1,37 @@ + + + moa-id-commons + + + moa-common + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jdt.core.javanature + org.eclipse.wst.common.project.facet.core.nature + + diff --git a/id/server/moa-id-commons/.settings/org.eclipse.core.resources.prefs b/id/server/moa-id-commons/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..95c6d7ddd --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,5 @@ +eclipse.preferences.version=1 +encoding//src/main/resources=UTF-8 +encoding//src/main/resources/config=UTF-8 +encoding//src/test/resources=UTF-8 +encoding/=UTF-8 diff --git a/id/server/moa-id-commons/.settings/org.eclipse.jdt.core.prefs b/id/server/moa-id-commons/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..abec6ca38 --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,5 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.5 diff --git a/id/server/moa-id-commons/.settings/org.eclipse.jpt.core.prefs b/id/server/moa-id-commons/.settings/org.eclipse.jpt.core.prefs new file mode 100644 index 000000000..3e2d23923 --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.jpt.core.prefs @@ -0,0 +1,3 @@ +eclipse.preferences.version=1 +org.eclipse.jpt.core.platform=generic +org.eclipse.jpt.jpa.core.discoverAnnotatedClasses=true diff --git a/id/server/moa-id-commons/.settings/org.eclipse.m2e.core.prefs b/id/server/moa-id-commons/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/id/server/moa-id-commons/.settings/org.eclipse.wst.common.component b/id/server/moa-id-commons/.settings/org.eclipse.wst.common.component new file mode 100644 index 000000000..9e5e3ed1c --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.wst.common.component @@ -0,0 +1,7 @@ + + + + + + + diff --git a/id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.prefs.xml b/id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.prefs.xml new file mode 100644 index 000000000..7961132fd --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.prefs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.xml new file mode 100644 index 000000000..8956fb143 --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/id/server/moa-id-commons/.settings/org.eclipse.wst.validation.prefs b/id/server/moa-id-commons/.settings/org.eclipse.wst.validation.prefs new file mode 100644 index 000000000..04cad8cb7 --- /dev/null +++ b/id/server/moa-id-commons/.settings/org.eclipse.wst.validation.prefs @@ -0,0 +1,2 @@ +disabled=06target +eclipse.preferences.version=1 diff --git a/id/server/moa-id-commons/pom.xml b/id/server/moa-id-commons/pom.xml index 4b2ae6536..b49f438cf 100644 --- a/id/server/moa-id-commons/pom.xml +++ b/id/server/moa-id-commons/pom.xml @@ -239,7 +239,7 @@ --> - + diff --git a/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/xjc/JaxbBooleanAdapter.java b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/xjc/JaxbBooleanAdapter.java new file mode 100644 index 000000000..c1c841282 --- /dev/null +++ b/id/server/moa-id-commons/src/main/java/at/gv/egovernment/moa/id/commons/xjc/JaxbBooleanAdapter.java @@ -0,0 +1,59 @@ +/* + * Copyright 2014 Federal Chancellery Austria + * MOA-ID has been developed in a cooperation between BRZ, the Federal + * Chancellery Austria - ICT staff unit, and Graz University of Technology. + * + * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by + * the European Commission - subsequent versions of the EUPL (the "Licence"); + * You may not use this work except in compliance with the Licence. + * You may obtain a copy of the Licence at: + * http://www.osor.eu/eupl/ + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the Licence is distributed on an "AS IS" basis, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the Licence for the specific language governing permissions and + * limitations under the Licence. + * + * This product combines work with different licenses. See the "NOTICE" text + * file for details on the various modules and licenses. + * The "NOTICE" text file is part of the distribution. Any derivative works + * that you distribute must include a readable copy of the "NOTICE" text file. + */ +package at.gv.egovernment.moa.id.commons.xjc; + +/** + * @author tlenz + * + */ +import javax.xml.bind.annotation.adapters.XmlAdapter; + +/** + * Utility class to correctly render the xml types used in JAXB. + */ +public class JaxbBooleanAdapter extends XmlAdapter +{ + @Override + public Boolean unmarshal(String v) throws Exception + { + if ("1".equals(v)) + { + return true; + } + return false; + } + + @Override + public String marshal(Boolean v) throws Exception + { + if (v == null) + { + return null; + } + if (v) + { + return "1"; + } + return "0"; + } +} diff --git a/id/server/pom.xml b/id/server/pom.xml index cd2f82e84..f574a0cf2 100644 --- a/id/server/pom.xml +++ b/id/server/pom.xml @@ -28,7 +28,7 @@ - + diff --git a/id/server/proxy/.classpath b/id/server/proxy/.classpath new file mode 100644 index 000000000..bc5aeac5e --- /dev/null +++ b/id/server/proxy/.classpath @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/id/server/proxy/.gitignore b/id/server/proxy/.gitignore new file mode 100644 index 000000000..4dc009173 --- /dev/null +++ b/id/server/proxy/.gitignore @@ -0,0 +1,2 @@ +/target +/bin diff --git a/id/server/proxy/.project b/id/server/proxy/.project new file mode 100644 index 000000000..398564ccb --- /dev/null +++ b/id/server/proxy/.project @@ -0,0 +1,40 @@ + + + moa-id-proxy + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + moa-spss-lib + moa-common + stork-saml-engine + moa-id-commons + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jem.workbench.JavaEMFNature + + diff --git a/id/server/proxy/.settings/org.eclipse.core.resources.prefs b/id/server/proxy/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..99f26c020 --- /dev/null +++ b/id/server/proxy/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,2 @@ +eclipse.preferences.version=1 +encoding/=UTF-8 diff --git a/id/server/proxy/.settings/org.eclipse.jdt.core.prefs b/id/server/proxy/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..69c31cd49 --- /dev/null +++ b/id/server/proxy/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/id/server/proxy/.settings/org.eclipse.m2e.core.prefs b/id/server/proxy/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/id/server/proxy/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/id/server/proxy/.settings/org.eclipse.wst.common.component b/id/server/proxy/.settings/org.eclipse.wst.common.component new file mode 100644 index 000000000..0c677de0e --- /dev/null +++ b/id/server/proxy/.settings/org.eclipse.wst.common.component @@ -0,0 +1,25 @@ + + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + + + + diff --git a/id/server/proxy/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/server/proxy/.settings/org.eclipse.wst.common.project.facet.core.xml new file mode 100644 index 000000000..3d344ed7f --- /dev/null +++ b/id/server/proxy/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/id/server/proxy/.settings/org.eclipse.wst.validation.prefs b/id/server/proxy/.settings/org.eclipse.wst.validation.prefs new file mode 100644 index 000000000..04cad8cb7 --- /dev/null +++ b/id/server/proxy/.settings/org.eclipse.wst.validation.prefs @@ -0,0 +1,2 @@ +disabled=06target +eclipse.preferences.version=1 diff --git a/id/server/proxy/.settings/org.maven.ide.eclipse.prefs b/id/server/proxy/.settings/org.maven.ide.eclipse.prefs new file mode 100644 index 000000000..5fed4cf5a --- /dev/null +++ b/id/server/proxy/.settings/org.maven.ide.eclipse.prefs @@ -0,0 +1,8 @@ +activeProfiles= +eclipse.preferences.version=1 +fullBuildGoals=process-test-resources +includeModules=false +resolveWorkspaceProjects=true +resourceFilterGoals=process-resources resources\:testResources +skipCompilerPlugin=true +version=1 diff --git a/id/server/proxy/pom.xml b/id/server/proxy/pom.xml index dbae5ca30..8a8d3c5be 100644 --- a/id/server/proxy/pom.xml +++ b/id/server/proxy/pom.xml @@ -26,7 +26,7 @@ - + org.apache.maven.plugins diff --git a/id/server/stork2-commons/.classpath b/id/server/stork2-commons/.classpath new file mode 100644 index 000000000..550e3f2ae --- /dev/null +++ b/id/server/stork2-commons/.classpath @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/id/server/stork2-commons/.gitignore b/id/server/stork2-commons/.gitignore new file mode 100644 index 000000000..ea8c4bf7f --- /dev/null +++ b/id/server/stork2-commons/.gitignore @@ -0,0 +1 @@ +/target diff --git a/id/server/stork2-commons/.project b/id/server/stork2-commons/.project new file mode 100644 index 000000000..07bf2ad7c --- /dev/null +++ b/id/server/stork2-commons/.project @@ -0,0 +1,36 @@ + + + Commons + + + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + + diff --git a/id/server/stork2-commons/.settings/org.eclipse.core.resources.prefs b/id/server/stork2-commons/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..29abf9995 --- /dev/null +++ b/id/server/stork2-commons/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,6 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/main/resources=UTF-8 +encoding//src/test/java=UTF-8 +encoding//src/test/resources=UTF-8 +encoding/=UTF-8 diff --git a/id/server/stork2-commons/.settings/org.eclipse.jdt.core.prefs b/id/server/stork2-commons/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..69c31cd49 --- /dev/null +++ b/id/server/stork2-commons/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,8 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/id/server/stork2-commons/.settings/org.eclipse.m2e.core.prefs b/id/server/stork2-commons/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/id/server/stork2-commons/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/id/server/stork2-commons/.settings/org.eclipse.wst.common.component b/id/server/stork2-commons/.settings/org.eclipse.wst.common.component new file mode 100644 index 000000000..8a0a93c93 --- /dev/null +++ b/id/server/stork2-commons/.settings/org.eclipse.wst.common.component @@ -0,0 +1,6 @@ + + + + + + diff --git a/id/server/stork2-commons/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/server/stork2-commons/.settings/org.eclipse.wst.common.project.facet.core.xml new file mode 100644 index 000000000..5c9bd7532 --- /dev/null +++ b/id/server/stork2-commons/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/id/server/stork2-commons/.settings/org.eclipse.wst.validation.prefs b/id/server/stork2-commons/.settings/org.eclipse.wst.validation.prefs new file mode 100644 index 000000000..04cad8cb7 --- /dev/null +++ b/id/server/stork2-commons/.settings/org.eclipse.wst.validation.prefs @@ -0,0 +1,2 @@ +disabled=06target +eclipse.preferences.version=1 diff --git a/id/server/stork2-commons/pom.xml b/id/server/stork2-commons/pom.xml index e74f702a8..c6d15b51b 100644 --- a/id/server/stork2-commons/pom.xml +++ b/id/server/stork2-commons/pom.xml @@ -147,7 +147,7 @@ - + org.apache.maven.plugins diff --git a/id/server/stork2-commons/src/main/java/pvp_postbinding_template.html b/id/server/stork2-commons/src/main/java/pvp_postbinding_template.html new file mode 100644 index 000000000..2f93428b5 --- /dev/null +++ b/id/server/stork2-commons/src/main/java/pvp_postbinding_template.html @@ -0,0 +1,48 @@ +## ## Velocity Template for SAML 2 HTTP-POST binding ## ## Velocity +context may contain the following properties ## action - String - the +action URL for the form ## RelayState - String - the relay state for the +message ## SAMLRequest - String - the Base64 encoded SAML Request ## +SAMLResponse - String - the Base64 encoded SAML Response + + + + + + + +
Your login is being processed. Thank you for + waiting.
+ + + +
+
+ #if($RelayState)#end #if($SAMLRequest)#end #if($SAMLResponse)#end + +
+ +
+ + + \ No newline at end of file diff --git a/id/server/stork2-commons/stork-commons.log b/id/server/stork2-commons/stork-commons.log new file mode 100644 index 000000000..b77d30898 --- /dev/null +++ b/id/server/stork2-commons/stork-commons.log @@ -0,0 +1,432 @@ +12:06:45:332 - INFO - PersonalAttributeList - get attributes by param :false +12:06:45:336 - INFO - PersonalAttributeList - get attributes by param :true +12:06:45:336 - INFO - PersonalAttributeList - adding attribute:age +12:06:45:337 - INFO - PersonalAttributeList - get complex attributes +12:06:45:337 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:06:45:337 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +12:06:45:349 - INFO - PersonalAttributeList - get attributes by param :false +12:06:45:349 - INFO - PersonalAttributeList - adding attribute:age +12:06:45:349 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:06:45:350 - INFO - PersonalAttributeList - get simple attributes +12:06:45:350 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:06:45:352 - INFO - PersonalAttributeList - get complex attributes +12:06:45:353 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:06:45:353 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:06:45:364 - INFO - PersonalAttributeList - get attributes by param :true +12:06:45:368 - INFO - PersonalAttributeList - get attributes by param :true +12:06:45:370 - INFO - PersonalAttributeList - adding attribute:age +12:06:45:370 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:06:45:371 - INFO - PersonalAttributeList - get complex attributes +12:06:45:372 - INFO - PersonalAttributeList - get attributes by param :false +12:06:45:377 - INFO - PersonalAttributeList - get simple attributes +12:06:45:377 - INFO - PersonalAttributeList - get attributes by param :false +12:06:45:377 - INFO - PersonalAttributeList - adding attribute:age +12:06:45:382 - INFO - PersonalAttributeList - get simple attributes +12:06:45:382 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:06:45:382 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:06:45:383 - INFO - PersonalAttributeList - get attributes by param :true +12:06:45:384 - INFO - PersonalAttributeList - get simple attributes +12:06:45:386 - INFO - PersonalAttributeList - get complex attributes +12:06:45:386 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:06:45:459 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:06:45:478 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:06:45:479 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:06:45:479 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +12:06:45:482 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:06:45:483 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:18:58:481 - INFO - PersonalAttributeList - get attributes by param :false +12:18:58:486 - INFO - PersonalAttributeList - get attributes by param :true +12:18:58:486 - INFO - PersonalAttributeList - adding attribute:age +12:18:58:487 - INFO - PersonalAttributeList - get complex attributes +12:18:58:487 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:18:58:487 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +12:18:58:498 - INFO - PersonalAttributeList - get attributes by param :false +12:18:58:498 - INFO - PersonalAttributeList - adding attribute:age +12:18:58:498 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:18:58:499 - INFO - PersonalAttributeList - get simple attributes +12:18:58:499 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:18:58:500 - INFO - PersonalAttributeList - get complex attributes +12:18:58:501 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:18:58:502 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:18:58:513 - INFO - PersonalAttributeList - get attributes by param :true +12:18:58:518 - INFO - PersonalAttributeList - get attributes by param :true +12:18:58:519 - INFO - PersonalAttributeList - adding attribute:age +12:18:58:520 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:18:58:520 - INFO - PersonalAttributeList - get complex attributes +12:18:58:521 - INFO - PersonalAttributeList - get attributes by param :false +12:18:58:527 - INFO - PersonalAttributeList - get simple attributes +12:18:58:527 - INFO - PersonalAttributeList - get attributes by param :false +12:18:58:527 - INFO - PersonalAttributeList - adding attribute:age +12:18:58:532 - INFO - PersonalAttributeList - get simple attributes +12:18:58:533 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:18:58:533 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:18:58:534 - INFO - PersonalAttributeList - get attributes by param :true +12:18:58:534 - INFO - PersonalAttributeList - get simple attributes +12:18:58:536 - INFO - PersonalAttributeList - get complex attributes +12:18:58:536 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:18:58:618 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:18:58:634 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:18:58:635 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:18:58:636 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +12:18:58:639 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:18:58:640 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:35:56:172 - INFO - PersonalAttributeList - get attributes by param :false +12:35:56:174 - INFO - PersonalAttributeList - get attributes by param :true +12:35:56:175 - INFO - PersonalAttributeList - adding attribute:age +12:35:56:176 - INFO - PersonalAttributeList - get complex attributes +12:35:56:176 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:35:56:176 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +12:35:56:185 - INFO - PersonalAttributeList - get attributes by param :false +12:35:56:185 - INFO - PersonalAttributeList - adding attribute:age +12:35:56:186 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:35:56:186 - INFO - PersonalAttributeList - get simple attributes +12:35:56:186 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:35:56:187 - INFO - PersonalAttributeList - get complex attributes +12:35:56:188 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:35:56:189 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:35:56:198 - INFO - PersonalAttributeList - get attributes by param :true +12:35:56:204 - INFO - PersonalAttributeList - get attributes by param :true +12:35:56:206 - INFO - PersonalAttributeList - adding attribute:age +12:35:56:206 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:35:56:207 - INFO - PersonalAttributeList - get complex attributes +12:35:56:208 - INFO - PersonalAttributeList - get attributes by param :false +12:35:56:214 - INFO - PersonalAttributeList - get simple attributes +12:35:56:214 - INFO - PersonalAttributeList - get attributes by param :false +12:35:56:214 - INFO - PersonalAttributeList - adding attribute:age +12:35:56:219 - INFO - PersonalAttributeList - get simple attributes +12:35:56:219 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:35:56:220 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:35:56:220 - INFO - PersonalAttributeList - get attributes by param :true +12:35:56:221 - INFO - PersonalAttributeList - get simple attributes +12:35:56:223 - INFO - PersonalAttributeList - get complex attributes +12:35:56:223 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:35:56:301 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:35:56:317 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:35:56:317 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:35:56:318 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +12:35:56:321 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:35:56:322 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:59:31:022 - INFO - PersonalAttributeList - get attributes by param :false +13:59:31:025 - INFO - PersonalAttributeList - get attributes by param :true +13:59:31:026 - INFO - PersonalAttributeList - adding attribute:age +13:59:31:027 - INFO - PersonalAttributeList - get complex attributes +13:59:31:027 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:59:31:027 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +13:59:31:037 - INFO - PersonalAttributeList - get attributes by param :false +13:59:31:037 - INFO - PersonalAttributeList - adding attribute:age +13:59:31:037 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:59:31:038 - INFO - PersonalAttributeList - get simple attributes +13:59:31:038 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:59:31:039 - INFO - PersonalAttributeList - get complex attributes +13:59:31:040 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:59:31:041 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:59:31:051 - INFO - PersonalAttributeList - get attributes by param :true +13:59:31:056 - INFO - PersonalAttributeList - get attributes by param :true +13:59:31:058 - INFO - PersonalAttributeList - adding attribute:age +13:59:31:058 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:59:31:059 - INFO - PersonalAttributeList - get complex attributes +13:59:31:060 - INFO - PersonalAttributeList - get attributes by param :false +13:59:31:066 - INFO - PersonalAttributeList - get simple attributes +13:59:31:067 - INFO - PersonalAttributeList - get attributes by param :false +13:59:31:067 - INFO - PersonalAttributeList - adding attribute:age +13:59:31:072 - INFO - PersonalAttributeList - get simple attributes +13:59:31:072 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:59:31:072 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:59:31:073 - INFO - PersonalAttributeList - get attributes by param :true +13:59:31:074 - INFO - PersonalAttributeList - get simple attributes +13:59:31:076 - INFO - PersonalAttributeList - get complex attributes +13:59:31:076 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:59:31:157 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:59:31:174 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:59:31:175 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:59:31:175 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +13:59:31:178 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:59:31:179 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:46:45:711 - INFO - PersonalAttributeList - get attributes by param :false +14:46:45:714 - INFO - PersonalAttributeList - get attributes by param :true +14:46:45:714 - INFO - PersonalAttributeList - adding attribute:age +14:46:45:716 - INFO - PersonalAttributeList - get complex attributes +14:46:45:716 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +14:46:45:716 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +14:46:45:726 - INFO - PersonalAttributeList - get attributes by param :false +14:46:45:726 - INFO - PersonalAttributeList - adding attribute:age +14:46:45:726 - INFO - PersonalAttributeList - adding attribute:isAgeOver +14:46:45:727 - INFO - PersonalAttributeList - get simple attributes +14:46:45:727 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +14:46:45:728 - INFO - PersonalAttributeList - get complex attributes +14:46:45:729 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +14:46:45:730 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +14:46:45:739 - INFO - PersonalAttributeList - get attributes by param :true +14:46:45:744 - INFO - PersonalAttributeList - get attributes by param :true +14:46:45:746 - INFO - PersonalAttributeList - adding attribute:age +14:46:45:746 - INFO - PersonalAttributeList - adding attribute:isAgeOver +14:46:45:747 - INFO - PersonalAttributeList - get complex attributes +14:46:45:747 - INFO - PersonalAttributeList - get attributes by param :false +14:46:45:752 - INFO - PersonalAttributeList - get simple attributes +14:46:45:753 - INFO - PersonalAttributeList - get attributes by param :false +14:46:45:753 - INFO - PersonalAttributeList - adding attribute:age +14:46:45:758 - INFO - PersonalAttributeList - get simple attributes +14:46:45:758 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +14:46:45:758 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +14:46:45:759 - INFO - PersonalAttributeList - get attributes by param :true +14:46:45:759 - INFO - PersonalAttributeList - get simple attributes +14:46:45:761 - INFO - PersonalAttributeList - get complex attributes +14:46:45:761 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +14:46:45:834 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:46:45:849 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:46:45:850 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:46:45:851 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +14:46:45:853 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:46:45:855 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:58:07:963 - INFO - PersonalAttributeList - get attributes by param :false +14:58:07:966 - INFO - PersonalAttributeList - get attributes by param :true +14:58:07:966 - INFO - PersonalAttributeList - adding attribute:age +14:58:07:968 - INFO - PersonalAttributeList - get complex attributes +14:58:07:968 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +14:58:07:968 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +14:58:07:979 - INFO - PersonalAttributeList - get attributes by param :false +14:58:07:979 - INFO - PersonalAttributeList - adding attribute:age +14:58:07:979 - INFO - PersonalAttributeList - adding attribute:isAgeOver +14:58:07:980 - INFO - PersonalAttributeList - get simple attributes +14:58:07:980 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +14:58:07:981 - INFO - PersonalAttributeList - get complex attributes +14:58:07:982 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +14:58:07:983 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +14:58:07:993 - INFO - PersonalAttributeList - get attributes by param :true +14:58:07:997 - INFO - PersonalAttributeList - get attributes by param :true +14:58:07:999 - INFO - PersonalAttributeList - adding attribute:age +14:58:07:999 - INFO - PersonalAttributeList - adding attribute:isAgeOver +14:58:08:000 - INFO - PersonalAttributeList - get complex attributes +14:58:08:000 - INFO - PersonalAttributeList - get attributes by param :false +14:58:08:005 - INFO - PersonalAttributeList - get simple attributes +14:58:08:006 - INFO - PersonalAttributeList - get attributes by param :false +14:58:08:006 - INFO - PersonalAttributeList - adding attribute:age +14:58:08:010 - INFO - PersonalAttributeList - get simple attributes +14:58:08:011 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +14:58:08:011 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +14:58:08:012 - INFO - PersonalAttributeList - get attributes by param :true +14:58:08:012 - INFO - PersonalAttributeList - get simple attributes +14:58:08:014 - INFO - PersonalAttributeList - get complex attributes +14:58:08:014 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +14:58:08:085 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:58:08:103 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:58:08:104 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:58:08:105 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +14:58:08:107 - WARN - DateUtil - Couldn't calculate Age, invalid date! +14:58:08:108 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:07:40:448 - INFO - PersonalAttributeList - get attributes by param :false +15:07:40:451 - INFO - PersonalAttributeList - get attributes by param :true +15:07:40:451 - INFO - PersonalAttributeList - adding attribute:age +15:07:40:453 - INFO - PersonalAttributeList - get complex attributes +15:07:40:453 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +15:07:40:453 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +15:07:40:464 - INFO - PersonalAttributeList - get attributes by param :false +15:07:40:464 - INFO - PersonalAttributeList - adding attribute:age +15:07:40:465 - INFO - PersonalAttributeList - adding attribute:isAgeOver +15:07:40:465 - INFO - PersonalAttributeList - get simple attributes +15:07:40:465 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:07:40:466 - INFO - PersonalAttributeList - get complex attributes +15:07:40:467 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +15:07:40:468 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +15:07:40:478 - INFO - PersonalAttributeList - get attributes by param :true +15:07:40:483 - INFO - PersonalAttributeList - get attributes by param :true +15:07:40:484 - INFO - PersonalAttributeList - adding attribute:age +15:07:40:485 - INFO - PersonalAttributeList - adding attribute:isAgeOver +15:07:40:485 - INFO - PersonalAttributeList - get complex attributes +15:07:40:486 - INFO - PersonalAttributeList - get attributes by param :false +15:07:40:491 - INFO - PersonalAttributeList - get simple attributes +15:07:40:492 - INFO - PersonalAttributeList - get attributes by param :false +15:07:40:492 - INFO - PersonalAttributeList - adding attribute:age +15:07:40:498 - INFO - PersonalAttributeList - get simple attributes +15:07:40:498 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:07:40:499 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:07:40:500 - INFO - PersonalAttributeList - get attributes by param :true +15:07:40:500 - INFO - PersonalAttributeList - get simple attributes +15:07:40:503 - INFO - PersonalAttributeList - get complex attributes +15:07:40:503 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +15:07:40:584 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:07:40:600 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:07:40:601 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:07:40:602 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +15:07:40:604 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:07:40:605 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:14:45:047 - INFO - PersonalAttributeList - get attributes by param :false +15:14:45:050 - INFO - PersonalAttributeList - get attributes by param :true +15:14:45:051 - INFO - PersonalAttributeList - adding attribute:age +15:14:45:052 - INFO - PersonalAttributeList - get complex attributes +15:14:45:052 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +15:14:45:052 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +15:14:45:062 - INFO - PersonalAttributeList - get attributes by param :false +15:14:45:062 - INFO - PersonalAttributeList - adding attribute:age +15:14:45:062 - INFO - PersonalAttributeList - adding attribute:isAgeOver +15:14:45:063 - INFO - PersonalAttributeList - get simple attributes +15:14:45:063 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:14:45:064 - INFO - PersonalAttributeList - get complex attributes +15:14:45:065 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +15:14:45:065 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +15:14:45:075 - INFO - PersonalAttributeList - get attributes by param :true +15:14:45:079 - INFO - PersonalAttributeList - get attributes by param :true +15:14:45:081 - INFO - PersonalAttributeList - adding attribute:age +15:14:45:081 - INFO - PersonalAttributeList - adding attribute:isAgeOver +15:14:45:082 - INFO - PersonalAttributeList - get complex attributes +15:14:45:082 - INFO - PersonalAttributeList - get attributes by param :false +15:14:45:087 - INFO - PersonalAttributeList - get simple attributes +15:14:45:088 - INFO - PersonalAttributeList - get attributes by param :false +15:14:45:088 - INFO - PersonalAttributeList - adding attribute:age +15:14:45:093 - INFO - PersonalAttributeList - get simple attributes +15:14:45:093 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:14:45:094 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:14:45:095 - INFO - PersonalAttributeList - get attributes by param :true +15:14:45:096 - INFO - PersonalAttributeList - get simple attributes +15:14:45:098 - INFO - PersonalAttributeList - get complex attributes +15:14:45:098 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +15:14:45:173 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:14:45:188 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:14:45:189 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:14:45:190 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +15:14:45:192 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:14:45:193 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:04:27:736 - INFO - PersonalAttributeList - get attributes by param :false +16:04:27:739 - INFO - PersonalAttributeList - get attributes by param :true +16:04:27:739 - INFO - PersonalAttributeList - adding attribute:age +16:04:27:740 - INFO - PersonalAttributeList - get complex attributes +16:04:27:741 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:04:27:741 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +16:04:27:753 - INFO - PersonalAttributeList - get attributes by param :false +16:04:27:753 - INFO - PersonalAttributeList - adding attribute:age +16:04:27:753 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:04:27:754 - INFO - PersonalAttributeList - get simple attributes +16:04:27:755 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:04:27:756 - INFO - PersonalAttributeList - get complex attributes +16:04:27:757 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:04:27:757 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:04:27:767 - INFO - PersonalAttributeList - get attributes by param :true +16:04:27:772 - INFO - PersonalAttributeList - get attributes by param :true +16:04:27:774 - INFO - PersonalAttributeList - adding attribute:age +16:04:27:774 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:04:27:775 - INFO - PersonalAttributeList - get complex attributes +16:04:27:775 - INFO - PersonalAttributeList - get attributes by param :false +16:04:27:780 - INFO - PersonalAttributeList - get simple attributes +16:04:27:781 - INFO - PersonalAttributeList - get attributes by param :false +16:04:27:781 - INFO - PersonalAttributeList - adding attribute:age +16:04:27:786 - INFO - PersonalAttributeList - get simple attributes +16:04:27:787 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:04:27:787 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:04:27:788 - INFO - PersonalAttributeList - get attributes by param :true +16:04:27:789 - INFO - PersonalAttributeList - get simple attributes +16:04:27:791 - INFO - PersonalAttributeList - get complex attributes +16:04:27:792 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:04:27:869 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:04:27:887 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:04:27:888 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:04:27:888 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +16:04:27:891 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:04:27:892 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:16:59:931 - INFO - PersonalAttributeList - get attributes by param :false +16:16:59:936 - INFO - PersonalAttributeList - get attributes by param :true +16:16:59:937 - INFO - PersonalAttributeList - adding attribute:age +16:16:59:939 - INFO - PersonalAttributeList - get complex attributes +16:16:59:939 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:16:59:939 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +16:16:59:951 - INFO - PersonalAttributeList - get attributes by param :false +16:16:59:951 - INFO - PersonalAttributeList - adding attribute:age +16:16:59:951 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:16:59:953 - INFO - PersonalAttributeList - get simple attributes +16:16:59:953 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:16:59:954 - INFO - PersonalAttributeList - get complex attributes +16:16:59:956 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:16:59:957 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:16:59:974 - INFO - PersonalAttributeList - get attributes by param :true +16:16:59:979 - INFO - PersonalAttributeList - get attributes by param :true +16:16:59:981 - INFO - PersonalAttributeList - adding attribute:age +16:16:59:981 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:16:59:982 - INFO - PersonalAttributeList - get complex attributes +16:16:59:983 - INFO - PersonalAttributeList - get attributes by param :false +16:16:59:989 - INFO - PersonalAttributeList - get simple attributes +16:16:59:990 - INFO - PersonalAttributeList - get attributes by param :false +16:16:59:990 - INFO - PersonalAttributeList - adding attribute:age +16:16:59:998 - INFO - PersonalAttributeList - get simple attributes +16:16:59:998 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:16:59:998 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:16:59:999 - INFO - PersonalAttributeList - get attributes by param :true +16:16:59:999 - INFO - PersonalAttributeList - get simple attributes +16:17:00:002 - INFO - PersonalAttributeList - get complex attributes +16:17:00:002 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:17:00:091 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:17:00:110 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:17:00:110 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:17:00:111 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +16:17:00:113 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:17:00:114 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:26:40:032 - INFO - PersonalAttributeList - get attributes by param :false +16:26:40:036 - INFO - PersonalAttributeList - get attributes by param :true +16:26:40:036 - INFO - PersonalAttributeList - adding attribute:age +16:26:40:037 - INFO - PersonalAttributeList - get complex attributes +16:26:40:037 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:26:40:037 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +16:26:40:049 - INFO - PersonalAttributeList - get attributes by param :false +16:26:40:049 - INFO - PersonalAttributeList - adding attribute:age +16:26:40:049 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:26:40:050 - INFO - PersonalAttributeList - get simple attributes +16:26:40:050 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:26:40:051 - INFO - PersonalAttributeList - get complex attributes +16:26:40:052 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:26:40:053 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:26:40:069 - INFO - PersonalAttributeList - get attributes by param :true +16:26:40:075 - INFO - PersonalAttributeList - get attributes by param :true +16:26:40:077 - INFO - PersonalAttributeList - adding attribute:age +16:26:40:077 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:26:40:078 - INFO - PersonalAttributeList - get complex attributes +16:26:40:079 - INFO - PersonalAttributeList - get attributes by param :false +16:26:40:084 - INFO - PersonalAttributeList - get simple attributes +16:26:40:084 - INFO - PersonalAttributeList - get attributes by param :false +16:26:40:084 - INFO - PersonalAttributeList - adding attribute:age +16:26:40:089 - INFO - PersonalAttributeList - get simple attributes +16:26:40:089 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:26:40:089 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:26:40:090 - INFO - PersonalAttributeList - get attributes by param :true +16:26:40:091 - INFO - PersonalAttributeList - get simple attributes +16:26:40:093 - INFO - PersonalAttributeList - get complex attributes +16:26:40:093 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:26:40:174 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:26:40:191 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:26:40:192 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:26:40:192 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +16:26:40:194 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:26:40:196 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:36:30:001 - INFO - PersonalAttributeList - get attributes by param :false +16:36:30:005 - INFO - PersonalAttributeList - get attributes by param :true +16:36:30:005 - INFO - PersonalAttributeList - adding attribute:age +16:36:30:007 - INFO - PersonalAttributeList - get complex attributes +16:36:30:007 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:36:30:008 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +16:36:30:021 - INFO - PersonalAttributeList - get attributes by param :false +16:36:30:021 - INFO - PersonalAttributeList - adding attribute:age +16:36:30:022 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:36:30:022 - INFO - PersonalAttributeList - get simple attributes +16:36:30:023 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:36:30:024 - INFO - PersonalAttributeList - get complex attributes +16:36:30:025 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:36:30:026 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +16:36:30:038 - INFO - PersonalAttributeList - get attributes by param :true +16:36:30:044 - INFO - PersonalAttributeList - get attributes by param :true +16:36:30:045 - INFO - PersonalAttributeList - adding attribute:age +16:36:30:045 - INFO - PersonalAttributeList - adding attribute:isAgeOver +16:36:30:046 - INFO - PersonalAttributeList - get complex attributes +16:36:30:047 - INFO - PersonalAttributeList - get attributes by param :false +16:36:30:053 - INFO - PersonalAttributeList - get simple attributes +16:36:30:054 - INFO - PersonalAttributeList - get attributes by param :false +16:36:30:054 - INFO - PersonalAttributeList - adding attribute:age +16:36:30:059 - INFO - PersonalAttributeList - get simple attributes +16:36:30:060 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:36:30:060 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +16:36:30:061 - INFO - PersonalAttributeList - get attributes by param :true +16:36:30:062 - INFO - PersonalAttributeList - get simple attributes +16:36:30:066 - INFO - PersonalAttributeList - get complex attributes +16:36:30:066 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +16:36:30:152 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:36:30:167 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:36:30:168 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:36:30:169 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +16:36:30:171 - WARN - DateUtil - Couldn't calculate Age, invalid date! +16:36:30:173 - WARN - DateUtil - Couldn't calculate Age, invalid date! diff --git a/id/server/stork2-commons/stork-commons.log.2014-03-27 b/id/server/stork2-commons/stork-commons.log.2014-03-27 new file mode 100644 index 000000000..328327b03 --- /dev/null +++ b/id/server/stork2-commons/stork-commons.log.2014-03-27 @@ -0,0 +1,432 @@ +10:41:32:538 - INFO - PersonalAttributeList - get attributes by param :false +10:41:32:541 - INFO - PersonalAttributeList - get attributes by param :true +10:41:32:541 - INFO - PersonalAttributeList - adding attribute:age +10:41:32:542 - INFO - PersonalAttributeList - get complex attributes +10:41:32:542 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +10:41:32:542 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +10:41:32:550 - INFO - PersonalAttributeList - get attributes by param :false +10:41:32:550 - INFO - PersonalAttributeList - adding attribute:age +10:41:32:551 - INFO - PersonalAttributeList - adding attribute:isAgeOver +10:41:32:551 - INFO - PersonalAttributeList - get simple attributes +10:41:32:551 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +10:41:32:552 - INFO - PersonalAttributeList - get complex attributes +10:41:32:553 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +10:41:32:554 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +10:41:32:563 - INFO - PersonalAttributeList - get attributes by param :true +10:41:32:567 - INFO - PersonalAttributeList - get attributes by param :true +10:41:32:568 - INFO - PersonalAttributeList - adding attribute:age +10:41:32:568 - INFO - PersonalAttributeList - adding attribute:isAgeOver +10:41:32:569 - INFO - PersonalAttributeList - get complex attributes +10:41:32:570 - INFO - PersonalAttributeList - get attributes by param :false +10:41:32:574 - INFO - PersonalAttributeList - get simple attributes +10:41:32:575 - INFO - PersonalAttributeList - get attributes by param :false +10:41:32:575 - INFO - PersonalAttributeList - adding attribute:age +10:41:32:579 - INFO - PersonalAttributeList - get simple attributes +10:41:32:579 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +10:41:32:579 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +10:41:32:580 - INFO - PersonalAttributeList - get attributes by param :true +10:41:32:580 - INFO - PersonalAttributeList - get simple attributes +10:41:32:582 - INFO - PersonalAttributeList - get complex attributes +10:41:32:582 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +10:41:32:670 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:41:32:687 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:41:32:688 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:41:32:689 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +10:41:32:691 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:41:32:692 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:44:50:129 - INFO - PersonalAttributeList - get attributes by param :false +10:44:50:132 - INFO - PersonalAttributeList - get attributes by param :true +10:44:50:132 - INFO - PersonalAttributeList - adding attribute:age +10:44:50:133 - INFO - PersonalAttributeList - get complex attributes +10:44:50:133 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +10:44:50:134 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +10:44:50:142 - INFO - PersonalAttributeList - get attributes by param :false +10:44:50:142 - INFO - PersonalAttributeList - adding attribute:age +10:44:50:142 - INFO - PersonalAttributeList - adding attribute:isAgeOver +10:44:50:143 - INFO - PersonalAttributeList - get simple attributes +10:44:50:143 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +10:44:50:144 - INFO - PersonalAttributeList - get complex attributes +10:44:50:145 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +10:44:50:145 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +10:44:50:154 - INFO - PersonalAttributeList - get attributes by param :true +10:44:50:158 - INFO - PersonalAttributeList - get attributes by param :true +10:44:50:160 - INFO - PersonalAttributeList - adding attribute:age +10:44:50:160 - INFO - PersonalAttributeList - adding attribute:isAgeOver +10:44:50:161 - INFO - PersonalAttributeList - get complex attributes +10:44:50:161 - INFO - PersonalAttributeList - get attributes by param :false +10:44:50:166 - INFO - PersonalAttributeList - get simple attributes +10:44:50:167 - INFO - PersonalAttributeList - get attributes by param :false +10:44:50:167 - INFO - PersonalAttributeList - adding attribute:age +10:44:50:171 - INFO - PersonalAttributeList - get simple attributes +10:44:50:171 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +10:44:50:172 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +10:44:50:172 - INFO - PersonalAttributeList - get attributes by param :true +10:44:50:173 - INFO - PersonalAttributeList - get simple attributes +10:44:50:175 - INFO - PersonalAttributeList - get complex attributes +10:44:50:175 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +10:44:50:245 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:44:50:259 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:44:50:260 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:44:50:261 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +10:44:50:263 - WARN - DateUtil - Couldn't calculate Age, invalid date! +10:44:50:264 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:07:34:296 - INFO - PersonalAttributeList - get attributes by param :false +12:07:34:299 - INFO - PersonalAttributeList - get attributes by param :true +12:07:34:299 - INFO - PersonalAttributeList - adding attribute:age +12:07:34:300 - INFO - PersonalAttributeList - get complex attributes +12:07:34:300 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:07:34:300 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +12:07:34:309 - INFO - PersonalAttributeList - get attributes by param :false +12:07:34:309 - INFO - PersonalAttributeList - adding attribute:age +12:07:34:309 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:07:34:310 - INFO - PersonalAttributeList - get simple attributes +12:07:34:310 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:07:34:311 - INFO - PersonalAttributeList - get complex attributes +12:07:34:312 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:07:34:313 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +12:07:34:321 - INFO - PersonalAttributeList - get attributes by param :true +12:07:34:326 - INFO - PersonalAttributeList - get attributes by param :true +12:07:34:327 - INFO - PersonalAttributeList - adding attribute:age +12:07:34:327 - INFO - PersonalAttributeList - adding attribute:isAgeOver +12:07:34:328 - INFO - PersonalAttributeList - get complex attributes +12:07:34:329 - INFO - PersonalAttributeList - get attributes by param :false +12:07:34:333 - INFO - PersonalAttributeList - get simple attributes +12:07:34:334 - INFO - PersonalAttributeList - get attributes by param :false +12:07:34:334 - INFO - PersonalAttributeList - adding attribute:age +12:07:34:339 - INFO - PersonalAttributeList - get simple attributes +12:07:34:339 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:07:34:339 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +12:07:34:340 - INFO - PersonalAttributeList - get attributes by param :true +12:07:34:340 - INFO - PersonalAttributeList - get simple attributes +12:07:34:342 - INFO - PersonalAttributeList - get complex attributes +12:07:34:342 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +12:07:34:410 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:07:34:425 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:07:34:426 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:07:34:426 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +12:07:34:428 - WARN - DateUtil - Couldn't calculate Age, invalid date! +12:07:34:429 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:18:37:550 - INFO - PersonalAttributeList - get attributes by param :false +13:18:37:552 - INFO - PersonalAttributeList - get attributes by param :true +13:18:37:552 - INFO - PersonalAttributeList - adding attribute:age +13:18:37:554 - INFO - PersonalAttributeList - get complex attributes +13:18:37:554 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:18:37:554 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +13:18:37:562 - INFO - PersonalAttributeList - get attributes by param :false +13:18:37:562 - INFO - PersonalAttributeList - adding attribute:age +13:18:37:562 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:18:37:563 - INFO - PersonalAttributeList - get simple attributes +13:18:37:563 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:18:37:564 - INFO - PersonalAttributeList - get complex attributes +13:18:37:565 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:18:37:565 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:18:37:574 - INFO - PersonalAttributeList - get attributes by param :true +13:18:37:578 - INFO - PersonalAttributeList - get attributes by param :true +13:18:37:580 - INFO - PersonalAttributeList - adding attribute:age +13:18:37:580 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:18:37:581 - INFO - PersonalAttributeList - get complex attributes +13:18:37:581 - INFO - PersonalAttributeList - get attributes by param :false +13:18:37:586 - INFO - PersonalAttributeList - get simple attributes +13:18:37:586 - INFO - PersonalAttributeList - get attributes by param :false +13:18:37:586 - INFO - PersonalAttributeList - adding attribute:age +13:18:37:591 - INFO - PersonalAttributeList - get simple attributes +13:18:37:591 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:18:37:591 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:18:37:592 - INFO - PersonalAttributeList - get attributes by param :true +13:18:37:592 - INFO - PersonalAttributeList - get simple attributes +13:18:37:594 - INFO - PersonalAttributeList - get complex attributes +13:18:37:594 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:18:37:662 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:18:37:677 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:18:37:678 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:18:37:678 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +13:18:37:681 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:18:37:682 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:25:32:941 - INFO - PersonalAttributeList - get attributes by param :false +13:25:32:944 - INFO - PersonalAttributeList - get attributes by param :true +13:25:32:945 - INFO - PersonalAttributeList - adding attribute:age +13:25:32:946 - INFO - PersonalAttributeList - get complex attributes +13:25:32:946 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:25:32:946 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +13:25:32:956 - INFO - PersonalAttributeList - get attributes by param :false +13:25:32:956 - INFO - PersonalAttributeList - adding attribute:age +13:25:32:956 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:25:32:957 - INFO - PersonalAttributeList - get simple attributes +13:25:32:957 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:25:32:958 - INFO - PersonalAttributeList - get complex attributes +13:25:32:959 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:25:32:960 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:25:32:969 - INFO - PersonalAttributeList - get attributes by param :true +13:25:32:975 - INFO - PersonalAttributeList - get attributes by param :true +13:25:32:976 - INFO - PersonalAttributeList - adding attribute:age +13:25:32:976 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:25:32:977 - INFO - PersonalAttributeList - get complex attributes +13:25:32:980 - INFO - PersonalAttributeList - get attributes by param :false +13:25:32:984 - INFO - PersonalAttributeList - get simple attributes +13:25:32:985 - INFO - PersonalAttributeList - get attributes by param :false +13:25:32:985 - INFO - PersonalAttributeList - adding attribute:age +13:25:32:990 - INFO - PersonalAttributeList - get simple attributes +13:25:32:990 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:25:32:990 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:25:32:991 - INFO - PersonalAttributeList - get attributes by param :true +13:25:32:991 - INFO - PersonalAttributeList - get simple attributes +13:25:32:993 - INFO - PersonalAttributeList - get complex attributes +13:25:32:993 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:25:33:064 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:25:33:079 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:25:33:080 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:25:33:081 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +13:25:33:083 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:25:33:084 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:33:46:826 - INFO - PersonalAttributeList - get attributes by param :false +13:33:46:829 - INFO - PersonalAttributeList - get attributes by param :true +13:33:46:829 - INFO - PersonalAttributeList - adding attribute:age +13:33:46:830 - INFO - PersonalAttributeList - get complex attributes +13:33:46:830 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:33:46:830 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +13:33:46:839 - INFO - PersonalAttributeList - get attributes by param :false +13:33:46:839 - INFO - PersonalAttributeList - adding attribute:age +13:33:46:839 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:33:46:840 - INFO - PersonalAttributeList - get simple attributes +13:33:46:840 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:33:46:841 - INFO - PersonalAttributeList - get complex attributes +13:33:46:842 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:33:46:843 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +13:33:46:854 - INFO - PersonalAttributeList - get attributes by param :true +13:33:46:859 - INFO - PersonalAttributeList - get attributes by param :true +13:33:46:860 - INFO - PersonalAttributeList - adding attribute:age +13:33:46:860 - INFO - PersonalAttributeList - adding attribute:isAgeOver +13:33:46:861 - INFO - PersonalAttributeList - get complex attributes +13:33:46:862 - INFO - PersonalAttributeList - get attributes by param :false +13:33:46:867 - INFO - PersonalAttributeList - get simple attributes +13:33:46:867 - INFO - PersonalAttributeList - get attributes by param :false +13:33:46:867 - INFO - PersonalAttributeList - adding attribute:age +13:33:46:872 - INFO - PersonalAttributeList - get simple attributes +13:33:46:872 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:33:46:872 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +13:33:46:873 - INFO - PersonalAttributeList - get attributes by param :true +13:33:46:873 - INFO - PersonalAttributeList - get simple attributes +13:33:46:875 - INFO - PersonalAttributeList - get complex attributes +13:33:46:875 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +13:33:46:947 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:33:46:962 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:33:46:963 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:33:46:963 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +13:33:46:967 - WARN - DateUtil - Couldn't calculate Age, invalid date! +13:33:46:968 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:59:26:954 - INFO - PersonalAttributeList - get attributes by param :false +15:59:26:956 - INFO - PersonalAttributeList - get attributes by param :true +15:59:26:957 - INFO - PersonalAttributeList - adding attribute:age +15:59:26:958 - INFO - PersonalAttributeList - get complex attributes +15:59:26:958 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +15:59:26:958 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +15:59:26:967 - INFO - PersonalAttributeList - get attributes by param :false +15:59:26:967 - INFO - PersonalAttributeList - adding attribute:age +15:59:26:967 - INFO - PersonalAttributeList - adding attribute:isAgeOver +15:59:26:968 - INFO - PersonalAttributeList - get simple attributes +15:59:26:968 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:59:26:969 - INFO - PersonalAttributeList - get complex attributes +15:59:26:970 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +15:59:26:971 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +15:59:26:980 - INFO - PersonalAttributeList - get attributes by param :true +15:59:26:985 - INFO - PersonalAttributeList - get attributes by param :true +15:59:26:987 - INFO - PersonalAttributeList - adding attribute:age +15:59:26:987 - INFO - PersonalAttributeList - adding attribute:isAgeOver +15:59:26:987 - INFO - PersonalAttributeList - get complex attributes +15:59:26:988 - INFO - PersonalAttributeList - get attributes by param :false +15:59:26:993 - INFO - PersonalAttributeList - get simple attributes +15:59:26:993 - INFO - PersonalAttributeList - get attributes by param :false +15:59:26:994 - INFO - PersonalAttributeList - adding attribute:age +15:59:26:998 - INFO - PersonalAttributeList - get simple attributes +15:59:26:998 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:59:26:998 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +15:59:26:999 - INFO - PersonalAttributeList - get attributes by param :true +15:59:27:000 - INFO - PersonalAttributeList - get simple attributes +15:59:27:002 - INFO - PersonalAttributeList - get complex attributes +15:59:27:002 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +15:59:27:071 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:59:27:086 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:59:27:087 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:59:27:088 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +15:59:27:090 - WARN - DateUtil - Couldn't calculate Age, invalid date! +15:59:27:091 - WARN - DateUtil - Couldn't calculate Age, invalid date! +17:23:25:411 - INFO - PersonalAttributeList - get attributes by param :false +17:23:25:414 - INFO - PersonalAttributeList - get attributes by param :true +17:23:25:414 - INFO - PersonalAttributeList - adding attribute:age +17:23:25:415 - INFO - PersonalAttributeList - get complex attributes +17:23:25:415 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +17:23:25:416 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +17:23:25:424 - INFO - PersonalAttributeList - get attributes by param :false +17:23:25:424 - INFO - PersonalAttributeList - adding attribute:age +17:23:25:424 - INFO - PersonalAttributeList - adding attribute:isAgeOver +17:23:25:425 - INFO - PersonalAttributeList - get simple attributes +17:23:25:425 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +17:23:25:426 - INFO - PersonalAttributeList - get complex attributes +17:23:25:427 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +17:23:25:427 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +17:23:25:436 - INFO - PersonalAttributeList - get attributes by param :true +17:23:25:441 - INFO - PersonalAttributeList - get attributes by param :true +17:23:25:442 - INFO - PersonalAttributeList - adding attribute:age +17:23:25:442 - INFO - PersonalAttributeList - adding attribute:isAgeOver +17:23:25:443 - INFO - PersonalAttributeList - get complex attributes +17:23:25:443 - INFO - PersonalAttributeList - get attributes by param :false +17:23:25:448 - INFO - PersonalAttributeList - get simple attributes +17:23:25:448 - INFO - PersonalAttributeList - get attributes by param :false +17:23:25:448 - INFO - PersonalAttributeList - adding attribute:age +17:23:25:453 - INFO - PersonalAttributeList - get simple attributes +17:23:25:453 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +17:23:25:453 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +17:23:25:454 - INFO - PersonalAttributeList - get attributes by param :true +17:23:25:454 - INFO - PersonalAttributeList - get simple attributes +17:23:25:456 - INFO - PersonalAttributeList - get complex attributes +17:23:25:457 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +17:23:25:525 - WARN - DateUtil - Couldn't calculate Age, invalid date! +17:23:25:539 - WARN - DateUtil - Couldn't calculate Age, invalid date! +17:23:25:540 - WARN - DateUtil - Couldn't calculate Age, invalid date! +17:23:25:541 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +17:23:25:543 - WARN - DateUtil - Couldn't calculate Age, invalid date! +17:23:25:544 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:26:58:453 - INFO - PersonalAttributeList - get attributes by param :false +18:26:58:456 - INFO - PersonalAttributeList - get attributes by param :true +18:26:58:456 - INFO - PersonalAttributeList - adding attribute:age +18:26:58:457 - INFO - PersonalAttributeList - get complex attributes +18:26:58:457 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +18:26:58:457 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +18:26:58:466 - INFO - PersonalAttributeList - get attributes by param :false +18:26:58:466 - INFO - PersonalAttributeList - adding attribute:age +18:26:58:466 - INFO - PersonalAttributeList - adding attribute:isAgeOver +18:26:58:467 - INFO - PersonalAttributeList - get simple attributes +18:26:58:467 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +18:26:58:468 - INFO - PersonalAttributeList - get complex attributes +18:26:58:469 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +18:26:58:469 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +18:26:58:478 - INFO - PersonalAttributeList - get attributes by param :true +18:26:58:483 - INFO - PersonalAttributeList - get attributes by param :true +18:26:58:484 - INFO - PersonalAttributeList - adding attribute:age +18:26:58:484 - INFO - PersonalAttributeList - adding attribute:isAgeOver +18:26:58:485 - INFO - PersonalAttributeList - get complex attributes +18:26:58:486 - INFO - PersonalAttributeList - get attributes by param :false +18:26:58:490 - INFO - PersonalAttributeList - get simple attributes +18:26:58:491 - INFO - PersonalAttributeList - get attributes by param :false +18:26:58:491 - INFO - PersonalAttributeList - adding attribute:age +18:26:58:495 - INFO - PersonalAttributeList - get simple attributes +18:26:58:495 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +18:26:58:496 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +18:26:58:496 - INFO - PersonalAttributeList - get attributes by param :true +18:26:58:497 - INFO - PersonalAttributeList - get simple attributes +18:26:58:499 - INFO - PersonalAttributeList - get complex attributes +18:26:58:499 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +18:26:58:568 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:26:58:583 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:26:58:584 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:26:58:584 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +18:26:58:587 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:26:58:588 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:41:25:070 - INFO - PersonalAttributeList - get attributes by param :false +18:41:25:072 - INFO - PersonalAttributeList - get attributes by param :true +18:41:25:073 - INFO - PersonalAttributeList - adding attribute:age +18:41:25:074 - INFO - PersonalAttributeList - get complex attributes +18:41:25:074 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +18:41:25:074 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +18:41:25:082 - INFO - PersonalAttributeList - get attributes by param :false +18:41:25:082 - INFO - PersonalAttributeList - adding attribute:age +18:41:25:082 - INFO - PersonalAttributeList - adding attribute:isAgeOver +18:41:25:083 - INFO - PersonalAttributeList - get simple attributes +18:41:25:083 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +18:41:25:084 - INFO - PersonalAttributeList - get complex attributes +18:41:25:085 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +18:41:25:086 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +18:41:25:096 - INFO - PersonalAttributeList - get attributes by param :true +18:41:25:101 - INFO - PersonalAttributeList - get attributes by param :true +18:41:25:102 - INFO - PersonalAttributeList - adding attribute:age +18:41:25:102 - INFO - PersonalAttributeList - adding attribute:isAgeOver +18:41:25:103 - INFO - PersonalAttributeList - get complex attributes +18:41:25:104 - INFO - PersonalAttributeList - get attributes by param :false +18:41:25:109 - INFO - PersonalAttributeList - get simple attributes +18:41:25:109 - INFO - PersonalAttributeList - get attributes by param :false +18:41:25:109 - INFO - PersonalAttributeList - adding attribute:age +18:41:25:115 - INFO - PersonalAttributeList - get simple attributes +18:41:25:115 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +18:41:25:115 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +18:41:25:116 - INFO - PersonalAttributeList - get attributes by param :true +18:41:25:117 - INFO - PersonalAttributeList - get simple attributes +18:41:25:119 - INFO - PersonalAttributeList - get complex attributes +18:41:25:119 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +18:41:25:195 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:41:25:212 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:41:25:213 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:41:25:214 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +18:41:25:218 - WARN - DateUtil - Couldn't calculate Age, invalid date! +18:41:25:219 - WARN - DateUtil - Couldn't calculate Age, invalid date! +19:15:13:721 - INFO - PersonalAttributeList - get attributes by param :false +19:15:13:724 - INFO - PersonalAttributeList - get attributes by param :true +19:15:13:725 - INFO - PersonalAttributeList - adding attribute:age +19:15:13:726 - INFO - PersonalAttributeList - get complex attributes +19:15:13:726 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +19:15:13:726 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +19:15:13:735 - INFO - PersonalAttributeList - get attributes by param :false +19:15:13:735 - INFO - PersonalAttributeList - adding attribute:age +19:15:13:735 - INFO - PersonalAttributeList - adding attribute:isAgeOver +19:15:13:736 - INFO - PersonalAttributeList - get simple attributes +19:15:13:736 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +19:15:13:737 - INFO - PersonalAttributeList - get complex attributes +19:15:13:738 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +19:15:13:739 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +19:15:13:750 - INFO - PersonalAttributeList - get attributes by param :true +19:15:13:757 - INFO - PersonalAttributeList - get attributes by param :true +19:15:13:759 - INFO - PersonalAttributeList - adding attribute:age +19:15:13:759 - INFO - PersonalAttributeList - adding attribute:isAgeOver +19:15:13:760 - INFO - PersonalAttributeList - get complex attributes +19:15:13:761 - INFO - PersonalAttributeList - get attributes by param :false +19:15:13:767 - INFO - PersonalAttributeList - get simple attributes +19:15:13:767 - INFO - PersonalAttributeList - get attributes by param :false +19:15:13:767 - INFO - PersonalAttributeList - adding attribute:age +19:15:13:772 - INFO - PersonalAttributeList - get simple attributes +19:15:13:772 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +19:15:13:772 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +19:15:13:773 - INFO - PersonalAttributeList - get attributes by param :true +19:15:13:774 - INFO - PersonalAttributeList - get simple attributes +19:15:13:776 - INFO - PersonalAttributeList - get complex attributes +19:15:13:776 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +19:15:13:870 - WARN - DateUtil - Couldn't calculate Age, invalid date! +19:15:13:885 - WARN - DateUtil - Couldn't calculate Age, invalid date! +19:15:13:886 - WARN - DateUtil - Couldn't calculate Age, invalid date! +19:15:13:887 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +19:15:13:890 - WARN - DateUtil - Couldn't calculate Age, invalid date! +19:15:13:891 - WARN - DateUtil - Couldn't calculate Age, invalid date! +20:09:34:513 - INFO - PersonalAttributeList - get attributes by param :false +20:09:34:513 - INFO - PersonalAttributeList - get attributes by param :true +20:09:34:513 - INFO - PersonalAttributeList - adding attribute:age +20:09:34:513 - INFO - PersonalAttributeList - get complex attributes +20:09:34:513 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +20:09:34:513 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +20:09:34:523 - INFO - PersonalAttributeList - get attributes by param :false +20:09:34:523 - INFO - PersonalAttributeList - adding attribute:age +20:09:34:523 - INFO - PersonalAttributeList - adding attribute:isAgeOver +20:09:34:523 - INFO - PersonalAttributeList - get simple attributes +20:09:34:523 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +20:09:34:523 - INFO - PersonalAttributeList - get complex attributes +20:09:34:523 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +20:09:34:533 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +20:09:34:543 - INFO - PersonalAttributeList - get attributes by param :true +20:09:34:543 - INFO - PersonalAttributeList - get attributes by param :true +20:09:34:543 - INFO - PersonalAttributeList - adding attribute:age +20:09:34:543 - INFO - PersonalAttributeList - adding attribute:isAgeOver +20:09:34:543 - INFO - PersonalAttributeList - get complex attributes +20:09:34:543 - INFO - PersonalAttributeList - get attributes by param :false +20:09:34:553 - INFO - PersonalAttributeList - get simple attributes +20:09:34:553 - INFO - PersonalAttributeList - get attributes by param :false +20:09:34:553 - INFO - PersonalAttributeList - adding attribute:age +20:09:34:563 - INFO - PersonalAttributeList - get simple attributes +20:09:34:563 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +20:09:34:563 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +20:09:34:563 - INFO - PersonalAttributeList - get attributes by param :true +20:09:34:563 - INFO - PersonalAttributeList - get simple attributes +20:09:34:563 - INFO - PersonalAttributeList - get complex attributes +20:09:34:563 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +20:09:34:633 - WARN - DateUtil - Couldn't calculate Age, invalid date! +20:09:34:653 - WARN - DateUtil - Couldn't calculate Age, invalid date! +20:09:34:653 - WARN - DateUtil - Couldn't calculate Age, invalid date! +20:09:34:653 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +20:09:34:653 - WARN - DateUtil - Couldn't calculate Age, invalid date! +20:09:34:663 - WARN - DateUtil - Couldn't calculate Age, invalid date! diff --git a/id/server/stork2-commons/stork-commons.log.2014-03-28 b/id/server/stork2-commons/stork-commons.log.2014-03-28 new file mode 100644 index 000000000..64f279f26 --- /dev/null +++ b/id/server/stork2-commons/stork-commons.log.2014-03-28 @@ -0,0 +1,108 @@ +07:07:03:244 - INFO - PersonalAttributeList - get attributes by param :false +07:07:03:254 - INFO - PersonalAttributeList - get attributes by param :true +07:07:03:254 - INFO - PersonalAttributeList - adding attribute:age +07:07:03:254 - INFO - PersonalAttributeList - get complex attributes +07:07:03:254 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +07:07:03:254 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +07:07:03:264 - INFO - PersonalAttributeList - get attributes by param :false +07:07:03:264 - INFO - PersonalAttributeList - adding attribute:age +07:07:03:264 - INFO - PersonalAttributeList - adding attribute:isAgeOver +07:07:03:264 - INFO - PersonalAttributeList - get simple attributes +07:07:03:264 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +07:07:03:264 - INFO - PersonalAttributeList - get complex attributes +07:07:03:274 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +07:07:03:274 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +07:07:03:284 - INFO - PersonalAttributeList - get attributes by param :true +07:07:03:294 - INFO - PersonalAttributeList - get attributes by param :true +07:07:03:294 - INFO - PersonalAttributeList - adding attribute:age +07:07:03:294 - INFO - PersonalAttributeList - adding attribute:isAgeOver +07:07:03:294 - INFO - PersonalAttributeList - get complex attributes +07:07:03:294 - INFO - PersonalAttributeList - get attributes by param :false +07:07:03:294 - INFO - PersonalAttributeList - get simple attributes +07:07:03:294 - INFO - PersonalAttributeList - get attributes by param :false +07:07:03:294 - INFO - PersonalAttributeList - adding attribute:age +07:07:03:304 - INFO - PersonalAttributeList - get simple attributes +07:07:03:304 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +07:07:03:304 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +07:07:03:304 - INFO - PersonalAttributeList - get attributes by param :true +07:07:03:304 - INFO - PersonalAttributeList - get simple attributes +07:07:03:304 - INFO - PersonalAttributeList - get complex attributes +07:07:03:304 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +07:07:03:385 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:07:03:395 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:07:03:395 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:07:03:395 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +07:07:03:405 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:07:03:405 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:38:33:747 - INFO - PersonalAttributeList - get attributes by param :false +07:38:33:757 - INFO - PersonalAttributeList - get attributes by param :true +07:38:33:757 - INFO - PersonalAttributeList - adding attribute:age +07:38:33:757 - INFO - PersonalAttributeList - get complex attributes +07:38:33:757 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +07:38:33:757 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +07:38:33:767 - INFO - PersonalAttributeList - get attributes by param :false +07:38:33:767 - INFO - PersonalAttributeList - adding attribute:age +07:38:33:767 - INFO - PersonalAttributeList - adding attribute:isAgeOver +07:38:33:767 - INFO - PersonalAttributeList - get simple attributes +07:38:33:767 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +07:38:33:767 - INFO - PersonalAttributeList - get complex attributes +07:38:33:767 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +07:38:33:767 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +07:38:33:777 - INFO - PersonalAttributeList - get attributes by param :true +07:38:33:777 - INFO - PersonalAttributeList - get attributes by param :true +07:38:33:787 - INFO - PersonalAttributeList - adding attribute:age +07:38:33:787 - INFO - PersonalAttributeList - adding attribute:isAgeOver +07:38:33:787 - INFO - PersonalAttributeList - get complex attributes +07:38:33:787 - INFO - PersonalAttributeList - get attributes by param :false +07:38:33:787 - INFO - PersonalAttributeList - get simple attributes +07:38:33:787 - INFO - PersonalAttributeList - get attributes by param :false +07:38:33:787 - INFO - PersonalAttributeList - adding attribute:age +07:38:33:797 - INFO - PersonalAttributeList - get simple attributes +07:38:33:797 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +07:38:33:797 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +07:38:33:797 - INFO - PersonalAttributeList - get attributes by param :true +07:38:33:797 - INFO - PersonalAttributeList - get simple attributes +07:38:33:797 - INFO - PersonalAttributeList - get complex attributes +07:38:33:797 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +07:38:33:867 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:38:33:877 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:38:33:887 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:38:33:887 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +07:38:33:887 - WARN - DateUtil - Couldn't calculate Age, invalid date! +07:38:33:887 - WARN - DateUtil - Couldn't calculate Age, invalid date! +08:52:53:377 - INFO - PersonalAttributeList - get attributes by param :false +08:52:53:387 - INFO - PersonalAttributeList - get attributes by param :true +08:52:53:387 - INFO - PersonalAttributeList - adding attribute:age +08:52:53:387 - INFO - PersonalAttributeList - get complex attributes +08:52:53:387 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +08:52:53:387 - INFO - PersonalAttributeList - adding complex attribute:mandateContent +08:52:53:397 - INFO - PersonalAttributeList - get attributes by param :false +08:52:53:397 - INFO - PersonalAttributeList - adding attribute:age +08:52:53:397 - INFO - PersonalAttributeList - adding attribute:isAgeOver +08:52:53:397 - INFO - PersonalAttributeList - get simple attributes +08:52:53:397 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +08:52:53:397 - INFO - PersonalAttributeList - get complex attributes +08:52:53:397 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +08:52:53:397 - WARN - PersonalAttributeList - Invalid personal attribute list tuples +08:52:53:407 - INFO - PersonalAttributeList - get attributes by param :true +08:52:53:417 - INFO - PersonalAttributeList - get attributes by param :true +08:52:53:417 - INFO - PersonalAttributeList - adding attribute:age +08:52:53:417 - INFO - PersonalAttributeList - adding attribute:isAgeOver +08:52:53:417 - INFO - PersonalAttributeList - get complex attributes +08:52:53:417 - INFO - PersonalAttributeList - get attributes by param :false +08:52:53:417 - INFO - PersonalAttributeList - get simple attributes +08:52:53:427 - INFO - PersonalAttributeList - get attributes by param :false +08:52:53:427 - INFO - PersonalAttributeList - adding attribute:age +08:52:53:427 - INFO - PersonalAttributeList - get simple attributes +08:52:53:427 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +08:52:53:427 - INFO - PersonalAttributeList - adding simple attribute:isAgeOver +08:52:53:427 - INFO - PersonalAttributeList - get attributes by param :true +08:52:53:427 - INFO - PersonalAttributeList - get simple attributes +08:52:53:427 - INFO - PersonalAttributeList - get complex attributes +08:52:53:427 - INFO - PersonalAttributeList - adding complex attribute:canonicalResidenceAddress +08:52:53:498 - WARN - DateUtil - Couldn't calculate Age, invalid date! +08:52:53:518 - WARN - DateUtil - Couldn't calculate Age, invalid date! +08:52:53:518 - WARN - DateUtil - Couldn't calculate Age, invalid date! +08:52:53:518 - WARN - DateUtil - Invalid date format (yyyyMMdd) or an invalid dateValue. +08:52:53:518 - WARN - DateUtil - Couldn't calculate Age, invalid date! +08:52:53:518 - WARN - DateUtil - Couldn't calculate Age, invalid date! diff --git a/id/server/stork2-saml-engine/.classpath b/id/server/stork2-saml-engine/.classpath new file mode 100644 index 000000000..d2bdee1ba --- /dev/null +++ b/id/server/stork2-saml-engine/.classpath @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/id/server/stork2-saml-engine/.gitignore b/id/server/stork2-saml-engine/.gitignore new file mode 100644 index 000000000..ea8c4bf7f --- /dev/null +++ b/id/server/stork2-saml-engine/.gitignore @@ -0,0 +1 @@ +/target diff --git a/id/server/stork2-saml-engine/.project b/id/server/stork2-saml-engine/.project new file mode 100644 index 000000000..74b9c25ba --- /dev/null +++ b/id/server/stork2-saml-engine/.project @@ -0,0 +1,36 @@ + + + SamlEngine + + + + + + org.eclipse.wst.common.project.facet.core.builder + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + org.eclipse.m2e.core.maven2Builder + + + + + + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jdt.core.javanature + org.eclipse.m2e.core.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + + diff --git a/id/server/stork2-saml-engine/.settings/org.eclipse.core.resources.prefs b/id/server/stork2-saml-engine/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 000000000..cdfe4f1b6 --- /dev/null +++ b/id/server/stork2-saml-engine/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,5 @@ +eclipse.preferences.version=1 +encoding//src/main/java=UTF-8 +encoding//src/test/java=UTF-8 +encoding//src/test/resources=UTF-8 +encoding/=UTF-8 diff --git a/id/server/stork2-saml-engine/.settings/org.eclipse.jdt.core.prefs b/id/server/stork2-saml-engine/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 000000000..107056a36 --- /dev/null +++ b/id/server/stork2-saml-engine/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,12 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.6 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.6 diff --git a/id/server/stork2-saml-engine/.settings/org.eclipse.m2e.core.prefs b/id/server/stork2-saml-engine/.settings/org.eclipse.m2e.core.prefs new file mode 100644 index 000000000..f897a7f1c --- /dev/null +++ b/id/server/stork2-saml-engine/.settings/org.eclipse.m2e.core.prefs @@ -0,0 +1,4 @@ +activeProfiles= +eclipse.preferences.version=1 +resolveWorkspaceProjects=true +version=1 diff --git a/id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.component b/id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.component new file mode 100644 index 000000000..5ba2e3ad2 --- /dev/null +++ b/id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.component @@ -0,0 +1,5 @@ + + + + + diff --git a/id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.project.facet.core.xml new file mode 100644 index 000000000..5c9bd7532 --- /dev/null +++ b/id/server/stork2-saml-engine/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/id/server/stork2-saml-engine/.settings/org.eclipse.wst.validation.prefs b/id/server/stork2-saml-engine/.settings/org.eclipse.wst.validation.prefs new file mode 100644 index 000000000..04cad8cb7 --- /dev/null +++ b/id/server/stork2-saml-engine/.settings/org.eclipse.wst.validation.prefs @@ -0,0 +1,2 @@ +disabled=06target +eclipse.preferences.version=1 diff --git a/id/server/stork2-saml-engine/pom.xml b/id/server/stork2-saml-engine/pom.xml index 5a6621f12..ed5dfa973 100644 --- a/id/server/stork2-saml-engine/pom.xml +++ b/id/server/stork2-saml-engine/pom.xml @@ -156,7 +156,7 @@ - + org.apache.maven.plugins -- cgit v1.2.3