Remove VirtualPropertyReplacer (#2701)

Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
Avgustin Marinov
2025-09-26 17:17:38 +03:00
committed by GitHub
parent 1954fbe829
commit 1919af4a9d
9 changed files with 28 additions and 67 deletions

View File

@@ -1,32 +0,0 @@
/**
* Copyright (c) 2015 Bosch Software Innovations GmbH and others
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.hawkbit.repository.rsql;
import java.io.Serializable;
/**
* Implementations map a placeholder to the associated value.
* <p>
* This is used in context of string replacement.
*
* @deprecated Since 0.10.0, used only in deprecated specification builders
*/
@Deprecated(since = "0.10.0", forRemoval = true)
@FunctionalInterface
public interface VirtualPropertyReplacer extends Serializable {
/**
* Looks up a placeholders and replaces them
*
* @param input the input string in which virtual properties should be replaced
* @return the result of the replacement
*/
String replace(String input);
}