| Package | Description |
|---|---|
| gallery.admin |
Provides the Controllers for the JSF pages.
|
| gallery.beans |
Provides the Enterprise Java Beans.
|
| gallery.database.entities |
Provides the database Entities used by an ORM.
|
| Modifier and Type | Method and Description |
|---|---|
Location |
LocationController.getLocation(java.lang.Long id) |
Location |
LocationController.getSelected() |
| Modifier and Type | Method and Description |
|---|---|
Location |
LocationBean.find(java.lang.Long id)
Retrieves a Location.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Location> |
LocationBean.findAll() |
java.util.List<Location> |
LocationBean.findRange(java.lang.Integer from,
java.lang.Integer to) |
| Modifier and Type | Method and Description |
|---|---|
void |
JobBean.addPhotographs(Location location)
Checks a directory stored in "location" for new photographs or films.
|
void |
LocationBean.create(Location entity)
Creates a Location.
|
void |
LocationBean.edit(Location entity)
Updates a Location.
|
void |
JobBean.initGalleries(Location location)
Creates galleries and adds photographs to them, based on the information
in the photographs at a certain location.
|
void |
JobBean.verifyPhotographs(Location location)
Verifies existing Photographs upon a Location.
|
| Modifier and Type | Field and Description |
|---|---|
static javax.persistence.metamodel.SingularAttribute<Location,java.lang.String> |
Location_.filepath |
static javax.persistence.metamodel.SingularAttribute<Location,java.lang.Long> |
Location_.id |
static javax.persistence.metamodel.SingularAttribute<Photograph,Location> |
Photograph_.location |
| Modifier and Type | Method and Description |
|---|---|
Location |
Photograph.getLocation()
Indicates in what location the picture resides (amongst other pictures).
|
| Modifier and Type | Method and Description |
|---|---|
void |
Photograph.setLocation(Location location)
Sets the location.
|