Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6c4062832715fa5bbdf81a471e749f858a7551cf (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * 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:
 *    Eike Stepper - initial API and implementation
 **************************************************************************/
package org.eclipse.emf.cdo.server;

import org.eclipse.net4j.util.container.IContainer;

import java.util.Map;

/**
 * @author Eike Stepper
 */
public interface IRepository extends IContainer<IRepositoryElement>
{
  public String getName();

  public void setName(String name);

  public IStore getStore();

  public void setStore(IStore store);

  public Map<String, String> getProperties();

  public void setProperties(Map<String, String> properties);

  public String getUUID();

  public boolean isSupportingAudits();

  public boolean isVerifyingRevisions();

  public IPackageManager getPackageManager();

  public ISessionManager getSessionManager();

  public IResourceManager getResourceManager();

  public IRevisionManager getRevisionManager();

  /**
   * @author Eike Stepper
   */
  public interface Props
  {
    public static final String PROP_OVERRIDE_UUID = "overrideUUID";

    public static final String PROP_SUPPORTING_REVISION_DELTAS = "supportingRevisionDeltas";

    public static final String PROP_SUPPORTING_AUDITS = "supportingAudits";

    public static final String PROP_VERIFYING_REVISIONS = "verifyingRevisions";

    public static final String PROP_CURRENT_LRU_CAPACITY = "currentLRUCapacity";

    public static final String PROP_REVISED_LRU_CAPACITY = "revisedLRUCapacity";
  }
}

Back to the top