diff options
| author | mcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-08-17 08:47:35 +0000 | 
|---|---|---|
| committer | mcentner <mcentner@d688527b-c9ab-4aba-bd8d-4036d912da1d> | 2007-08-17 08:47:35 +0000 | 
| commit | 9b787d3409e629f292a98d0b5a0aad036b7421c7 (patch) | |
| tree | f9915040890507c0dfd88764498b0aa9a2826277 /spss/server/serverlib/src/main | |
| parent | 48cf31cc2e5b08f3d029d60b97cf88002e915bdc (diff) | |
| download | moa-id-spss-9b787d3409e629f292a98d0b5a0aad036b7421c7.tar.gz moa-id-spss-9b787d3409e629f292a98d0b5a0aad036b7421c7.tar.bz2 moa-id-spss-9b787d3409e629f292a98d0b5a0aad036b7421c7.zip | |
Improved and updated maven build process.
git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/trunk@919 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss/server/serverlib/src/main')
| -rw-r--r-- | spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/CertTool.java | 242 | ||||
| -rw-r--r-- | spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/ConfigTool.java | 59 | ||||
| -rw-r--r-- | spss/server/serverlib/src/main/javadoc/overview.html (renamed from spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/overview.htm) | 0 | 
3 files changed, 0 insertions, 301 deletions
| diff --git a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/CertTool.java b/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/CertTool.java deleted file mode 100644 index 9fe17eae2..000000000 --- a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/CertTool.java +++ /dev/null @@ -1,242 +0,0 @@ -package at.gv.egovernment.moa.spss.server.tools; - -import java.io.BufferedInputStream; -import java.io.FileInputStream; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.io.InputStream; -import java.io.PrintStream; -import java.security.cert.CertificateException; - -import iaik.asn1.structures.Name; -import iaik.pki.store.certstore.CertStoreException; -import iaik.pki.store.certstore.CertStoreTypes; -import iaik.pki.store.certstore.directory.DirectoryCertStore; -import iaik.pki.store.certstore.directory.DirectoryCertStoreParameters; -import iaik.pki.store.certstore.directory.DirectoryStoreException; -import iaik.security.ecc.provider.ECCProvider; -import iaik.security.provider.IAIK; -import iaik.utils.RFC2253NameParserException; -import iaik.x509.X509Certificate; - -/** - * A tool to support X509 certificate handling for configuring the MOA SP/SS  - * service. - *  - * This class provides functions for: - * <ul> - * <li>printing certificate information</li> - * <li>adding certificates to the cert store</li> - * </ul>  - *  - * @author Patrick Peck - * @version $Id$ - */ -public class CertTool { - -  /** Error message if the DN cannot be parsed according to RFC2253. */ -  private static final String ILLEGAL_RFC2253_NAME = -    "Kein gültiger RFC2253-Name"; - -  /** -   * Main entry point of the tool. -   *  -   * @param args The command line arguments. A single argument is expected, -   * which is the file name of the X509 certificate to inspect. -   */ -  public static void main(String args[]) { -    CertTool certTool = new CertTool(); - -    if (args.length == 2 && "-info".equals(args[0])) { -      initProviders(); -      certTool.printCertInfo(args[1], System.out); -    } else if (args.length == 3 && "-add".equals(args[0])) { -      initProviders(); -      certTool.addCertToCertStore(args[1], args[2]); -    } else { -      certTool.printUsage(System.err); -    } -  } -   -  /** -   * Init the JCE providers, depending on the JDK used. -   *  -   * Adds the IAIK JCE and IAIK ECC providers. -   */ -  private static void initProviders() { -    if (System.getProperty("java.version").startsWith("1.3")) { -      IAIK.addAsProvider(); -    } else { -      IAIK.addAsJDK14Provider(); -    } -    ECCProvider.addAsProvider(); -  } - -  /** -   * Print the information about the certificate. -   *  -   * This method will output information about the Subject DN, the Issuer DN and -   * the serial number of the certificate. -   *  -   * @param certFile The name of the certificate file to inspect. -   * @param out The stream to print the information to. -   */ -  public void printCertInfo(String certFile, PrintStream out) { -    try { -      InputStream is = new BufferedInputStream(new FileInputStream(certFile)); -      X509Certificate cert = new X509Certificate(is); -      String issuerDN; -      String serial; -      String subjectDN; - -      try { -        subjectDN = ((Name) (cert.getSubjectDN())).getRFC2253String(); -      } catch (RFC2253NameParserException e) { -        subjectDN = ILLEGAL_RFC2253_NAME; -      } - -      try { -        issuerDN = ((Name) (cert.getIssuerDN())).getRFC2253String(); -      } catch (RFC2253NameParserException e) { -        issuerDN = ILLEGAL_RFC2253_NAME; -      } - -      serial = cert.getSerialNumber().toString(); - -      out.println("SubjectDN (RFC2253): " + subjectDN); -      out.println("IssuerDN (RFC2253) : " + issuerDN); -      out.println("Serial Number      : " + serial); -    } catch (FileNotFoundException e) { -      System.err.println("Zertifikat nicht gefunden: " + certFile); -    } catch (IOException e) { -      System.err.println( -        "I/O Fehler beim Lesen des Zertifikats: " + e.getMessage()); -    } catch (CertificateException e) { -      System.err.println( -        "Fehler beim Lesen des Zertifikats: " + e.getMessage()); -    } catch (Throwable t) { -      System.err.println("Allgemeiner Fehler: " + t.getMessage()); -    } -  } - -  /** -   * Add a certificate to a directory certificate store. -   *  -   * @param certFile The certificate to add. -   * @param certStoreRoot The root directory of the certificate store. -   */ -  public void addCertToCertStore(String certFile, String certStoreRoot) { -    try { -      // read the certificate -      InputStream is = new BufferedInputStream(new FileInputStream(certFile)); -      X509Certificate cert = new X509Certificate(is); - -      // initialize the DirectoryCertStore -      DirectoryCertStore certStore = -        new DirectoryCertStore( -          new SimpleDirectoryCertStoreParameters(certStoreRoot), -          null); -       -      certStore.storeCertificate(cert, null); -       -      System.out.println("\nDas Zertifikat wurde erfolreich hinzugefügt.\n"); - -    } catch (FileNotFoundException e) { -      System.err.println("Zertifikat nicht gefunden: " + certFile); -    } catch (IOException e) { -      System.err.println( -        "I/O Fehler beim Lesen des Zertifikats: " + e.getMessage()); -    } catch (CertificateException e) { -      System.err.println( -        "Fehler beim Lesen des Zertifikats: " + e.getMessage()); -    } catch (DirectoryStoreException e) { -      System.err.println( -        "Fehler beim Öffnen des Zertifikatsspeichers: " + e.getMessage()); -    } catch (CertStoreException e) { -      System.err.println( -        "Fehler beim Hinzufügen des Zertifikats: " + e.getMessage()); -    } catch (Throwable t) { -      System.err.println("Allgemeiner Fehler: " + t.getMessage()); -      t.printStackTrace(); -    } -  } - -  /** -   * Print tool usage. -   *  -   * @param out The <code>PrintStream</code> to print to. -   */ -  private void printUsage(PrintStream out) { -    out.println("\nCerttool-Syntax:\n"); -    out.println("-info <X509 Zertifikatsdatei"); -    out.println(); -    out.println("-add  <X509 Zertifikatsdatei> <Zertifikatsspeicher>"); -    out.println("\n"); -  } - -} - -/** - * Simple implementation of the <code>DirectoryCertStoreParameters</code> - * interface intelligent enough for setting up a simple - * <code>DirectoryCertStore</code> in the <code>CertTool</code>. - *  - * @author Patrick Peck - * @version $Id$ - */ -class SimpleDirectoryCertStoreParameters -  implements DirectoryCertStoreParameters { - -  /** The cert store root directory. */ -  private String rootDirectory; - -  /** -   * Create a new <code>SimpleDirectoryCertStoreParameters</code> object. -   *  -   * @param rootDirectory The root directory of the cert store. -   */ -  public SimpleDirectoryCertStoreParameters(String rootDirectory) { -    this.rootDirectory = rootDirectory; -  } - -  /** -   * @return <code>"MOA Directory CertStore"</code> -   * @see iaik.pki.store.certstore.CertStoreParameters#getId() -   */ -  public String getId() { -    return "MOA Directory CertStore"; -  } - -  /** -   * @return CertStoreTypes.DIRECTORY -   * @see iaik.pki.store.certstore.CertStoreParameters#getType() -   */   -  public String getType() { -    return CertStoreTypes.DIRECTORY; -  } - -  /** -   * @return <code>false</code> -   * @see iaik.pki.store.certstore.CertStoreParameters#isReadOnly() -   */ -  public boolean isReadOnly() { -    return false; -  } - -  /** -   * @return <code>false</code> -   * @see iaik.pki.store.certstore.directory.DirectoryCertStoreParameters#createNew() -   */ -  public boolean createNew() { -    return false; -  } - -  /** -   * @return The root directory given at construction time. -   * @see iaik.pki.store.certstore.directory.DirectoryCertStoreParameters#getRootDirectory() -   */ -  public String getRootDirectory() { -    return rootDirectory; -  } - -}
\ No newline at end of file diff --git a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/ConfigTool.java b/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/ConfigTool.java deleted file mode 100644 index d5c3b48c1..000000000 --- a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/server/tools/ConfigTool.java +++ /dev/null @@ -1,59 +0,0 @@ -package at.gv.egovernment.moa.spss.server.tools; - -import java.io.FileNotFoundException; -import java.io.FileOutputStream; - -import javax.xml.transform.Transformer; -import javax.xml.transform.TransformerConfigurationException; -import javax.xml.transform.TransformerException; -import javax.xml.transform.TransformerFactory; -import javax.xml.transform.stream.StreamResult; -import javax.xml.transform.stream.StreamSource; - -/** - * A tool for converting a MOA SPSS Version 1.0 configuration file into - * a Version 1.3 configuration file. - *  - * @author Gregor Karlinger - * @version $Id$ - */ -public class ConfigTool -{ - 	public static void main(String[] args) -  {   -    if (args == null || args.length != 2) -    { -      System.out.println("Usage: ConfigTool <MOA.SPSS.1-0.ConfigFile.xml> <MOA.SPSS.1-3.ConfigFile.xml>"); -      System.out.println("  <MOA.SPSS.1-0.ConfigFile.xml> ... Old config file to be transformed"); -      System.out.println("  <MOA.SPSS.1-3.ConfigFile.xml> ... New config file resulting from the transform"); -      System.exit(-1); -    } - 	   - 	  try -    { - 	    TransformerFactory tFactory = TransformerFactory.newInstance(); - 	    Transformer transformer = tFactory.newTransformer(new StreamSource( - 	      ConfigTool.class.getResourceAsStream("/resources/tools/ConfigurationMapper.xsl"))); -      transformer.transform(new StreamSource(args[0]), new StreamResult(new FileOutputStream(args[1]))); -    	 -    	System.out.println("Successfully mapped configuration file."); -    } -    catch (TransformerConfigurationException e) -    { -      System.err.println("An error occurred during mapping the configuration file:"); -      System.err.println("  Cannot initialize XSLT transform."); -      System.err.println("  " + e.getMessage()); -    } -    catch (FileNotFoundException e) -    { -      System.err.println("An error occurred during mapping the configuration file:"); -      System.err.println("  There is a problem with the filename for the new configuration file."); -      System.err.println("  " + e.getMessage()); -    } -    catch (TransformerException e) -    { -      System.err.println("An error occurred during mapping the configuration file:"); -      System.err.println("  " + e.getMessage()); -    } -  } -} diff --git a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/overview.htm b/spss/server/serverlib/src/main/javadoc/overview.html index 9b17bbf91..9b17bbf91 100644 --- a/spss/server/serverlib/src/main/java/at/gv/egovernment/moa/spss/overview.htm +++ b/spss/server/serverlib/src/main/javadoc/overview.html | 
