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

eap8.eap7.tests.data.ws-rs.WsRs Maven / Gradle / Ivy

The newest version!
import jakarta.ws.rs.core.Context;

@Context
public class WsRs {
    private T element;

    public WsRs(T element) {
        this.element = element;
    }

    public T get() {
        return element;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy