Package | Description |
---|---|
org.josef.demo.ejb | |
org.josef.demo.jpa |
Demo of Java Persistence API (JPA).
|
org.josef.web.jsf.beans.demo.crud.jpa |
JSF Managed Beans to demonstrate CRUD actions.
|
Modifier and Type | Method and Description |
---|---|
Moon |
SolarSystemFacadeRemote.findMoonById(Long objectId)
Finds the Moon with the supplied objectId.
|
Moon |
SolarSystemFacadeBean.findMoonById(Long objectId)
Finds the Moon with the supplied objectId.
|
Moon |
SolarSystemFacadeRemote.mergeMoon(Moon moon)
Merges the supplied moon.
|
Moon |
SolarSystemFacadeBean.mergeMoon(Moon moon)
Merges the supplied moon.
|
Moon |
PlanetControllerRemote.mergeMoon(Moon moon)
Merges the supplied moon.
|
Moon |
PlanetControllerBean.mergeMoon(Moon moon)
Merges the supplied moon.
|
Modifier and Type | Method and Description |
---|---|
List<Moon> |
MoonControllerRemote.findAll()
Finds all Moons.
|
List<Moon> |
MoonControllerBean.findAll()
Finds all Moons.
|
List<Moon> |
MoonControllerBean.findByCriteria(Searchable criteria)
Finds Moons based upon criteria.
|
List<Moon> |
SolarSystemFacadeRemote.findMoonsByCriteria(MoonSearchCriteria criteria)
Finds Moons based upon criteria.
|
List<Moon> |
SolarSystemFacadeBean.findMoonsByCriteria(MoonSearchCriteria criteria)
Finds Moons based upon criteria.
|
Class<Moon> |
MoonControllerBean.getItemType()
Gets the type of the Entity to maintain.
|
Modifier and Type | Method and Description |
---|---|
Moon |
SolarSystemFacadeRemote.mergeMoon(Moon moon)
Merges the supplied moon.
|
Moon |
SolarSystemFacadeBean.mergeMoon(Moon moon)
Merges the supplied moon.
|
Moon |
PlanetControllerRemote.mergeMoon(Moon moon)
Merges the supplied moon.
|
Moon |
PlanetControllerBean.mergeMoon(Moon moon)
Merges the supplied moon.
|
void |
SolarSystemFacadeRemote.persistMoon(Moon moon)
Persists a Moon.
|
void |
SolarSystemFacadeBean.persistMoon(Moon moon)
Persists a Moon.
|
void |
PlanetControllerRemote.persistMoon(Moon moon)
Persists a Moon.
|
void |
PlanetControllerBean.persistMoon(Moon moon)
Persists a Moon.
|
void |
MoonControllerBean.prePersist(Moon moon,
Long planetId)
Fetches the Planet with the supplied planetId and sets it on the supplied
moon.
|
void |
SolarSystemFacadeRemote.removeMoon(Moon moon)
Removes the supplied moon.
|
void |
SolarSystemFacadeBean.removeMoon(Moon moon)
Removes the supplied moon.
|
void |
PlanetControllerRemote.removeMoon(Moon moon)
Removes the supplied moon.
|
void |
PlanetControllerBean.removeMoon(Moon moon)
Removes the supplied moon.
|
Modifier and Type | Method and Description |
---|---|
Set<Moon> |
Planet.getMoons()
Gets all the Moons that orbit this Planet.
|
Modifier and Type | Method and Description |
---|---|
void |
Planet.addMoon(Moon moon)
Adds the supplied Moon to this Planet.
|
Modifier and Type | Method and Description |
---|---|
void |
Planet.setMoons(Set<Moon> moons)
Sets all the Moons that orbit this Planet.
|
Constructor and Description |
---|
Planet(Long id,
String name,
Set<Moon> moons)
Constructs this Planet from all the supplied, mandatory fields.
|
Modifier and Type | Method and Description |
---|---|
Moon |
MoonBean.getMoon()
Gets the Moon.
|
Modifier and Type | Method and Description |
---|---|
Class<Moon> |
MoonBean.getItemType()
Gets the type of the Entity to maintain.
|
Copyright © 2008–2018. All rights reserved.