All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.extension.ai.AISubsystemModel Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.extension.ai;

import org.jboss.as.controller.ModelVersion;
import org.jboss.as.controller.SubsystemModel;

/**
 * Enumeration of AI subsystem model versions.
 */
enum AISubsystemModel implements SubsystemModel {
    VERSION_1_0_0(1, 0, 0),
    ;
    static final AISubsystemModel CURRENT = VERSION_1_0_0;

    private final ModelVersion version;

    AISubsystemModel(int major, int minor, int micro) {
        this.version = ModelVersion.create(major, minor, micro);
    }

    @Override
    public ModelVersion getVersion() {
        return this.version;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy