/** * Copyright (c) 2004 - 2010 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: * Andre Dietisheim - initial API and implementation * Eike Stepper - maintenance */ package org.eclipse.emf.cdo.defs; import org.eclipse.net4j.defs.ConnectorDef; import org.eclipse.net4j.util.defs.Def; /** * A representation of the model object 'CDO Session Def'. * *

* The following features are supported: *

*

* * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOSessionDef() * @model * @generated */ public interface CDOSessionDef extends Def { /** * Returns the value of the 'Connector Def' reference. * *

* If the meaning of the 'Connector Def' reference isn't clear, there really should be more of a description * here... *

* * @return the value of the 'Connector Def' reference. * @see #isSetConnectorDef() * @see #unsetConnectorDef() * @see #setConnectorDef(ConnectorDef) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOSessionDef_ConnectorDef() * @model unsettable="true" required="true" * @generated */ ConnectorDef getConnectorDef(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOSessionDef#getConnectorDef Connector Def}' reference. * * @param value the new value of the 'Connector Def' reference. * @see #isSetConnectorDef() * @see #unsetConnectorDef() * @see #getConnectorDef() * @generated */ void setConnectorDef(ConnectorDef value); /** * Unsets the value of the '{@link org.eclipse.emf.cdo.defs.CDOSessionDef#getConnectorDef Connector Def}' reference. * * @see #isSetConnectorDef() * @see #getConnectorDef() * @see #setConnectorDef(ConnectorDef) * @generated */ void unsetConnectorDef(); /** * Returns whether the value of the '{@link org.eclipse.emf.cdo.defs.CDOSessionDef#getConnectorDef Connector Def}' reference is set. * * @return whether the value of the 'Connector Def' reference is set. * @see #unsetConnectorDef() * @see #getConnectorDef() * @see #setConnectorDef(ConnectorDef) * @generated */ boolean isSetConnectorDef(); /** * Returns the value of the 'Repository Name' attribute. * *

* If the meaning of the 'CDORepositoryInfo Name' attribute isn't clear, there really should be more of a * description here... *

* * @return the value of the 'Repository Name' attribute. * @see #setRepositoryName(String) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOSessionDef_RepositoryName() * @model unique="false" required="true" ordered="false" * @generated */ String getRepositoryName(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOSessionDef#getRepositoryName Repository Name}' attribute. * * @param value the new value of the 'Repository Name' attribute. * @see #getRepositoryName() * @generated */ void setRepositoryName(String value); /** * Returns the value of the 'Cdo Package Registry Def' reference. * *

* If the meaning of the 'Cdo Package Registry Def' reference isn't clear, there really should be more of a * description here... *

* * @return the value of the 'Cdo Package Registry Def' reference. * @see #setCdoPackageRegistryDef(CDOPackageRegistryDef) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOSessionDef_CdoPackageRegistryDef() * @model required="true" * @generated */ CDOPackageRegistryDef getCdoPackageRegistryDef(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOSessionDef#getCdoPackageRegistryDef Cdo Package Registry Def}' reference. * * @param value the new value of the 'Cdo Package Registry Def' reference. * @see #getCdoPackageRegistryDef() * @generated */ void setCdoPackageRegistryDef(CDOPackageRegistryDef value); /** * Returns the value of the 'Legacy Support Enabled' attribute. * The default value is "false". * *

* If the meaning of the 'Legacy Support Enabled' attribute isn't clear, there really should be more of a * description here... *

* * @return the value of the 'Legacy Support Enabled' attribute. * @see #setLegacySupportEnabled(boolean) * @see org.eclipse.emf.cdo.defs.CDODefsPackage#getCDOSessionDef_LegacySupportEnabled() * @model default="false" required="true" * @generated */ boolean isLegacySupportEnabled(); /** * Sets the value of the '{@link org.eclipse.emf.cdo.defs.CDOSessionDef#isLegacySupportEnabled Legacy Support Enabled}' attribute. * * @param value the new value of the 'Legacy Support Enabled' attribute. * @see #isLegacySupportEnabled() * @generated */ void setLegacySupportEnabled(boolean value); } // CDOSessionDef