Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeUser.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeUser.java96
1 files changed, 48 insertions, 48 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeUser.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeUser.java
index bee19fe06d8..3cde5163472 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeUser.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/data/OseeUser.java
@@ -1,49 +1,49 @@
-/*******************************************************************************
- * Copyright (c) 2004, 2007 Boeing.
- * 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:
- * Boeing - initial API and implementation
- *******************************************************************************/
-package org.eclipse.osee.framework.core.data;
-
-/**
- * @author Ryan D. Brooks
- */
-public class OseeUser implements IOseeUser {
- private static final long serialVersionUID = -4632859204715457300L;
- private final String userName;
- private final String userId;
- private final String userEmail;
- private final boolean isActive;
-
- public OseeUser(String userName, String userId, String userEmail, boolean isActive) {
- this.userName = userName;
- this.userId = userId;
- this.userEmail = userEmail;
- this.isActive = isActive;
- }
-
- @Override
- public String getEmail() {
- return userEmail;
- }
-
- @Override
- public String getName() {
- return userName;
- }
-
- @Override
- public String getUserID() {
- return userId;
- }
-
- @Override
- public boolean isActive() {
- return isActive;
- }
+/*******************************************************************************
+ * Copyright (c) 2004, 2007 Boeing.
+ * 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:
+ * Boeing - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.osee.framework.core.data;
+
+/**
+ * @author Ryan D. Brooks
+ */
+public class OseeUser implements IOseeUser {
+ private static final long serialVersionUID = -4632859204715457300L;
+ private final String userName;
+ private final String userId;
+ private final String userEmail;
+ private final boolean isActive;
+
+ public OseeUser(String userName, String userId, String userEmail, boolean isActive) {
+ this.userName = userName;
+ this.userId = userId;
+ this.userEmail = userEmail;
+ this.isActive = isActive;
+ }
+
+ @Override
+ public String getEmail() {
+ return userEmail;
+ }
+
+ @Override
+ public String getName() {
+ return userName;
+ }
+
+ @Override
+ public String getUserID() {
+ return userId;
+ }
+
+ @Override
+ public boolean isActive() {
+ return isActive;
+ }
} \ No newline at end of file

Back to the top