blob: 193b72a7e2d1b872972739d98c0e2fbc617a9b9f [file] [log] [blame]
/**
* Copyright 2009-2011 Oracle, Inc.
* 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.
*
* Authors:
* (2014): Ajith Nair, David Laurance
* 1.1 (2011): Rich Levinson, Prateek Mishra (Oracle)
* 1.0 (2009): Josh Bregman, Rich Levinson, Prateek Mishra (Oracle)
* Contributor:
* Rich Levinson (Oracle)
*/
package org.apache.openaz.pepapi;
import org.apache.openaz.xacml.api.Identifier;
import org.apache.openaz.xacml.api.Request;
/**
*
*
*/
public interface PepRequest {
/**
* Returns a PepRequestAttributes instance that represents the attribute category identified by the
* categoryIdentfier parameter.
*
* @param categoryIdentifier an identifier for a category
*/
PepRequestAttributes getPepRequestAttributes(Identifier categoryIdentifier);
/**
* @return
*/
Request getWrappedRequest();
}