org.simpleframework.http.Principal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-http Show documentation
Show all versions of simple-http Show documentation
Simple is a high performance asynchronous HTTP framework for Java
The newest version!
/*
* Principal.java November 2002
*
* Copyright (C) 2002, Niall Gallagher
*
* Licensed 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.simpleframework.http;
/**
* The Principal
interface is used to describe a
* user that has a name and password. This should not be
* confused with the java.security.Principal
* interface which does not provide getPassword
.
*
* @author Niall Gallagher
*/
public interface Principal {
/**
* The getPassword
method is used to retrieve
* the password of the principal. This is the password
* tag in the RFC 2616 Authorization credentials expression.
*
* @return this returns the password for this principal
*/
String getPassword();
/**
* The getName
method is used to retreive
* the name of the principal. This is the name tag in
* the RFC 2616 Authorization credentials expression.
*
* @return this returns the name of this principal
*/
String getName();
}