RichFaces Photoalbum 4.3.5.Final

Serialized Form


Package org.richfaces.photoalbum.manager

Class org.richfaces.photoalbum.manager.AlbumManager extends Object implements Serializable

serialVersionUID: 2631634926126857691L

Serialized Fields

validationSuccess

boolean validationSuccess

errorInCreate

boolean errorInCreate

albumAction

IAlbumAction albumAction

user

User user

model

Model model

error

javax.enterprise.event.Event<T> error

albumEvent

javax.enterprise.event.Event<T> albumEvent

album

Album album

Class org.richfaces.photoalbum.manager.Authenticator extends Object implements Serializable

serialVersionUID: -4585673256547342140L

Serialized Fields

userTracker

LoggedUserTracker userTracker

userAction

IUserAction userAction

user

User user

loginFailed

boolean loginFailed

conversationStarted

boolean conversationStarted

event

javax.enterprise.event.Event<T> event

error

javax.enterprise.event.Event<T> error

navEvent

javax.enterprise.event.Event<T> navEvent

fileManager

FileManager fileManager

userBean

UserBean userBean

fBean

FacebookBean fBean

gBean

GooglePlusBean gBean

avatarData

File avatarData

Class org.richfaces.photoalbum.manager.Controller extends Object implements Serializable

serialVersionUID: 5656562187249324512L

Serialized Fields

model

Model model

loggedUser

User loggedUser

loggedUserBean

UserBean loggedUserBean

fileManager

FileManager fileManager

error

javax.enterprise.event.Event<T> error

event

javax.enterprise.event.Event<T> event

fac

FacebookAlbumCache fac

gpac

GooglePlusAlbumCache gpac

currentPage

int currentPage

Class org.richfaces.photoalbum.manager.EventManager extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

validationSuccess

boolean validationSuccess

eventAction

IEventAction eventAction

shelfAction

IShelfAction shelfAction

user

User user

error

javax.enterprise.event.Event<T> error

shelfEvent

javax.enterprise.event.Event<T> shelfEvent

newEvent

Event newEvent

newShelf

Shelf newShelf

ecId

long ecId

Class org.richfaces.photoalbum.manager.FileDownloadManager extends Object implements Serializable

serialVersionUID: 3815919720565571122L

Serialized Fields

fileUploadManager

FileUploadManager fileUploadManager

albumManager

AlbumManager albumManager

albumAction

IAlbumAction albumAction

eventAction

IEventAction eventAction

eventManager

EventManager eventManager

model

Model model

shelfEvent

javax.enterprise.event.Event<T> shelfEvent

error

javax.enterprise.event.Event<T> error

imageUrls

List<E> imageUrls

iterator

Iterator<E> iterator

pBarText

String pBarText

pBarValue

int pBarValue

size

int size

count

int count

album

Album album

albumId

String albumId

Class org.richfaces.photoalbum.manager.FileUploadManager extends Object implements Serializable

serialVersionUID: 4969087557225414955L

Serialized Fields

imageAction

IImageAction imageAction

fileWrapper

FileWrapper fileWrapper

model

Model model

user

User user

fileManager

FileManager fileManager

imageEvent

javax.enterprise.event.Event<T> imageEvent

error

javax.enterprise.event.Event<T> error

log

Logger log

Class org.richfaces.photoalbum.manager.Model extends Object implements Serializable

serialVersionUID: -1767281809514660171L

Serialized Fields

selectedImage

Image selectedImage

selectedAlbum

Album selectedAlbum

selectedUser

User selectedUser

selectedShelf

Shelf selectedShelf

selectedTag

MetaTag selectedTag

selectedEvent

Event selectedEvent

mainArea

NavigationEnum mainArea

images

List<E> images

event

javax.enterprise.event.Event<T> event

metatag

MetaTag metatag

Class org.richfaces.photoalbum.manager.ShelfManager extends Object implements Serializable

serialVersionUID: 2631634926126857691L

Serialized Fields

validationSuccess

boolean validationSuccess

shelves

List<E> shelves

shelfAction

IShelfAction shelfAction

user

User user

error

javax.enterprise.event.Event<T> error

shelfEvent

javax.enterprise.event.Event<T> shelfEvent

newShelf

Shelf newShelf

Class org.richfaces.photoalbum.manager.SlideshowManager extends Object implements Serializable

serialVersionUID: 7801877176558409702L

Serialized Fields

slideshowIndex

Integer slideshowIndex

startSlideshowIndex

Integer startSlideshowIndex

selectedImage

ImageHandler selectedImage

active

boolean active

errorDetected

boolean errorDetected

model

Model model

fileManager

FileManager fileManager

gpac

GooglePlusAlbumCache gpac

fac

FacebookAlbumCache fac

error

javax.enterprise.event.Event<T> error

interval

int interval

Class org.richfaces.photoalbum.manager.UserBean extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

em

javax.persistence.EntityManager em

um

UserManager um

user

User user

username

String username

fbPhotoUrl

String fbPhotoUrl

fbBean

FacebookBean fbBean

gPlusBean

GooglePlusBean gPlusBean

event

javax.enterprise.event.Event<T> event

password

String password

logged

boolean logged

loggedInFB

boolean loggedInFB

loggedInGPlus

boolean loggedInGPlus

Class org.richfaces.photoalbum.manager.UserManager extends Object implements Serializable

serialVersionUID: 6027103521084558931L

Serialized Fields

user

User user

fileManager

FileManager fileManager

uph

UserPrefsHelper uph

userAction

IUserAction userAction

error

javax.enterprise.event.Event<T> error

Package org.richfaces.photoalbum.model

Class org.richfaces.photoalbum.model.Album extends Object implements Serializable

serialVersionUID: -7042878411608396483L

Serialized Fields

id

Long id

images

List<E> images

shelf

Shelf shelf

coveringImage

Image coveringImage

showAfterCreate

boolean showAfterCreate

created

Date created

name

String name

description

String description

Class org.richfaces.photoalbum.model.Comment extends Object implements Serializable

serialVersionUID: 3429270322123226071L

Serialized Fields

id

Long id

image

Image image

author

User author

date

Date date

message

String message

Class org.richfaces.photoalbum.model.Event extends Object implements Serializable

Serialized Fields

id

Long id
The synthetic ID of the object.


name

String name

The name of the event.

The name of the event forms it's natural identity and cannot be shared between events.

Two constraints are applied using Bean Validation

  1. @NotNull — the name must not be null.
  2. @Size — the name must be at least 5 characters and no more than 50 characters. This allows for better formatting consistency in the view layer.


description

String description

A description of the event.

Two constraints are applied using Bean Validation

  1. @NotNull — the description must not be null.
  2. @Size — the name must be at least 20 characters and no more than 1000 characters. This allows for better formatting consistency in the view layer, and also ensures that event organisers provide at least some description - a classic example of a business constraint.


mediaItem

MediaItem mediaItem

A media item, such as an image, which can be used to entice a browser to book a ticket.

Media items can be shared between events, so this is modeled as a @ManyToOne relationship.

Adding a media item is optional, and the view layer will adapt if none is provided.


category

EventCategory category

The category of the event

Event categories are used to ease searching of available of events, and hence this is modeled as a relationship

The Bean Validation constraint @NotNull indicates that the event category must be specified.


shelf

Shelf shelf

remoteAlbumIds

List<E> remoteAlbumIds

Class org.richfaces.photoalbum.model.EventCategory extends Object implements Serializable

Serialized Fields

id

Long id
The synthetic id of the object.


description

String description

A description of the event category.

The description of an event category forms it's natural id and cannot be shared between event categories

The @NotEmpty Bean Validation constraint means that the event category descripton must be least 1 character and cannot be null.

Class org.richfaces.photoalbum.model.Image extends Object implements Serializable

serialVersionUID: -7042878411608396483L

Serialized Fields

id

Long id

imageTags

List<E> imageTags

comments

List<E> comments

album

Album album

name

String name

covering

boolean covering

path

String path

cameraModel

String cameraModel

height

int height

size

double size

width

int width

uploaded

Date uploaded

description

String description

created

Date created

allowComments

boolean allowComments

showMetaInfo

Boolean showMetaInfo

visited

boolean visited

meta

String meta

Class org.richfaces.photoalbum.model.MediaItem extends Object implements Serializable

Serialized Fields

id

Long id
The synthetic id of the object.


mediaType

MediaType mediaType

The type of the media, required to render the media item corectly.

The media type is a closed set - as each different type of media requires support coded into the view layers, it cannot be expanded upon without rebuilding the application. It is therefore represented by an enumeration. We instruct JPA to store the enum value using it's String representation, so that we can later reorder the enum members, without changing the data. Of course, this does mean we can't change the names of media items once the app is put into production.


url

String url

The URL from which the media item can be sourced

The url of the media item forms it's natural id and cannot be shared between event categories

The @URL Bean Validation ensures the the URL is, indeed, a valid URL.

Class org.richfaces.photoalbum.model.MetaTag extends Object implements Serializable

serialVersionUID: -9065024051468971330L

Serialized Fields

id

Long id

tag

String tag

images

List<E> images

Class org.richfaces.photoalbum.model.Shelf extends Object implements Serializable

serialVersionUID: -7042878411608396483L

Serialized Fields

id

Long id

name

String name

description

String description

owner

User owner

event

Event event

albums

List<E> albums

shared

boolean shared

created

Date created

Class org.richfaces.photoalbum.model.User extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

Long id

fbId

String fbId

gPlusId

String gPlusId

passwordHash

String passwordHash

firstName

String firstName

secondName

String secondName

email

String email

login

String login

password

String password

confirmPassword

String confirmPassword

birthDate

Date birthDate

sex

Sex sex

hasAvatar

Boolean hasAvatar

shelves

List<E> shelves

preDefined

boolean preDefined

Package org.richfaces.photoalbum.model.event

Class org.richfaces.photoalbum.model.event.EventTypeQualifier extends javax.enterprise.util.AnnotationLiteral<EventType> implements Serializable

Serialized Fields

value

Events value

Package org.richfaces.photoalbum.social

Class org.richfaces.photoalbum.social.EventAlbumsHelper extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

model

Model model

gpac

GooglePlusAlbumCache gpac

fac

FacebookAlbumCache fac

fbAlbumIds

String fbAlbumIds

emptyFacebookIds

List<E> emptyFacebookIds

facebookAlbumIds

List<E> facebookAlbumIds

emptyGoogleIds

List<E> emptyGoogleIds

googleAlbumIds

List<E> googleAlbumIds

images

List<E> images

pollEnabled

boolean pollEnabled

facebookNeedsUpdate

boolean facebookNeedsUpdate

googleNeedsUpdate

boolean googleNeedsUpdate

Package org.richfaces.photoalbum.social.facebook

Class org.richfaces.photoalbum.social.facebook.FacebookAlbumDndManager extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

fac

FacebookAlbumCache fac

ea

IEventAction ea

fdm

FileDownloadManager fdm

error

javax.enterprise.event.Event<T> error

albumId

String albumId

event

Event event

albumAlreadyShared

boolean albumAlreadyShared

Class org.richfaces.photoalbum.social.facebook.FacebookBean extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

userInfo

org.richfaces.json.JSONObject userInfo

userAlbumIds

List<E> userAlbumIds

Package org.richfaces.photoalbum.social.gplus

Class org.richfaces.photoalbum.social.gplus.GooglePlusAlbumDndManager extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

gpac

GooglePlusAlbumCache gpac

ea

IEventAction ea

fdm

FileDownloadManager fdm

error

javax.enterprise.event.Event<T> error

albumId

String albumId

event

Event event

albumAlreadyShared

boolean albumAlreadyShared

Class org.richfaces.photoalbum.social.gplus.GooglePlusBean extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

error

javax.enterprise.event.Event<T> error

gpac

GooglePlusAlbumCache gpac

userInfo

org.richfaces.json.JSONObject userInfo

userAlbums

List<E> userAlbums

Package org.richfaces.photoalbum.ui

Class org.richfaces.photoalbum.ui.ConfirmationPopupHelper extends Object implements Serializable

serialVersionUID: 2561824019376412988L

Serialized Fields

caption

String caption

action

org.richfaces.photoalbum.ui.ConfirmationPopupHelper.Actions action

image

Image image

shelf

Shelf shelf

album

Album album

albumManager

AlbumManager albumManager

shelfManager

ShelfManager shelfManager

imageManager

ImageManager imageManager

Class org.richfaces.photoalbum.ui.FileWrapper extends Object implements Serializable

serialVersionUID: -1767281809514660171L

Serialized Fields

complete

boolean complete

files

List<E> files

errorFiles

List<E> errorFiles

Class org.richfaces.photoalbum.ui.ImageLoader extends Object implements Serializable

serialVersionUID: -1572789608594870285L

Serialized Fields

fileManager

FileManager fileManager

Class org.richfaces.photoalbum.ui.UserExpiredPhaseListener extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

phase

javax.faces.event.PhaseId phase

Class org.richfaces.photoalbum.ui.UserPrefsHelper extends Object implements Serializable

serialVersionUID: -1767281809514660171L

Serialized Fields

avatarData

File avatarData

edit

boolean edit

Package org.richfaces.photoalbum.ui.search

Class org.richfaces.photoalbum.ui.search.ImageSearchHelper extends Object implements Serializable

serialVersionUID: -304368268896942902L

Serialized Fields

searchAction

ISearchAction searchAction

selectedOption

ISearchOption selectedOption

options

List<E> options

selectedTab

String selectedTab

searchQuery

String searchQuery

selectedKeyword

String selectedKeyword

keywords

List<E> keywords

seachInMyAlbums

boolean seachInMyAlbums

searchInShared

boolean searchInShared

searchOptionsHolder

org.richfaces.photoalbum.ui.search.SearchInformationHolder searchOptionsHolder

error

javax.enterprise.event.Event<T> error

navEvent

javax.enterprise.event.Event<T> navEvent

Package org.richfaces.photoalbum.util

Class org.richfaces.photoalbum.util.PhotoAlbumException extends Exception implements Serializable

serialVersionUID: -305899531752889504L

Class org.richfaces.photoalbum.util.SessionListener extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

user

User user

imageAction

IImageAction imageAction

em

javax.persistence.EntityManager em

userTracker

LoggedUserTracker userTracker

event

javax.enterprise.event.Event<T> event


RichFaces Photoalbum 4.3.5.Final

Copyright © 2014 JBoss by Red Hat. All Rights Reserved.