Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/OpenSessionResult.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/OpenSessionResult.java122
1 files changed, 122 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/OpenSessionResult.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/OpenSessionResult.java
new file mode 100644
index 0000000000..7248a280d1
--- /dev/null
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/OpenSessionResult.java
@@ -0,0 +1,122 @@
+/***************************************************************************
+ * 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.internal.cdo.net4j.protocol;
+
+import org.eclipse.emf.cdo.common.id.CDOIDLibraryDescriptor;
+import org.eclipse.emf.cdo.common.id.CDOIDMetaRange;
+import org.eclipse.emf.cdo.common.model.CDOPackageInfo;
+import org.eclipse.emf.cdo.common.model.CDOPackageURICompressor;
+
+import org.eclipse.net4j.util.io.ExtendedDataInput;
+import org.eclipse.net4j.util.io.ExtendedDataOutput;
+import org.eclipse.net4j.util.io.StringCompressor;
+
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * @author Eike Stepper
+ */
+public final class OpenSessionResult implements CDOPackageURICompressor
+{
+ private int sessionID;
+
+ private String repositoryUUID;
+
+ private long repositoryCreationTime;
+
+ private RepositoryTimeResult repositoryTimeResult;
+
+ private boolean repositorySupportingAudits;
+
+ private CDOIDLibraryDescriptor libraryDescriptor;
+
+ private List<CDOPackageInfo> packageInfos = new ArrayList<CDOPackageInfo>();
+
+ private StringCompressor compressor = new StringCompressor(true);
+
+ public OpenSessionResult(int sessionID, String repositoryUUID, long repositoryCreationTime,
+ boolean repositorySupportingAudits, CDOIDLibraryDescriptor libraryDescriptor)
+ {
+ this.sessionID = sessionID;
+ this.repositoryUUID = repositoryUUID;
+ this.repositoryCreationTime = repositoryCreationTime;
+ this.repositorySupportingAudits = repositorySupportingAudits;
+ this.libraryDescriptor = libraryDescriptor;
+ }
+
+ public int getSessionID()
+ {
+ return sessionID;
+ }
+
+ public String getRepositoryUUID()
+ {
+ return repositoryUUID;
+ }
+
+ public long getRepositoryCreationTime()
+ {
+ return repositoryCreationTime;
+ }
+
+ public boolean isRepositorySupportingAudits()
+ {
+ return repositorySupportingAudits;
+ }
+
+ public RepositoryTimeResult getRepositoryTimeResult()
+ {
+ return repositoryTimeResult;
+ }
+
+ public void setRepositoryTimeResult(RepositoryTimeResult repositoryTimeResult)
+ {
+ this.repositoryTimeResult = repositoryTimeResult;
+ }
+
+ public CDOIDLibraryDescriptor getLibraryDescriptor()
+ {
+ return libraryDescriptor;
+ }
+
+ public List<CDOPackageInfo> getPackageInfos()
+ {
+ return packageInfos;
+ }
+
+ void addPackageInfo(String packageURI, boolean dynamic, CDOIDMetaRange metaIDRange, String parentURI)
+ {
+ packageInfos.add(new CDOPackageInfo(packageURI, dynamic, metaIDRange, parentURI));
+ }
+
+ public StringCompressor getCompressor()
+ {
+ return compressor;
+ }
+
+ /**
+ * @since 2.0
+ */
+ public void writePackageURI(ExtendedDataOutput out, String uri) throws IOException
+ {
+ compressor.write(out, uri);
+ }
+
+ /**
+ * @since 2.0
+ */
+ public String readPackageURI(ExtendedDataInput in) throws IOException
+ {
+ return compressor.read(in);
+ }
+}

Back to the top