Move adsal into its own subdirectory.
[controller.git] / opendaylight / usermanager / api / src / main / java / org / opendaylight / controller / usermanager / AuthenticatedUser.java
diff --git a/opendaylight/usermanager/api/src/main/java/org/opendaylight/controller/usermanager/AuthenticatedUser.java b/opendaylight/usermanager/api/src/main/java/org/opendaylight/controller/usermanager/AuthenticatedUser.java
deleted file mode 100644 (file)
index 809ca13..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. 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
- */
-
-package org.opendaylight.controller.usermanager;
-
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.Collections;
-import java.util.Date;
-import java.util.List;
-
-import org.opendaylight.controller.sal.authorization.UserLevel;
-import org.springframework.security.core.GrantedAuthority;
-import org.springframework.security.core.authority.SimpleGrantedAuthority;
-
-/**
- * Represents a user that was successfully authenticated and authorized
- * It contains the user role for which the user was authorized and the
- * date on which it was authenticated and authorized
- */
-public class AuthenticatedUser implements Serializable {
-    private static final long serialVersionUID = 1L;
-    private List<String> userRoles;
-    private Date accessDate;
-
-    public AuthenticatedUser(String name) {
-        userRoles = null;
-        accessDate = new Date();
-    }
-
-    public void setRoleList(List<String> roleList) {
-        this.userRoles = roleList;
-    }
-
-    public void setRoleList(String[] roleArray) {
-        userRoles = new ArrayList<String>(roleArray.length);
-        for (String role : roleArray) {
-            String target = role.trim();
-            if (!target.isEmpty()) {
-                userRoles.add(target);
-            }
-        }
-    }
-
-    public List<String> getUserRoles() {
-        return userRoles == null ? Collections.<String> emptyList() : new ArrayList<String>(userRoles);
-    }
-
-    public void addUserRole(String string) {
-        userRoles.add(string);
-    }
-
-    public String getAccessDate() {
-        return accessDate.toString();
-    }
-
-    public List<GrantedAuthority> getGrantedAuthorities(UserLevel usrLvl) {
-        List<GrantedAuthority> roles = new ArrayList<GrantedAuthority>();
-        roles.add(new SimpleGrantedAuthority(new ODLUserLevel(usrLvl)
-                .getAuthority()));
-        return roles;
-    }
-
-}