Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2008-06-03 09:49:12 +0000
committerEike Stepper2008-06-03 09:49:12 +0000
commit2619c1cedc61c1a7b34cbe4f9113173c47ff93c9 (patch)
tree7a23da2fa417054c98477bd8e0902bed51318edf /plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/security/Credentials.java
parentf5271bed64f88809e457b907f507966235ce44ed (diff)
downloadcdo-2619c1cedc61c1a7b34cbe4f9113173c47ff93c9.tar.gz
cdo-2619c1cedc61c1a7b34cbe4f9113173c47ff93c9.tar.xz
cdo-2619c1cedc61c1a7b34cbe4f9113173c47ff93c9.zip
[234041] Prepare graduation
https://bugs.eclipse.org/bugs/show_bug.cgi?id=234041
Diffstat (limited to 'plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/security/Credentials.java')
-rw-r--r--plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/security/Credentials.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/security/Credentials.java b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/security/Credentials.java
new file mode 100644
index 0000000000..9a5ad66fb6
--- /dev/null
+++ b/plugins/org.eclipse.net4j.util/src/org/eclipse/net4j/util/security/Credentials.java
@@ -0,0 +1,29 @@
+/***************************************************************************
+ * 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.net4j.util.security;
+
+/**
+ * @author Eike Stepper
+ */
+public class Credentials implements ICredentials
+{
+ private String userID;
+
+ public Credentials(String userID)
+ {
+ this.userID = userID;
+ }
+
+ public String getUserID()
+ {
+ return userID;
+ }
+}

Back to the top