This is an automated email from the ASF dual-hosted git repository. papegaaij pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/wicket.git
commit bef3facb3b240f60a3455f257eaf1b9db81a9e29 Author: Emond Papegaaij <[email protected]> AuthorDate: Fri Aug 7 22:40:01 2020 +0200 WICKET-6786: Fix license header and add some comments --- .../protocol/http/ResourceIsolationOutcome.java | 26 +++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/wicket-core/src/main/java/org/apache/wicket/protocol/http/ResourceIsolationOutcome.java b/wicket-core/src/main/java/org/apache/wicket/protocol/http/ResourceIsolationOutcome.java index 9b7dc38..1250bfc 100644 --- a/wicket-core/src/main/java/org/apache/wicket/protocol/http/ResourceIsolationOutcome.java +++ b/wicket-core/src/main/java/org/apache/wicket/protocol/http/ResourceIsolationOutcome.java @@ -1,8 +1,28 @@ +/* + * 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.wicket.protocol.http; +/** + * Indicates the outcome for a resource isolation policy for a request. When the outcome is + * {@link #UNKNOWN}, the next policy will be consulted. + * + * @author papegaaij + */ public enum ResourceIsolationOutcome { - ALLOWED, - DISALLOWED, - UNKNOWN + ALLOWED, DISALLOWED, UNKNOWN }
