summaryrefslogtreecommitdiff
path: root/qpid/java/broker/src/main/java/org/apache/qpid/server/security/auth/database/PrincipalDatabase.java
blob: 67f4b7344a673b0aef1fa01aa005248084da0e02 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */
package org.apache.qpid.server.security.auth.database;

import org.apache.qpid.server.security.auth.sasl.AuthenticationProviderInitialiser;

import javax.security.auth.callback.PasswordCallback;
import javax.security.auth.login.AccountNotFoundException;
import java.io.IOException;
import java.security.Principal;
import java.util.List;
import java.util.Map;

/** Represents a "user database" which is really a way of storing principals (i.e. usernames) and passwords. */
public interface PrincipalDatabase
{
    /**
     * Set the password for a given principal in the specified callback. This is used for certain SASL providers. The
     * user database implementation should look up the password in any way it chooses and set it in the callback by
     * calling its setPassword method.
     *
     * @param principal the principal
     * @param callback  the password callback that wants to receive the password
     *
     * @throws AccountNotFoundException if the account for specified principal could not be found
     * @throws IOException              if there was an error looking up the principal
     */
    void setPassword(Principal principal, PasswordCallback callback)
            throws IOException, AccountNotFoundException;

     /**
     * Used to verify that the presented Password is correct. Currently only used by Management Console
     * @param principal The principal to authenticate
     * @param password The password to check
     * @return true if password is correct
     * @throws AccountNotFoundException if the principal cannot be found
     */
    boolean verifyPassword(String principal, char[] password)
            throws AccountNotFoundException;

    /**
     * Update(Change) the password for the given principal
     * @param principal Who's password is to be changed
     * @param password The new password to use
     * @return True if change was successful
     * @throws AccountNotFoundException If the given principal doesn't exist in the Database
     */
    boolean updatePassword(Principal principal, char[] password)
            throws AccountNotFoundException;

    /**
     * Create a new principal in the database
     * @param principal The principal to create
     * @param password The password to set for the principal
     * @return True on a successful creation
     */
    boolean createPrincipal(Principal principal, char[] password);

    /**
     * Delete a principal
     * @param principal The principal to delete
     * @return True on a successful creation
     * @throws AccountNotFoundException If the given principal doesn't exist in the Database
     */
    boolean deletePrincipal(Principal principal)
            throws AccountNotFoundException;

    /**
     * Get the principal from the database with the given username
     * @param username of the principal to lookup
     * @return The Principal object for the given username or null if not found.
     */
    Principal getUser(String username);

    /**
     * Reload the database to its ensure contents are up to date
     * @throws IOException If there was an error reloading the database
     */
    void reload() throws IOException;

    public Map<String, AuthenticationProviderInitialiser> getMechanisms();


    List<Principal> getUsers();
}