Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 40ee479ff67e2f50f33617d9ce61aae6244df9ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
 * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
 * 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:
 *    Stefan Winkler - initial API and implementation
 */
package org.eclipse.emf.cdo.server.internal.db;

import org.eclipse.emf.cdo.server.db.IPreparedStatementCache;

import org.eclipse.net4j.util.lifecycle.Lifecycle;

import java.sql.Connection;

/**
 * @author Stefan Winkler
 * @since 2.0
 */
public abstract class AbstractPreparedStatementCache extends Lifecycle implements IPreparedStatementCache
{
  private Connection connection;

  public AbstractPreparedStatementCache()
  {
  }

  public final Connection getConnection()
  {
    return connection;
  }

  public final void setConnection(Connection connection)
  {
    checkInactive();
    this.connection = connection;
  }

  @Override
  protected void doBeforeActivate()
  {
    checkState(connection, "Must have valid connection to start"); //$NON-NLS-1$
  }
}

Back to the top