001// SPDX-FileCopyrightText: 2021 Paul Schaub <vanitasvitae@fsfe.org>
002//
003// SPDX-License-Identifier: Apache-2.0
004
005package sop.operation;
006
007public interface Version {
008
009    /**
010     * Return the implementations name.
011     *
012     * @return implementation name
013     */
014    String getName();
015
016    /**
017     * Return the implementations version string.
018     *
019     * @return version string
020     */
021    String getVersion();
022}