Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/auth/Authentication.java')
-rw-r--r--bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/auth/Authentication.java36
1 files changed, 0 insertions, 36 deletions
diff --git a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/auth/Authentication.java b/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/auth/Authentication.java
deleted file mode 100644
index c7d8a0bbb..000000000
--- a/bundles/org.eclipse.ui.net/src/org/eclipse/ui/internal/net/auth/Authentication.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2000, 2007 IBM Corporation 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:
- * IBM Corporation - initial API and implementation
- *******************************************************************************/
-package org.eclipse.ui.internal.net.auth;
-
-/**
- * Keeps user and password strings.
- */
-public class Authentication {
- protected String user;
- protected String password;
- public Authentication(String user, String password){
- this.user = user;
- this.password = password;
- }
-
- /**
- * @return Returns the password.
- */
- public String getPassword() {
- return password;
- }
- /**
- * @return Returns the user.
- */
- public String getUser() {
- return user;
- }
-}

Back to the top