001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements.  See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache License, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License.  You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package org.apache.wicket.authorization;
018
019import org.apache.wicket.Component;
020
021/**
022 * Exception that is thrown when an action is not authorized.
023 * 
024 * @author Jonathan Locke
025 * @author Eelco Hillenius
026 */
027public class UnauthorizedActionException extends AuthorizationException
028{
029        private static final long serialVersionUID = 1L;
030
031        /** The action */
032        private final transient Action action;
033
034        /** The component that caused the unauthorized exception */
035        private final transient Component component;
036
037        /**
038         * Construct.
039         * 
040         * @param component
041         *            The component that caused the unauthorized exception
042         * @param action
043         *            The action
044         */
045        public UnauthorizedActionException(Component component, Action action)
046        {
047                super("Component " + component + " does not permit action " + action);
048                this.component = component;
049                this.action = action;
050        }
051
052        /**
053         * @return The action that was forbidden
054         */
055        public Action getAction()
056        {
057                return action;
058        }
059
060        /**
061         * @return The component that caused the unauthorized exception
062         */
063        public Component getComponent()
064        {
065                return component;
066        }
067}