Package br.net.woodstock.rockframework.security.timestamp.web

Source Code of br.net.woodstock.rockframework.security.timestamp.web.BouncyCastleTimeStampServlet

/*
* This file is part of rockframework.
*
* rockframework is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* rockframework is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.es
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>;.
*/
package br.net.woodstock.rockframework.security.timestamp.web;

import java.io.IOException;
import java.io.InputStream;

import javax.servlet.ServletConfig;
import javax.servlet.ServletException;

import br.net.woodstock.rockframework.core.RockFrameworkVersion;
import br.net.woodstock.rockframework.core.utils.Resources;
import br.net.woodstock.rockframework.security.store.KeyStoreType;
import br.net.woodstock.rockframework.security.store.PasswordAlias;
import br.net.woodstock.rockframework.security.store.Store;
import br.net.woodstock.rockframework.security.store.StoreAlias;
import br.net.woodstock.rockframework.security.store.impl.JCAStore;
import br.net.woodstock.rockframework.security.timestamp.TimeStampServer;
import br.net.woodstock.rockframework.security.timestamp.impl.BouncyCastleTimeStampServer;

public class BouncyCastleTimeStampServlet extends AbstractTimeStampServlet {

  public static final String  DEFAULT_PROPERTIES_FILE  = "timestamp-servlet.properties";

  private static final long  serialVersionUID    = RockFrameworkVersion.VERSION;

  private TimeStampServer    timeStampServer;

  public BouncyCastleTimeStampServlet() {
    super();
  }

  @Override
  public void init(final ServletConfig config) throws ServletException {
    super.init(config);
    try {
      BouncyCastleTimeStampConfig timeStampConfig = this.getConfig();
      InputStream inputStream = Resources.getResourceAsStream(timeStampConfig.getStoreResource());

      Store store = new JCAStore(KeyStoreType.valueOf(timeStampConfig.getStoreType()));
      store.read(inputStream, timeStampConfig.getStorePassword());

      StoreAlias alias = new PasswordAlias(timeStampConfig.getKeyAlias(), timeStampConfig.getKeyPassword());

      this.timeStampServer = new BouncyCastleTimeStampServer(store, alias);
    } catch (Exception e) {
      throw new ServletException(e);
    }
  }

  protected BouncyCastleTimeStampConfig getConfig() throws IOException {
    return new DefaultBouncyCastleTimeStampConfig(BouncyCastleTimeStampServlet.DEFAULT_PROPERTIES_FILE);
  }

  @Override
  protected TimeStampServer getTimeStampServer() {
    return this.timeStampServer;
  }

}
TOP

Related Classes of br.net.woodstock.rockframework.security.timestamp.web.BouncyCastleTimeStampServlet

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.