Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6b60bbe8688c73f4b1cb05e94fdf6969ddff8ee1 (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
/*
 * 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:
 *    Caspar De Groot - initial API and implementation
 */
package org.eclipse.emf.cdo.internal.net4j;

import org.eclipse.emf.cdo.net4j.CDOSessionRecoveryEvent;
import org.eclipse.emf.cdo.session.CDOSession;

/**
 * @author Caspar De Groot
 */
public class CDOSessionRecoveryEventImpl implements CDOSessionRecoveryEvent
{
  private CDOSession source;

  private Type type;

  public CDOSessionRecoveryEventImpl(CDOSession source, Type type)
  {
    this.type = type;
    this.source = source;
  }

  public CDOSession getSource()
  {
    return source;
  }

  public Type getType()
  {
    return type;
  }
}

Back to the top