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.authroles.authorization.strategies.role.annotations;
018
019import java.lang.annotation.Documented;
020import java.lang.annotation.ElementType;
021import java.lang.annotation.Inherited;
022import java.lang.annotation.Retention;
023import java.lang.annotation.RetentionPolicy;
024import java.lang.annotation.Target;
025
026/**
027 * Groups a set (technically an array) of {@link AuthorizeAction}s for authorization. This
028 * annotation works on a class level, and can be used like this:
029 * 
030 * <pre>
031 * // A panel that is only visible for users with role ADMIN
032 * &#064;AuthorizeAction(action = &quot;RENDER&quot;, roles = { &quot;ADMIN&quot;, &quot;USER&quot; })
033 * public class ForAdminsAndUsers extends Panel
034 * {
035 *      public ForAdminsAndUsers(String id)
036 *      {
037 *              super(id);
038 *      }
039 * }
040 * </pre>
041 * 
042 * @see org.apache.wicket.authorization.IAuthorizationStrategy
043 * @see AnnotationsRoleAuthorizationStrategy
044 * @see AuthorizeAction
045 * @see AuthorizeInstantiation
046 * @author Eelco Hillenius
047 */
048@Retention(RetentionPolicy.RUNTIME)
049@Target({ ElementType.TYPE })
050@Documented
051@Inherited
052public @interface AuthorizeActions {
053
054        /**
055         * The actions that are allowed.
056         * 
057         * @return the allowed actions
058         */
059        AuthorizeAction[] actions();
060}