Skip to content

Registering Entity for Administration

Irina Kostenko edited this page May 6, 2013 · 6 revisions

To be able to view and edit entity data from the user interface, you need to create an administration for it.

It is as easy as creating a class, annotating it with @Administration and specifying full class name of the managed entity:

@Administration( User.class )
public class UserAdministration {
}