protocol-resilience-test/llcinitial/src/main/java/fixtures/llcresi/DpgServiceVersion.java [12:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public enum DpgServiceVersion implements ServiceVersion {
    /**
     * Enum value 1.0.0.
     */
    V1_0_0("1.0.0");

    private final String version;

    DpgServiceVersion(String version) {
        this.version = version;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String getVersion() {
        return this.version;
    }

    /**
     * Gets the latest service version supported by this client library.
     * 
     * @return The latest {@link DpgServiceVersion}.
     */
    public static DpgServiceVersion getLatest() {
        return V1_0_0;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



protocol-resilience-test/llcupdate1/src/main/java/fixtures/llcresi/DpgServiceVersion.java [12:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
public enum DpgServiceVersion implements ServiceVersion {
    /**
     * Enum value 1.0.0.
     */
    V1_0_0("1.0.0");

    private final String version;

    DpgServiceVersion(String version) {
        this.version = version;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String getVersion() {
        return this.version;
    }

    /**
     * Gets the latest service version supported by this client library.
     * 
     * @return The latest {@link DpgServiceVersion}.
     */
    public static DpgServiceVersion getLatest() {
        return V1_0_0;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



