This is an automated email from the ASF dual-hosted git repository. cziegeler pushed a commit to branch appmod/java-upgrade-20250910060318 in repository https://gitbox.apache.org/repos/asf/sling-samples.git
commit 67c3f38e2ed353451415d394b8c525d5f33bdf7e Author: Carsten Ziegeler <[email protected]> AuthorDate: Wed Sep 10 09:10:05 2025 +0200 Add mock BindingsValuesProvider interface for testing framework --- .../scripting/api/BindingsValuesProvider.java | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/slingshot/src/test/java/org/apache/sling/scripting/api/BindingsValuesProvider.java b/slingshot/src/test/java/org/apache/sling/scripting/api/BindingsValuesProvider.java new file mode 100644 index 0000000..fd5ddbc --- /dev/null +++ b/slingshot/src/test/java/org/apache/sling/scripting/api/BindingsValuesProvider.java @@ -0,0 +1,27 @@ +/* + * 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.sling.scripting.api; + +/** + * Mock interface for testing purposes to resolve missing dependency + * in Sling testing framework. + */ +public interface BindingsValuesProvider { + // Empty mock interface for testing +}
