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 |
---|---|
Planet |
SolarSystemFacadeRemote.findPlanetById(Long objectId)
Finds the Planet with the supplied objectId.
|
Planet |
SolarSystemFacadeBean.findPlanetById(Long objectId)
Finds the Planet with the supplied objectId.
|
Planet |
SolarSystemFacadeRemote.mergePlanet(Planet planet)
Merges the supplied planet.
|
Planet |
SolarSystemFacadeBean.mergePlanet(Planet planet)
Merges the supplied planet.
|
Modifier and Type | Method and Description |
---|---|
List<Planet> |
PlanetControllerRemote.findAll()
Finds all Planets.
|
List<Planet> |
PlanetControllerBean.findAll()
Finds all Planets.
|
List<Planet> |
SolarSystemFacadeRemote.findAllPlanets()
Finds all Planets.
|
List<Planet> |
SolarSystemFacadeBean.findAllPlanets()
Finds all Planets.
|
List<Planet> |
PlanetControllerBean.findByCriteria(Searchable criteria)
Finds Planets based upon criteria.
|
List<Planet> |
SolarSystemFacadeRemote.findPlanetsByCriteria(PlanetSearchCriteria criteria)
Finds Planets based upon criteria.
|
List<Planet> |
SolarSystemFacadeBean.findPlanetsByCriteria(PlanetSearchCriteria criteria)
Finds Planets based upon criteria.
|
Class<Planet> |
PlanetControllerBean.getItemType()
Gets the type of the Entity to maintain.
|
Modifier and Type | Method and Description |
---|---|
Planet |
SolarSystemFacadeRemote.mergePlanet(Planet planet)
Merges the supplied planet.
|
Planet |
SolarSystemFacadeBean.mergePlanet(Planet planet)
Merges the supplied planet.
|
void |
SolarSystemFacadeRemote.persistPlanet(Planet planet)
Persists a Planet.
|
void |
SolarSystemFacadeBean.persistPlanet(Planet planet)
Persists a Planet.
|
void |
SolarSystemFacadeRemote.removePlanet(Planet planet)
Removes the supplied planet.
|
void |
SolarSystemFacadeBean.removePlanet(Planet planet)
Removes the supplied planet.
|
Modifier and Type | Method and Description |
---|---|
Planet |
Moon.getPlanet()
Gets the Planet that this Moon orbits.
|
Modifier and Type | Method and Description |
---|---|
void |
Moon.setPlanet(Planet planet)
Sets the Planet that this Moon orbits.
|
Modifier and Type | Method and Description |
---|---|
Planet |
PlanetBean.getPlanet()
Gets the Planet.
|
Modifier and Type | Method and Description |
---|---|
Class<Planet> |
PlanetBean.getItemType()
Gets the type of the Entity to maintain.
|
Copyright © 2008–2018. All rights reserved.