source: DASISH/t5.6/backend/annotator-backend/tags/git-copy-censored/annotator-backend/src/test/java/eu/dasish/annotation/backend/rest/DummyPrincipal.java @ 6063

Last change on this file since 6063 was 6063, checked in by olhsha@mpi.nl, 9 years ago

replacing olhsha@mpi.nl with alice@mail.domain in the code

File size: 1.7 KB
Line 
1/*
2 * Copyright (C) 2013 DASISH
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17 */
18package eu.dasish.annotation.backend.rest;
19
20/**
21 *
22 * @author olhsha
23 */
24
25import java.security.Principal;
26
27
28public final class DummyPrincipal implements Principal {
29
30    public static final DummyPrincipal DUMMY_ADMIN_PRINCIPAL = new DummyPrincipal("JUnit.Admin@test.com");
31    public static final DummyPrincipal DUMMY_PRINCIPAL = new DummyPrincipal("alice@mail.domain");
32    public static final PrincipalCredentials DUMMY_CREDENTIALS = new PrincipalCredentials(DUMMY_PRINCIPAL) {
33
34        @Override
35        public String getDisplayName() {
36            return "J.Unit";
37        }
38    };
39   
40    public static final PrincipalCredentials DUMMY_ADMIN_CREDENTIALS = new PrincipalCredentials(DUMMY_ADMIN_PRINCIPAL);
41   
42    private final String principalname;
43
44    public DummyPrincipal(String principalname) {
45        this.principalname = principalname;
46    }
47
48    @Override
49    public String getName() {
50        return principalname;
51    }
52
53    public PrincipalCredentials getCredentials() {
54        return new PrincipalCredentials(this);
55    }
56}
Note: See TracBrowser for help on using the repository browser.