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

io.quarkiverse.it.freemarker.Person Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package io.quarkiverse.it.freemarker;

import io.quarkus.runtime.annotations.RegisterForReflection;

@RegisterForReflection
public class Person {

    public String name;

    public Person setName(String name) {
        this.name = name;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy