From 07b0306ca470cca10eecceab1a762f995b894fb0 Mon Sep 17 00:00:00 2001 From: kstranacher_eGovL Date: Fri, 13 Jul 2012 10:15:53 +0000 Subject: Integration of STORK git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@1286 d688527b-c9ab-4aba-bd8d-4036d912da1d --- common/.settings/org.eclipse.jdt.core.prefs | 2 +- common/.settings/org.eclipse.wst.common.component | 14 +- .../org.eclipse.wst.common.project.facet.core.xml | 6 +- common/pom.xml | 6 + .../java/at/gv/egovernment/moa/util/Constants.java | 62 +++- .../at/gv/egovernment/moa/util/DateTimeUtils.java | 100 ++++++ .../at/gv/egovernment/moa/util/KeyStoreUtils.java | 54 ++++ .../at/gv/egovernment/moa/util/XPathUtils.java | 5 + .../schemas/MOA-ID-Configuration-1.5.2.xsd | 96 +++++- .../resources/schemas/MOA-SPSS-config-1.5.2.xsd | 2 + .../schemas/saml-schema-assertion-2.0.xsd | 290 ++++++++++++++++++ .../resources/schemas/saml-schema-metadata-2.0.xsd | 337 +++++++++++++++++++++ .../resources/schemas/saml-schema-protocol-2.0.xsd | 306 +++++++++++++++++++ .../schemas/stork-schema-assertion-1.0.xsd | 80 +++++ .../schemas/stork-schema-protocol-1.0.xsd | 73 +++++ .../resources/resources/schemas/xenc-schema.xsd | 150 +++++++++ id/oa/.settings/org.eclipse.jdt.core.prefs | 8 +- id/oa/.settings/org.eclipse.wst.common.component | 4 +- .../org.eclipse.wst.common.project.facet.core.xml | 6 +- id/templates/.classpath | 13 +- id/templates/.project | 65 ++-- id/templates/.settings/org.eclipse.jdt.core.prefs | 2 +- .../.settings/org.eclipse.wst.common.component | 14 +- .../org.eclipse.wst.common.project.facet.core.xml | 6 +- .../serializer/2.10.0/m2e-lastUpdated.properties | 7 + .../serializer-2.10.0-sources.jar.lastUpdated | 8 + .../serializer/2.10.0/serializer-2.10.0.jar | Bin 0 -> 278286 bytes .../serializer/2.10.0/serializer-2.10.0.jar.sha1 | 1 + .../serializer/2.10.0/serializer-2.10.0.pom | 9 + .../serializer/2.10.0/serializer-2.10.0.pom.sha1 | 1 + .../xalan/2.7.1/m2e-lastUpdated.properties | 3 + .../xalan/2.7.1/xalan-2.7.1-sources.jar | Bin 0 -> 3423100 bytes .../xalan/2.7.1/xalan-2.7.1-sources.jar.sha1 | 1 + .../xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.jar | Bin 0 -> 3176148 bytes .../xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom | 41 +++ .../xalan/2.7.1/xalan-2.7.1.pom.sha1 | 1 + .../xml-apis/2.10.0/m2e-lastUpdated.properties | 7 + .../2.10.0/xml-apis-2.10.0-sources.jar.lastUpdated | 8 + .../xml-apis/2.10.0/xml-apis-2.10.0.jar | Bin 0 -> 220536 bytes .../xml-apis/2.10.0/xml-apis-2.10.0.jar.sha1 | 1 + .../xml-apis/2.10.0/xml-apis-2.10.0.pom | 9 + .../xml-apis/2.10.0/xml-apis-2.10.0.pom.sha1 | 1 + spss/handbook/clients/api/.classpath | 39 ++- spss/handbook/clients/api/.project | 59 ++-- .../api/.settings/org.eclipse.jdt.core.prefs | 2 +- spss/handbook/clients/referencedData/.classpath | 13 +- spss/handbook/clients/referencedData/.project | 68 ++--- .../.settings/org.eclipse.jdt.core.prefs | 4 +- .../.settings/org.eclipse.wst.common.component | 14 +- .../org.eclipse.wst.common.project.facet.core.xml | 6 +- spss/handbook/clients/webservice/.classpath | 40 ++- spss/handbook/clients/webservice/.project | 60 ++-- .../.settings/org.eclipse.jdt.core.prefs | 2 +- .../serverlib/.settings/org.eclipse.jdt.core.prefs | 2 +- .../.settings/org.eclipse.wst.common.component | 14 +- .../org.eclipse.wst.common.project.facet.core.xml | 4 +- spss/server/serverws/.classpath | 42 ++- spss/server/serverws/.project | 70 ++--- .../serverws/.settings/org.eclipse.jdt.core.prefs | 2 +- .../.settings/org.eclipse.wst.common.component | 76 ++++- .../org.eclipse.wst.common.project.facet.core.xml | 6 +- spss/server/tools/.classpath | 18 +- spss/server/tools/.project | 56 ++-- .../tools/.settings/org.eclipse.jdt.core.prefs | 2 +- 64 files changed, 2089 insertions(+), 309 deletions(-) create mode 100644 common/src/main/resources/resources/schemas/saml-schema-assertion-2.0.xsd create mode 100644 common/src/main/resources/resources/schemas/saml-schema-metadata-2.0.xsd create mode 100644 common/src/main/resources/resources/schemas/saml-schema-protocol-2.0.xsd create mode 100644 common/src/main/resources/resources/schemas/stork-schema-assertion-1.0.xsd create mode 100644 common/src/main/resources/resources/schemas/stork-schema-protocol-1.0.xsd create mode 100644 common/src/main/resources/resources/schemas/xenc-schema.xsd create mode 100644 repository/xalan-bin-dist/serializer/2.10.0/m2e-lastUpdated.properties create mode 100644 repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0-sources.jar.lastUpdated create mode 100644 repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar create mode 100644 repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar.sha1 create mode 100644 repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom create mode 100644 repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom.sha1 create mode 100644 repository/xalan-bin-dist/xalan/2.7.1/m2e-lastUpdated.properties create mode 100644 repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar create mode 100644 repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar.sha1 create mode 100644 repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.jar create mode 100644 repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom create mode 100644 repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom.sha1 create mode 100644 repository/xalan-bin-dist/xml-apis/2.10.0/m2e-lastUpdated.properties create mode 100644 repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0-sources.jar.lastUpdated create mode 100644 repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar create mode 100644 repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar.sha1 create mode 100644 repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom create mode 100644 repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom.sha1 diff --git a/common/.settings/org.eclipse.jdt.core.prefs b/common/.settings/org.eclipse.jdt.core.prefs index af8eeb2ca..9c6309855 100644 --- a/common/.settings/org.eclipse.jdt.core.prefs +++ b/common/.settings/org.eclipse.jdt.core.prefs @@ -1,4 +1,3 @@ -#Wed Jan 16 15:02:15 CET 2008 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 @@ -9,4 +8,5 @@ org.eclipse.jdt.core.compiler.debug.localVariable=generate org.eclipse.jdt.core.compiler.debug.sourceFile=generate org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.4 diff --git a/common/.settings/org.eclipse.wst.common.component b/common/.settings/org.eclipse.wst.common.component index 6351b73de..4dd7e3409 100644 --- a/common/.settings/org.eclipse.wst.common.component +++ b/common/.settings/org.eclipse.wst.common.component @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/common/.settings/org.eclipse.wst.common.project.facet.core.xml b/common/.settings/org.eclipse.wst.common.project.facet.core.xml index 8b6262d32..eb7de6322 100644 --- a/common/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/common/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,7 +1,7 @@ - - + - + + \ No newline at end of file diff --git a/common/pom.xml b/common/pom.xml index d0ea9db4d..560e6fe5a 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -60,6 +60,12 @@ runtime true + + joda-time + joda-time + 1.6.2 + + diff --git a/common/src/main/java/at/gv/egovernment/moa/util/Constants.java b/common/src/main/java/at/gv/egovernment/moa/util/Constants.java index 998bbf26f..c4f7eb3f3 100644 --- a/common/src/main/java/at/gv/egovernment/moa/util/Constants.java +++ b/common/src/main/java/at/gv/egovernment/moa/util/Constants.java @@ -285,6 +285,61 @@ public interface Constants { /** URI of the XAdES v1.4.1 namespace */ public static final String XADES_1_4_1_NS_URI = "http://uri.etsi.org/01903/v1.4.1#"; + + /** URI of the SAML 2.0 namespace. */ + public static final String SAML2_NS_URI = + "urn:oasis:names:tc:SAML:2.0:assertion"; + + /** Prefix used for the SAML 2.0 XML namespace */ + public static final String SAML2_PREFIX = "saml2"; + + /** Local location of the SAML 2.0 XML schema definition. */ + public static final String SAML2_SCHEMA_LOCATION = + SCHEMA_ROOT + "saml-schema-assertion-2.0.xsd"; + + /** URI of the SAML 2.0 protocol namespace. */ + public static final String SAML2P_NS_URI = + "urn:oasis:names:tc:SAML:2.0:protocol"; + + /** Prefix used for the SAML 2.0 protocol XML namespace */ + public static final String SAML2P_PREFIX = "saml2p"; + + /** Local location of the SAML 2.0 protocol XML schema definition. */ + public static final String SAML2P_SCHEMA_LOCATION = + SCHEMA_ROOT + "saml-schema-protocol-2.0.xsd"; + + /** URI of the STORK namespace. */ + public static final String STORK_NS_URI = + "urn:eu:stork:names:tc:STORK:1.0:assertion"; + + /** Prefix used for the STORK XML namespace */ + public static final String STORK_PREFIX = "stork"; + + /** Local location of the STORK XML schema definition. */ + public static final String STORK_SCHEMA_LOCATION = + SCHEMA_ROOT + "stork-schema-assertion-1.0.xsd"; + + /** URI of the STORK protocol namespace. */ + public static final String STORKP_NS_URI = + "urn:eu:stork:names:tc:STORK:1.0:protocol"; + + /** Prefix used for the STORK protocol XML namespace */ + public static final String STORKP_PREFIX = "storkp"; + + /** Local location of the STORK protocol XML schema definition. */ + public static final String STORKP_SCHEMA_LOCATION = + SCHEMA_ROOT + "stork-schema-protocol-1.0.xsd"; + + /** URI of the XML Encryption namespace. */ + public static final String XENC_NS_URI = + "http://www.w3.org/2001/04/xmlenc#"; + + /** Prefix used for the XML Encryption XML namespace */ + public static final String XENC_PREFIX = "xenc"; + + /** Local location of the XML Encryption XML schema definition. */ + public static final String XENC_SCHEMA_LOCATION = + SCHEMA_ROOT + "xenc-schema.xsd"; /** * Contains all namespaces and local schema locations for XML schema @@ -310,7 +365,12 @@ public interface Constants { + (XADES_1_1_1_NS_URI + " " + XADES_1_1_1_SCHEMA_LOCATION + " ") + (XADES_1_2_2_NS_URI + " " + XADES_1_2_2_SCHEMA_LOCATION + " ") + (XADES_1_3_2_NS_URI + " " + XADES_1_3_2_SCHEMA_LOCATION + " ") - + (XADES_1_4_1_NS_URI + " " + XADES_1_4_1_SCHEMA_LOCATION); + + (XADES_1_4_1_NS_URI + " " + XADES_1_4_1_SCHEMA_LOCATION + " ") + + (SAML2_NS_URI + " " + SAML2_SCHEMA_LOCATION + " ") + + (SAML2P_NS_URI + " " + SAML2P_SCHEMA_LOCATION + " ") + + (STORK_NS_URI + " " + STORK_SCHEMA_LOCATION + " ") + + (STORKP_NS_URI + " " + STORKP_SCHEMA_LOCATION + " ") + + (XENC_NS_URI + " " + XENC_SCHEMA_LOCATION); /** URN prefix for bPK and wbPK. */ public static final String URN_PREFIX = "urn:publicid:gv.at"; diff --git a/common/src/main/java/at/gv/egovernment/moa/util/DateTimeUtils.java b/common/src/main/java/at/gv/egovernment/moa/util/DateTimeUtils.java index d70073db8..8d57f911a 100644 --- a/common/src/main/java/at/gv/egovernment/moa/util/DateTimeUtils.java +++ b/common/src/main/java/at/gv/egovernment/moa/util/DateTimeUtils.java @@ -25,6 +25,7 @@ package at.gv.egovernment.moa.util; import java.io.StringWriter; +import java.text.DateFormat; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Calendar; @@ -32,6 +33,10 @@ import java.util.Date; import java.util.GregorianCalendar; import java.util.TimeZone; +import org.joda.time.DateTime; +import org.joda.time.format.DateTimeFormat; +import org.joda.time.format.DateTimeFormatter; + /** * Utility for parsing and building XML type dateTime, * according to ISO 8601. @@ -396,5 +401,100 @@ public class DateTimeUtils { } } } + + /** + * Calculates the age if date of birth is given (for a calendar time stamp) + * @param dateOfBirth Date of Birth + * @param now Calendar time stamp at which the age needs to be calculated for + * @return Age of a person + */ + public static int calcAge(Calendar dateOfBirth, Calendar now) { + int age = now.get(Calendar.YEAR) - dateOfBirth.get(Calendar.YEAR); + + int nowM = now.get(Calendar.MONTH); + int dobM = dateOfBirth.get(Calendar.MONTH); + int nowDOM = now.get(Calendar.DAY_OF_MONTH); + int dobDOM = dateOfBirth.get(Calendar.DAY_OF_MONTH); + + if ((nowM < dobM) || ((nowM == dobM) && (nowDOM < dobDOM))) { + age--; + } + + if (age < 0) { + throw new IllegalArgumentException("Calculated age results in negative value."); + } + return age; + } + + /** + * Calculates the age if date of birth is given as Calendar object + * @param dateOfBirth Date of Birth as Calendar object + * @return Age of a person + */ + public static int calcAge(Calendar dateOfBirth) { + return calcAge(dateOfBirth, Calendar.getInstance()); + } + + /** + * Calculates the age if date of birth is given (for a date time stamp) + * @param dateOfBirth Date of Birth + * @param now Date time stamp at which the age needs to be calculated for + * @return Age of a person + */ + public static int calcAge(Date dateOfBirth, Date now) { + Calendar dob = Calendar.getInstance(); + dob.setTime(dateOfBirth); + Calendar nowCal = Calendar.getInstance(); + nowCal.setTime(now); + return calcAge(dob, nowCal); + } + + /** + * Calculates the age if date of birth is given as Date object + * @param dateOfBirth Date of Birth as Date object + * @return Age of a person + */ + public static int calcAge(Date dateOfBirth) { + return calcAge(dateOfBirth, new Date()); + } + + public static String formatPEPSDateToMOADate(String pepsDate) { + + if (StringUtils.isEmpty(pepsDate)) { + return null; + } + + DateTimeFormatter fmt = null; + + switch (pepsDate.length()) { + case 4: + fmt = DateTimeFormat.forPattern("yyyy"); + break; + case 6: + fmt = DateTimeFormat.forPattern("yyyyMM"); + break; + case 8: + fmt = DateTimeFormat.forPattern("yyyyMMdd"); + break; + default: + break; + } + + DateTime dt = fmt.parseDateTime(pepsDate); + DateTimeFormatter fmt2 = DateTimeFormat.forPattern("yyyy-MM-dd"); + return fmt2.print(dt); + + } + + /** + * Returns a date as String using a provided format + * @param format Format the date/time should be returned + * @return Date/Time as String formatted according the provided format + */ + public static String getDateTimeWithFormat(String format) { + DateFormat dateFormat = new SimpleDateFormat(format); + Date date = new Date(); + return dateFormat.format(date); + } } diff --git a/common/src/main/java/at/gv/egovernment/moa/util/KeyStoreUtils.java b/common/src/main/java/at/gv/egovernment/moa/util/KeyStoreUtils.java index 78fe8a345..9db3ca6e3 100644 --- a/common/src/main/java/at/gv/egovernment/moa/util/KeyStoreUtils.java +++ b/common/src/main/java/at/gv/egovernment/moa/util/KeyStoreUtils.java @@ -26,14 +26,19 @@ package at.gv.egovernment.moa.util; import iaik.x509.X509Certificate; +import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; +import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.net.URL; import java.security.GeneralSecurityException; import java.security.KeyStore; +import java.security.KeyStoreException; +import java.security.NoSuchAlgorithmException; import java.security.cert.Certificate; +import java.security.cert.CertificateException; /** * Utility for creating and loading key stores. @@ -42,6 +47,18 @@ import java.security.cert.Certificate; * @version $Id$ */ public class KeyStoreUtils { + + /** + * JAVA KeyStore + */ + private static final String KEYSTORE_TYPE_JKS = "JKS"; + + /** + * PKCS12 KeyStore + */ + private static final String KEYSTORE_TYPE_PKCS12 = "PKCS12"; + + /** * Loads a key store from file. @@ -154,5 +171,42 @@ public class KeyStoreUtils { in.close(); return cert; } + + + /** + * Loads a keyStore without knowing the keyStore type + * @param keyStorePath URL to the keyStore + * @param password Password protecting the keyStore + * @return keyStore loaded + * @throws KeyStoreException thrown if keyStore cannot be loaded + * @throws FileNotFoundException + * @throws IOException + */ + public static KeyStore loadKeyStore(String keyStorePath, String password) throws KeyStoreException, IOException{ + + //InputStream is = new FileInputStream(keyStorePath); + URL keystoreURL = new URL(keyStorePath); + InputStream in = keystoreURL.openStream(); + InputStream isBuffered = new BufferedInputStream(in); + + isBuffered.mark(1024*1024); + KeyStore ks = null; + try { + try { + ks = loadKeyStore(KEYSTORE_TYPE_PKCS12, isBuffered, password); + } catch (IOException e2) { + isBuffered.reset(); + ks = loadKeyStore(KEYSTORE_TYPE_JKS, isBuffered, password); + } + } catch(Exception e) { + e.printStackTrace(); + //throw new KeyStoreException(e); + } + return ks; + + } + + + } diff --git a/common/src/main/java/at/gv/egovernment/moa/util/XPathUtils.java b/common/src/main/java/at/gv/egovernment/moa/util/XPathUtils.java index 7a72c0bfb..faa009b0e 100644 --- a/common/src/main/java/at/gv/egovernment/moa/util/XPathUtils.java +++ b/common/src/main/java/at/gv/egovernment/moa/util/XPathUtils.java @@ -82,6 +82,11 @@ public class XPathUtils { ctx.addNamespace(Constants.MVV_PREFIX, Constants.MVV_NS_URI); ctx.addNamespace(Constants.STB_PREFIX, Constants.STB_NS_URI); ctx.addNamespace(Constants.WRR_PREFIX, Constants.WRR_NS_URI); + ctx.addNamespace(Constants.STORK_PREFIX, Constants.STORK_NS_URI); + ctx.addNamespace(Constants.STORKP_PREFIX, Constants.STORKP_NS_URI); + ctx.addNamespace(Constants.SAML2_PREFIX, Constants.SAML2_NS_URI); + ctx.addNamespace(Constants.SAML2P_PREFIX, Constants.SAML2P_NS_URI); + ctx.addNamespace(Constants.XENC_PREFIX, Constants.XENC_NS_URI); NS_CONTEXT = ctx; } diff --git a/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.5.2.xsd b/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.5.2.xsd index f78c3fc1e..c5f751061 100644 --- a/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.5.2.xsd +++ b/common/src/main/resources/resources/schemas/MOA-ID-Configuration-1.5.2.xsd @@ -1,8 +1,10 @@ - + + + @@ -287,6 +289,11 @@ Verbindungsparameter zum SZR-Gateway (GetIdentityLink) + + + Verbindungsparameter zu den Country-PEPS (C-PEPS) + + @@ -458,6 +465,7 @@ + @@ -657,4 +665,90 @@ + + + Enthält Informationen zu einem KeyStore bzw. Key zur STORK SAML AuthnRequest Signaturerstellung + + + + + + + + + Enthält Informationen zur Verfikation von Signaturen einer STORK SAML Response + + + + + + + + + Enthält Informationen zur Erstellung und Verifikation von STORK SAML Messages + + + + + + + + + + + + URL zu einem KeyStore, der den privaten Schlüssel zum Erstellen einer Signatur enthält + + + + + + + + + + + + Name zum Key eines KeyStores, der den privaten Schlüssel zum Erstellen einer Signatur darstellt + + + + + + + + + + + + + Enthält Informationen zu einem Citizen Country PEPS (C-PEPS) + + + + + + + + + + + + + Contains STORK related information + + + + + + + + + + + + + + + diff --git a/common/src/main/resources/resources/schemas/MOA-SPSS-config-1.5.2.xsd b/common/src/main/resources/resources/schemas/MOA-SPSS-config-1.5.2.xsd index 9fdaac33e..98659557c 100644 --- a/common/src/main/resources/resources/schemas/MOA-SPSS-config-1.5.2.xsd +++ b/common/src/main/resources/resources/schemas/MOA-SPSS-config-1.5.2.xsd @@ -163,6 +163,7 @@ + diff --git a/common/src/main/resources/resources/schemas/saml-schema-assertion-2.0.xsd b/common/src/main/resources/resources/schemas/saml-schema-assertion-2.0.xsd new file mode 100644 index 000000000..91706a8f5 --- /dev/null +++ b/common/src/main/resources/resources/schemas/saml-schema-assertion-2.0.xsd @@ -0,0 +1,290 @@ + + + + + + + + + Document identifier: saml-schema-assertion-2.0 + Location: http://docs.oasis-open.org/security/saml/v2.0/ + Revision history: + V1.0 (November, 2002): + Initial Standard Schema. + V1.1 (September, 2003): + Updates within the same V1.0 namespace. + V2.0 (March, 2005): + New assertion schema for SAML V2.0 namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/src/main/resources/resources/schemas/saml-schema-metadata-2.0.xsd b/common/src/main/resources/resources/schemas/saml-schema-metadata-2.0.xsd new file mode 100644 index 000000000..0d158c0ba --- /dev/null +++ b/common/src/main/resources/resources/schemas/saml-schema-metadata-2.0.xsd @@ -0,0 +1,337 @@ + + + + + + + + + Document identifier: saml-schema-metadata-2.0 + Location: http://docs.oasis-open.org/security/saml/v2.0/ + Revision history: + V2.0 (March, 2005): + Schema for SAML metadata, first published in SAML 2.0. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/src/main/resources/resources/schemas/saml-schema-protocol-2.0.xsd b/common/src/main/resources/resources/schemas/saml-schema-protocol-2.0.xsd new file mode 100644 index 000000000..768241056 --- /dev/null +++ b/common/src/main/resources/resources/schemas/saml-schema-protocol-2.0.xsd @@ -0,0 +1,306 @@ + + + + + + + + Document identifier: saml-schema-protocol-2.0 + Location: http://docs.oasis-open.org/security/saml/v2.0/ + Revision history: + V1.0 (November, 2002): + Initial Standard Schema. + V1.1 (September, 2003): + Updates within the same V1.0 namespace. + V2.0 (March, 2005): + New protocol schema based in a SAML V2.0 namespace. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/src/main/resources/resources/schemas/stork-schema-assertion-1.0.xsd b/common/src/main/resources/resources/schemas/stork-schema-assertion-1.0.xsd new file mode 100644 index 000000000..ecb001f68 --- /dev/null +++ b/common/src/main/resources/resources/schemas/stork-schema-assertion-1.0.xsd @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/src/main/resources/resources/schemas/stork-schema-protocol-1.0.xsd b/common/src/main/resources/resources/schemas/stork-schema-protocol-1.0.xsd new file mode 100644 index 000000000..a8efa533c --- /dev/null +++ b/common/src/main/resources/resources/schemas/stork-schema-protocol-1.0.xsd @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/common/src/main/resources/resources/schemas/xenc-schema.xsd b/common/src/main/resources/resources/schemas/xenc-schema.xsd new file mode 100644 index 000000000..d4519cd7a --- /dev/null +++ b/common/src/main/resources/resources/schemas/xenc-schema.xsd @@ -0,0 +1,150 @@ + + + + + + ]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/id/oa/.settings/org.eclipse.jdt.core.prefs b/id/oa/.settings/org.eclipse.jdt.core.prefs index fe7479929..6d046587d 100644 --- a/id/oa/.settings/org.eclipse.jdt.core.prefs +++ b/id/oa/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,7 @@ -#Tue Jul 07 16:07:19 CEST 2009 eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.2 -org.eclipse.jdt.core.compiler.compliance=1.4 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning -org.eclipse.jdt.core.compiler.source=1.3 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning +org.eclipse.jdt.core.compiler.source=1.5 diff --git a/id/oa/.settings/org.eclipse.wst.common.component b/id/oa/.settings/org.eclipse.wst.common.component index 3bc38ebcc..7e38d20b7 100644 --- a/id/oa/.settings/org.eclipse.wst.common.component +++ b/id/oa/.settings/org.eclipse.wst.common.component @@ -1,8 +1,8 @@ - + - + \ No newline at end of file diff --git a/id/oa/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/oa/.settings/org.eclipse.wst.common.project.facet.core.xml index f30a1de6e..a801c94a0 100644 --- a/id/oa/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/id/oa/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,5 +1,7 @@ + + + - - + \ No newline at end of file diff --git a/id/templates/.classpath b/id/templates/.classpath index df4174ed6..ca3d70965 100644 --- a/id/templates/.classpath +++ b/id/templates/.classpath @@ -1,12 +1,5 @@ - - - - - - - - - - + + + \ No newline at end of file diff --git a/id/templates/.project b/id/templates/.project index 583a2a0e7..b96a8a898 100644 --- a/id/templates/.project +++ b/id/templates/.project @@ -1,37 +1,32 @@ - moa-id-templates - - - - - - org.eclipse.wst.common.project.facet.core.builder - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.wst.validation.validationbuilder - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.eclipse.jem.workbench.JavaEMFNature - org.eclipse.wst.common.modulecore.ModuleCoreNature - org.maven.ide.eclipse.maven2Nature - org.eclipse.jdt.core.javanature - org.eclipse.wst.common.project.facet.core.nature - org.eclipse.wst.jsdt.core.jsNature - - + moa-id-templates + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + + + org.eclipse.wst.common.project.facet.core.builder + + + org.eclipse.jdt.core.javabuilder + + + org.eclipse.wst.validation.validationbuilder + + + org.maven.ide.eclipse.maven2Builder + + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.maven.ide.eclipse.maven2Nature + org.eclipse.jdt.core.javanature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.jsdt.core.jsNature + + \ No newline at end of file diff --git a/id/templates/.settings/org.eclipse.jdt.core.prefs b/id/templates/.settings/org.eclipse.jdt.core.prefs index f5e17a86f..a519d2f62 100644 --- a/id/templates/.settings/org.eclipse.jdt.core.prefs +++ b/id/templates/.settings/org.eclipse.jdt.core.prefs @@ -1,5 +1,5 @@ -#Mon Aug 17 10:06:12 CEST 2009 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 org.eclipse.jdt.core.compiler.compliance=1.4 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.4 diff --git a/id/templates/.settings/org.eclipse.wst.common.component b/id/templates/.settings/org.eclipse.wst.common.component index 1e8a98df8..0d2cb24b4 100644 --- a/id/templates/.settings/org.eclipse.wst.common.component +++ b/id/templates/.settings/org.eclipse.wst.common.component @@ -1,8 +1,8 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/id/templates/.settings/org.eclipse.wst.common.project.facet.core.xml b/id/templates/.settings/org.eclipse.wst.common.project.facet.core.xml index f30a1de6e..a801c94a0 100644 --- a/id/templates/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/id/templates/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,5 +1,7 @@ + + + - - + \ No newline at end of file diff --git a/repository/xalan-bin-dist/serializer/2.10.0/m2e-lastUpdated.properties b/repository/xalan-bin-dist/serializer/2.10.0/m2e-lastUpdated.properties new file mode 100644 index 000000000..b69b271e4 --- /dev/null +++ b/repository/xalan-bin-dist/serializer/2.10.0/m2e-lastUpdated.properties @@ -0,0 +1,7 @@ +#Tue Jun 19 09:58:36 CEST 2012 +MOA|file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\auth/../../../repository|sources=1340092716399 +MOA|file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\idserverlib/../../../repository|sources=1340024044492 +central|b.zwattendorfer|https\://vidp.openlimit.com\:8120/artifactory/libs-release|sources=1340024044492 +snapshots|b.zwattendorfer|https\://vidp.openlimit.com\:8120/artifactory/libs-snapshot|sources=1340024044492 +MOA|file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\stork-saml-engine/../../repository|sources=1339605327157 +central|http\://repo1.maven.org/maven2|sources=1340092716399 diff --git a/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0-sources.jar.lastUpdated b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0-sources.jar.lastUpdated new file mode 100644 index 000000000..450824e7b --- /dev/null +++ b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0-sources.jar.lastUpdated @@ -0,0 +1,8 @@ +#Last modified on: Tue Jun 19 09:58:36 CEST 2012 +#Tue Jun 19 09:58:36 CEST 2012 +file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\auth/../../../repository=1340092716254 +file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\idserverlib/../../../repository=1340024044491 +file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\stork-saml-engine/../../repository=1339605327080 +-1137991424@https\://vidp.openlimit.com\:8120/artifactory/libs-snapshot=1340024044486 +-1137991424@https\://vidp.openlimit.com\:8120/artifactory/libs-release=1340024043644 +http\://repo1.maven.org/maven2=1340092716398 diff --git a/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar new file mode 100644 index 000000000..de9b007b4 Binary files /dev/null and b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar differ diff --git a/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar.sha1 b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar.sha1 new file mode 100644 index 000000000..83c03b250 --- /dev/null +++ b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.jar.sha1 @@ -0,0 +1 @@ +c8e1f1e7bf871280375b392776340e5822126e6a \ No newline at end of file diff --git a/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom new file mode 100644 index 000000000..b27157fcd --- /dev/null +++ b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + org.apache.xerces + serializer + 2.10.0 + POM was created from install:install-file + diff --git a/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom.sha1 b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom.sha1 new file mode 100644 index 000000000..36533c270 --- /dev/null +++ b/repository/xalan-bin-dist/serializer/2.10.0/serializer-2.10.0.pom.sha1 @@ -0,0 +1 @@ +740a24f0675aad31c8aa6eca1b6c9b8a686fba36 \ No newline at end of file diff --git a/repository/xalan-bin-dist/xalan/2.7.1/m2e-lastUpdated.properties b/repository/xalan-bin-dist/xalan/2.7.1/m2e-lastUpdated.properties new file mode 100644 index 000000000..0ea14c71d --- /dev/null +++ b/repository/xalan-bin-dist/xalan/2.7.1/m2e-lastUpdated.properties @@ -0,0 +1,3 @@ +#Wed Jun 13 15:54:07 CEST 2012 +MOA|file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\idserverlib/../../../repository|sources=1339595647617 +central|http\://repo1.maven.org/maven2|sources=1339595647617 diff --git a/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar new file mode 100644 index 000000000..60cd21036 Binary files /dev/null and b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar differ diff --git a/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar.sha1 b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar.sha1 new file mode 100644 index 000000000..a15b7c34e --- /dev/null +++ b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1-sources.jar.sha1 @@ -0,0 +1 @@ +b1f9b407f3593c99ae2b137bb0733761fcee6595 diff --git a/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.jar b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.jar new file mode 100644 index 000000000..458fa73d9 Binary files /dev/null and b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.jar differ diff --git a/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom new file mode 100644 index 000000000..b4a56e9a1 --- /dev/null +++ b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom @@ -0,0 +1,41 @@ + + + + 4.0.0 + + org.apache + apache + 4 + + + xalan + xalan + 2.7.1 + + Xalan Java + + Xalan-Java is an XSLT processor for transforming XML documents into HTML, + text, or other XML document types. It implements XSL Transformations (XSLT) + Version 1.0 and XML Path Language (XPath) Version 1.0 and can be used from + the command line, in an applet or a servlet, or as a module in other program. + + http://xml.apache.org/xalan-j/ + + + + xalan + serializer + 2.7.1 + + + xerces + xercesImpl + 2.9.0 + true + + + + \ No newline at end of file diff --git a/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom.sha1 b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom.sha1 new file mode 100644 index 000000000..a000a7e73 --- /dev/null +++ b/repository/xalan-bin-dist/xalan/2.7.1/xalan-2.7.1.pom.sha1 @@ -0,0 +1 @@ +325325b70fd1ad761567c9e352097b95faf1716d \ No newline at end of file diff --git a/repository/xalan-bin-dist/xml-apis/2.10.0/m2e-lastUpdated.properties b/repository/xalan-bin-dist/xml-apis/2.10.0/m2e-lastUpdated.properties new file mode 100644 index 000000000..2c120b370 --- /dev/null +++ b/repository/xalan-bin-dist/xml-apis/2.10.0/m2e-lastUpdated.properties @@ -0,0 +1,7 @@ +#Tue Jun 19 09:58:36 CEST 2012 +MOA|file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\auth/../../../repository|sources=1340092716085 +MOA|file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\idserverlib/../../../repository|sources=1340024039342 +central|b.zwattendorfer|https\://vidp.openlimit.com\:8120/artifactory/libs-release|sources=1340024039342 +snapshots|b.zwattendorfer|https\://vidp.openlimit.com\:8120/artifactory/libs-snapshot|sources=1340024039342 +MOA|file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\stork-saml-engine/../../repository|sources=1339605326604 +central|http\://repo1.maven.org/maven2|sources=1340092716085 diff --git a/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0-sources.jar.lastUpdated b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0-sources.jar.lastUpdated new file mode 100644 index 000000000..04fd7a1ab --- /dev/null +++ b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0-sources.jar.lastUpdated @@ -0,0 +1,8 @@ +#Last modified on: Tue Jun 19 09:58:36 CEST 2012 +#Tue Jun 19 09:58:36 CEST 2012 +file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\auth/../../../repository=1340092715933 +file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\idserverlib/../../../repository=1340024039340 +file\://E\:\\workspace_moa_stork_integration\\moa-idspss\\id\\server\\stork-saml-engine/../../repository=1339605326450 +-1137991424@https\://vidp.openlimit.com\:8120/artifactory/libs-snapshot=1340024039336 +-1137991424@https\://vidp.openlimit.com\:8120/artifactory/libs-release=1340024037229 +http\://repo1.maven.org/maven2=1340092716084 diff --git a/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar new file mode 100644 index 000000000..46733464f Binary files /dev/null and b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar differ diff --git a/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar.sha1 b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar.sha1 new file mode 100644 index 000000000..e4bedef85 --- /dev/null +++ b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.jar.sha1 @@ -0,0 +1 @@ +3789d9fada2d3d458c4ba2de349d48780f381ee3 \ No newline at end of file diff --git a/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom new file mode 100644 index 000000000..e597b8283 --- /dev/null +++ b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom @@ -0,0 +1,9 @@ + + + 4.0.0 + org.apache.xerces + xml-apis + 2.10.0 + POM was created from install:install-file + diff --git a/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom.sha1 b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom.sha1 new file mode 100644 index 000000000..6d5b7fe6c --- /dev/null +++ b/repository/xalan-bin-dist/xml-apis/2.10.0/xml-apis-2.10.0.pom.sha1 @@ -0,0 +1 @@ +8b8ff285e31379295d2869a8ec7579e032bc3926 \ No newline at end of file diff --git a/spss/handbook/clients/api/.classpath b/spss/handbook/clients/api/.classpath index 0bf65323c..f2f80cedf 100644 --- a/spss/handbook/clients/api/.classpath +++ b/spss/handbook/clients/api/.classpath @@ -1,7 +1,36 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spss/handbook/clients/api/.project b/spss/handbook/clients/api/.project index ec6e1354b..817fcd7b2 100644 --- a/spss/handbook/clients/api/.project +++ b/spss/handbook/clients/api/.project @@ -1,29 +1,34 @@ - moa-spss-handbook-apiClient - - - - - - org.eclipse.wst.common.project.facet.core.builder - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.eclipse.jdt.core.javanature - org.maven.ide.eclipse.maven2Nature - org.eclipse.wst.common.project.facet.core.nature - - + moa-spss-handbook-apiClient + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + moa-common + moa-spss-lib + + + + org.eclipse.jdt.core.javabuilder + + + org.eclipse.wst.common.project.facet.core.builder + + + org.eclipse.wst.validation.validationbuilder + + + org.maven.ide.eclipse.maven2Builder + + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature + org.maven.ide.eclipse.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.jdt.core.javanature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jem.workbench.JavaEMFNature + + \ No newline at end of file diff --git a/spss/handbook/clients/api/.settings/org.eclipse.jdt.core.prefs b/spss/handbook/clients/api/.settings/org.eclipse.jdt.core.prefs index 99e7590e6..a519d2f62 100644 --- a/spss/handbook/clients/api/.settings/org.eclipse.jdt.core.prefs +++ b/spss/handbook/clients/api/.settings/org.eclipse.jdt.core.prefs @@ -1,5 +1,5 @@ -#Tue Jul 07 16:07:23 CEST 2009 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 org.eclipse.jdt.core.compiler.compliance=1.4 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.4 diff --git a/spss/handbook/clients/referencedData/.classpath b/spss/handbook/clients/referencedData/.classpath index df4174ed6..ca3d70965 100644 --- a/spss/handbook/clients/referencedData/.classpath +++ b/spss/handbook/clients/referencedData/.classpath @@ -1,12 +1,5 @@ - - - - - - - - - - + + + \ No newline at end of file diff --git a/spss/handbook/clients/referencedData/.project b/spss/handbook/clients/referencedData/.project index 23699368d..3d724d6bd 100644 --- a/spss/handbook/clients/referencedData/.project +++ b/spss/handbook/clients/referencedData/.project @@ -1,37 +1,35 @@ - moa-spss-handbook-referencedData - - - - - - org.eclipse.wst.common.project.facet.core.builder - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.wst.validation.validationbuilder - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.eclipse.jem.workbench.JavaEMFNature - org.eclipse.wst.common.modulecore.ModuleCoreNature - org.eclipse.jdt.core.javanature - org.maven.ide.eclipse.maven2Nature - org.eclipse.wst.common.project.facet.core.nature - org.eclipse.wst.jsdt.core.jsNature - - + moa-spss-handbook-referencedData + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + + + org.eclipse.wst.jsdt.core.javascriptValidator + + + org.eclipse.jdt.core.javabuilder + + + org.eclipse.wst.common.project.facet.core.builder + + + org.eclipse.wst.validation.validationbuilder + + + org.maven.ide.eclipse.maven2Builder + + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature + org.maven.ide.eclipse.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.jdt.core.javanature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.jsdt.core.jsNature + + \ No newline at end of file diff --git a/spss/handbook/clients/referencedData/.settings/org.eclipse.jdt.core.prefs b/spss/handbook/clients/referencedData/.settings/org.eclipse.jdt.core.prefs index 573b253b9..a519d2f62 100644 --- a/spss/handbook/clients/referencedData/.settings/org.eclipse.jdt.core.prefs +++ b/spss/handbook/clients/referencedData/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,5 @@ -#Mon Aug 17 10:06:17 CEST 2009 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 org.eclipse.jdt.core.compiler.compliance=1.4 -org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning -org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.4 diff --git a/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.component b/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.component index ea8402b5f..0929e364c 100644 --- a/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.component +++ b/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.component @@ -1,8 +1,8 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.project.facet.core.xml b/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.project.facet.core.xml index f30a1de6e..a801c94a0 100644 --- a/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/spss/handbook/clients/referencedData/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,5 +1,7 @@ + + + - - + \ No newline at end of file diff --git a/spss/handbook/clients/webservice/.classpath b/spss/handbook/clients/webservice/.classpath index f8507ad87..f2f80cedf 100644 --- a/spss/handbook/clients/webservice/.classpath +++ b/spss/handbook/clients/webservice/.classpath @@ -1,8 +1,36 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spss/handbook/clients/webservice/.project b/spss/handbook/clients/webservice/.project index 80c55d9cc..d23223048 100644 --- a/spss/handbook/clients/webservice/.project +++ b/spss/handbook/clients/webservice/.project @@ -1,30 +1,34 @@ - moa-spss-handbook-webserviceClient - - - - - - org.eclipse.wst.common.project.facet.core.builder - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.eclipse.jdt.core.javanature - org.maven.ide.eclipse.maven2Nature - org.eclipse.wst.common.project.facet.core.nature - - - + moa-spss-handbook-webserviceClient + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + moa-common + moa-spss-lib + + + + org.eclipse.jdt.core.javabuilder + + + org.eclipse.wst.common.project.facet.core.builder + + + org.eclipse.wst.validation.validationbuilder + + + org.maven.ide.eclipse.maven2Builder + + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature + org.maven.ide.eclipse.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.jdt.core.javanature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jem.workbench.JavaEMFNature + + \ No newline at end of file diff --git a/spss/handbook/clients/webservice/.settings/org.eclipse.jdt.core.prefs b/spss/handbook/clients/webservice/.settings/org.eclipse.jdt.core.prefs index dee421f20..a519d2f62 100644 --- a/spss/handbook/clients/webservice/.settings/org.eclipse.jdt.core.prefs +++ b/spss/handbook/clients/webservice/.settings/org.eclipse.jdt.core.prefs @@ -1,5 +1,5 @@ -#Wed Nov 07 07:57:10 GMT 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 org.eclipse.jdt.core.compiler.compliance=1.4 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.4 diff --git a/spss/server/serverlib/.settings/org.eclipse.jdt.core.prefs b/spss/server/serverlib/.settings/org.eclipse.jdt.core.prefs index c7b8a7c31..4f0fe7d5d 100644 --- a/spss/server/serverlib/.settings/org.eclipse.jdt.core.prefs +++ b/spss/server/serverlib/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,7 @@ -#Wed Oct 10 21:50:15 CEST 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 org.eclipse.jdt.core.compiler.compliance=1.4 org.eclipse.jdt.core.compiler.problem.assertIdentifier=warning org.eclipse.jdt.core.compiler.problem.enumIdentifier=warning +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.4 diff --git a/spss/server/serverlib/.settings/org.eclipse.wst.common.component b/spss/server/serverlib/.settings/org.eclipse.wst.common.component index e4ceae723..2ae51a94e 100644 --- a/spss/server/serverlib/.settings/org.eclipse.wst.common.component +++ b/spss/server/serverlib/.settings/org.eclipse.wst.common.component @@ -1,7 +1,7 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/spss/server/serverlib/.settings/org.eclipse.wst.common.project.facet.core.xml b/spss/server/serverlib/.settings/org.eclipse.wst.common.project.facet.core.xml index 30c02fe23..eb7de6322 100644 --- a/spss/server/serverlib/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/spss/server/serverlib/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -2,6 +2,6 @@ - - + + \ No newline at end of file diff --git a/spss/server/serverws/.classpath b/spss/server/serverws/.classpath index 5a3431559..12404903e 100644 --- a/spss/server/serverws/.classpath +++ b/spss/server/serverws/.classpath @@ -1,13 +1,33 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/spss/server/serverws/.project b/spss/server/serverws/.project index c7e484cc8..2c2ea723a 100644 --- a/spss/server/serverws/.project +++ b/spss/server/serverws/.project @@ -1,39 +1,35 @@ - moa-spss-ws - - - moa-common - moa-spss-lib - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.wst.common.project.facet.core.builder - - - - - org.eclipse.wst.validation.validationbuilder - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.eclipse.jdt.core.javanature - org.maven.ide.eclipse.maven2Nature - org.eclipse.wst.common.project.facet.core.nature - org.eclipse.wst.common.modulecore.ModuleCoreNature - org.eclipse.jem.workbench.JavaEMFNature - org.eclipse.wst.jsdt.core.jsNature - - + moa-spss-ws + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + moa-spss-lib + moa-common + + + + org.eclipse.jdt.core.javabuilder + + + org.eclipse.wst.common.project.facet.core.builder + + + org.eclipse.wst.validation.validationbuilder + + + org.maven.ide.eclipse.maven2Builder + + + org.eclipse.m2e.core.maven2Builder + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.jdt.core.javanature + org.maven.ide.eclipse.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jem.workbench.JavaEMFNature + org.eclipse.wst.jsdt.core.jsNature + + \ No newline at end of file diff --git a/spss/server/serverws/.settings/org.eclipse.jdt.core.prefs b/spss/server/serverws/.settings/org.eclipse.jdt.core.prefs index 920508ded..7e3b7e969 100644 --- a/spss/server/serverws/.settings/org.eclipse.jdt.core.prefs +++ b/spss/server/serverws/.settings/org.eclipse.jdt.core.prefs @@ -1,7 +1,7 @@ -#Mon Sep 03 15:53:43 CEST 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 org.eclipse.jdt.core.compiler.compliance=1.4 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.4 diff --git a/spss/server/serverws/.settings/org.eclipse.wst.common.component b/spss/server/serverws/.settings/org.eclipse.wst.common.component index c83fdc828..bdea3d713 100644 --- a/spss/server/serverws/.settings/org.eclipse.wst.common.component +++ b/spss/server/serverws/.settings/org.eclipse.wst.common.component @@ -1,14 +1,64 @@ - - - - - uses - - - uses - - - - - + + + + + + + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + uses + + + \ No newline at end of file diff --git a/spss/server/serverws/.settings/org.eclipse.wst.common.project.facet.core.xml b/spss/server/serverws/.settings/org.eclipse.wst.common.project.facet.core.xml index f30a1de6e..a801c94a0 100644 --- a/spss/server/serverws/.settings/org.eclipse.wst.common.project.facet.core.xml +++ b/spss/server/serverws/.settings/org.eclipse.wst.common.project.facet.core.xml @@ -1,5 +1,7 @@ + + + - - + \ No newline at end of file diff --git a/spss/server/tools/.classpath b/spss/server/tools/.classpath index ad36587e9..a1e61492a 100644 --- a/spss/server/tools/.classpath +++ b/spss/server/tools/.classpath @@ -1,8 +1,14 @@ - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/spss/server/tools/.project b/spss/server/tools/.project index 4e931b799..4717496ab 100644 --- a/spss/server/tools/.project +++ b/spss/server/tools/.project @@ -1,29 +1,31 @@ - moa-spss-tools - - - - - - org.eclipse.wst.common.project.facet.core.builder - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.maven.ide.eclipse.maven2Builder - - - - - - org.eclipse.jdt.core.javanature - org.maven.ide.eclipse.maven2Nature - org.eclipse.wst.common.project.facet.core.nature - - + moa-spss-tools + NO_M2ECLIPSE_SUPPORT: Project files created with the maven-eclipse-plugin are not supported in M2Eclipse. + + + + org.eclipse.wst.common.project.facet.core.builder + + + org.eclipse.jdt.core.javabuilder + + + org.maven.ide.eclipse.maven2Builder + + + org.eclipse.m2e.core.maven2Builder + + + org.eclipse.wst.validation.validationbuilder + + + + org.eclipse.m2e.core.maven2Nature + org.eclipse.jdt.core.javanature + org.maven.ide.eclipse.maven2Nature + org.eclipse.wst.common.project.facet.core.nature + org.eclipse.wst.common.modulecore.ModuleCoreNature + org.eclipse.jem.workbench.JavaEMFNature + + \ No newline at end of file diff --git a/spss/server/tools/.settings/org.eclipse.jdt.core.prefs b/spss/server/tools/.settings/org.eclipse.jdt.core.prefs index cc6503a3c..a519d2f62 100644 --- a/spss/server/tools/.settings/org.eclipse.jdt.core.prefs +++ b/spss/server/tools/.settings/org.eclipse.jdt.core.prefs @@ -1,5 +1,5 @@ -#Wed Sep 12 09:45:48 CEST 2007 eclipse.preferences.version=1 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.4 org.eclipse.jdt.core.compiler.compliance=1.4 +org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning org.eclipse.jdt.core.compiler.source=1.4 -- cgit v1.2.3