blob: bf33c0ff37546504f5af13a24c95473d094bfe58 [file] [log] [blame]
/*
* 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.myfaces.extensions.cdi.core.api.security;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* Optional context which allows to get the current state as well as the results of the security check.
* (Optional because it requires a useful scope which depends on the environment.)
*/
public interface AccessDecisionVoterContext extends Serializable
{
/**
* Exposes the current state
* @return current state
*/
AccessDecisionState getState();
/**
* Exposes the found violations
* @return found violations
*/
List<SecurityViolation> getViolations();
/**
* Exposes the found meta-data
* @return found meta-data
*/
Map<String, Object> getMetaData();
/**
* Exposes meta-data for the given key
* @param key meta-data key
* @param targetType target type
* @param <T> target type
* @return meta-data for the given key or null if there is no value for the given key
*/
<T> T getMetaDataFor(String key, Class<T> targetType);
}