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

org.wildfly.extension.ai.AISubsystemTransformation 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 java.util.function.Function;

import org.jboss.as.controller.ModelVersion;
import org.jboss.as.controller.transform.description.ResourceTransformationDescriptionBuilder;
import org.jboss.as.controller.transform.description.TransformationDescription;
import org.jboss.as.controller.transform.description.TransformationDescriptionBuilder;

/**
 * Creates the transformation descriptions for the AI subsystem resource.
 */
public class AISubsystemTransformation implements Function {

    private final ResourceTransformationDescriptionBuilder builder = TransformationDescriptionBuilder.Factory.createSubsystemInstance();

    @Override
    public TransformationDescription apply(ModelVersion version) {
        return this.builder.build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy