Dear fellow Ambassadors,
I am asking for your help with this. You should chime in to the
mailing lists below. Better yet, if you can somehow help make some
of the work happen, that is simply outstanding.
Thanks,
Subject: | [jakarta.ee-spec] Defining Jakarta EE 12 Scope in Program Plan |
---|---|
Date: | Tue, 22 Oct 2024 11:30:50 +0200 |
From: | Reza Rahman via jakarta.ee-spec <jakarta...@eclipse.org> |
Reply-To: | Jakarta specification discussions <jakarta...@eclipse.org> |
To: | jakarta...@eclipse.org, jakartaee-platform developer discussions <jakartaee-p...@eclipse.org> |
CC: | Reza Rahman <reza_...@mail.com>, jakart...@eclipse.org, JakartaEE Spec Project Leadership discussions <jakartaee-spec...@eclipse.org> |
_______________________________________________
jakarta.ee-community mailing list
jakarta.ee...@eclipse.org
To unsubscribe from this list, visit https://www.eclipse.org/mailman/listinfo/jakarta.ee-community
public interface Config {
/**
* Loads an object of the supplied {@code type} from the current {@link Config} <em>configuration path</em>.
*
* @param <T> the type of object to load
* @param type the type of object to load; must not be {@code null}
* @return the loaded object; never {@code null}
* @exception NoSuchElementException if the requested object is not found.
* @exception IllegalArgumentException if the supplied {@code type} was invalid for any reason
* @exception NullPointerException if the supplied {@code type} was {@code null}
*/
<T> T load(Class<T> type);
}