blob: df038fd9c27d7aefe8a60905bb911a66ac56f986 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.http.jetty.internal.osgi;
import java.util.Map;
import org.eclipse.osee.http.jetty.JettyServer.Builder;
import org.eclipse.osee.jdbc.JdbcService;
/**
* @author Roberto E. Escobar
*/
public class JdbcJettyHttpService extends AbstractJettyHttpService {
private JdbcService jdbcService;
public void setJdbcService(JdbcService jdbcService) {
this.jdbcService = jdbcService;
}
@Override
protected void customizeJettyServer(Builder builder, Map<String, Object> props) {
builder.jdbcSessionManagerFactory(jdbcService.getClient());
}
}