This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch WW-5631-chaining-require-annotations in repository https://gitbox.apache.org/repos/asf/struts.git
commit 90368eda3447537f3c6c4ca0f26f7e49adeec515 Author: Lukasz Lenart <[email protected]> AuthorDate: Wed May 27 08:15:36 2026 +0200 WW-5631 test(chaining): add annotated/unannotated chaining fixtures Co-Authored-By: Claude Opus 4.7 <[email protected]> --- .../interceptor/AnnotatedChainingAction.java | 45 ++++++++++++++++++++++ .../interceptor/UnannotatedChainingAction.java | 43 +++++++++++++++++++++ 2 files changed, 88 insertions(+) diff --git a/core/src/test/java/org/apache/struts2/interceptor/AnnotatedChainingAction.java b/core/src/test/java/org/apache/struts2/interceptor/AnnotatedChainingAction.java new file mode 100644 index 000000000..d5d69741f --- /dev/null +++ b/core/src/test/java/org/apache/struts2/interceptor/AnnotatedChainingAction.java @@ -0,0 +1,45 @@ +/* + * 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.struts2.interceptor; + +import org.apache.struts2.action.Action; +import org.apache.struts2.interceptor.parameter.StrutsParameter; + +/** + * Test fixture: target/source action whose {@code managerApproved} property is annotated with + * {@link StrutsParameter}. Used by {@link ChainingInterceptorTest}. + */ +public class AnnotatedChainingAction implements Action { + + private boolean managerApproved; + + public boolean getManagerApproved() { + return managerApproved; + } + + @StrutsParameter + public void setManagerApproved(boolean managerApproved) { + this.managerApproved = managerApproved; + } + + @Override + public String execute() { + return SUCCESS; + } +} diff --git a/core/src/test/java/org/apache/struts2/interceptor/UnannotatedChainingAction.java b/core/src/test/java/org/apache/struts2/interceptor/UnannotatedChainingAction.java new file mode 100644 index 000000000..fd1502de4 --- /dev/null +++ b/core/src/test/java/org/apache/struts2/interceptor/UnannotatedChainingAction.java @@ -0,0 +1,43 @@ +/* + * 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.struts2.interceptor; + +import org.apache.struts2.action.Action; + +/** + * Test fixture: target action whose {@code managerApproved} property is NOT annotated with + * {@code @StrutsParameter}. Used by {@link ChainingInterceptorTest}. + */ +public class UnannotatedChainingAction implements Action { + + private boolean managerApproved; + + public boolean getManagerApproved() { + return managerApproved; + } + + public void setManagerApproved(boolean managerApproved) { + this.managerApproved = managerApproved; + } + + @Override + public String execute() { + return SUCCESS; + } +}
