Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 714 Bytes

README.adoc

File metadata and controls

33 lines (21 loc) · 714 Bytes

darwinsys-ee

My collection of little EE helpers that I use over and over.

Do not confuse with the EE examples, in ../javasrc/ee.

Pre-Requisites

If you want to use my Authenticator, you must pick one and provide a dummy subclass of it with the name "Authenticator", as shown here.

import javax.inject.Named;

@Named("Authenticator")
public class MyAuthenticator extends AuthenticatorJPA {
	// Empty class, just to hold the @Named on a subclass
}

Classes

Authenticator AuthenticatorJPA AuthenticatorCMS

EntityHome - a subset of Seam2 EntityHome.

EntityList is NOT provided; use Apache DeltaSpike Data for that!

Person - a loginnable person, for the Authenticator.