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

quarkus.java-ee.tests.data-jakarta.transitive.HelloService Maven / Gradle / Ivy

The newest version!
package sample;

import jakarta.enterprise.inject.Produces;


public class HelloService {
    @Produces
    String createHelloMessage(String name) {
        return "Hello " + name + "!";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy