Serialized Form


Package org.japano

Class org.japano.ForbiddenException extends java.lang.RuntimeException implements Serializable

Class org.japano.IDMechanism extends Enum implements Serializable

Class org.japano.JapanoException extends java.lang.RuntimeException implements Serializable

Class org.japano.NotFoundException extends java.lang.RuntimeException implements Serializable

Class org.japano.Servlet extends javax.servlet.http.HttpServlet implements Serializable

Serialized Fields

botSessions

java.util.Map<K,V> botSessions

welcomeAction

java.lang.String welcomeAction

_default

javax.servlet.RequestDispatcher _default

defaultLock

java.lang.Integer defaultLock

actionConfig

ActionConfig actionConfig

requestType

java.lang.Class<T> requestType

requestConstr

java.lang.reflect.Constructor<T> requestConstr

Class org.japano.Session extends java.lang.Object implements Serializable

serialVersionUID: -4950062358932883243L

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Throws:
java.io.IOException
java.lang.ClassNotFoundException
Serialized Fields

idMechanism

IDMechanism idMechanism
Specifies

 

view

View view
The current view.

 

id

java.lang.String id
id of this session

 

created

long created
Time stamp of the creation of this session.

 

firstAccess

long firstAccess
Time stamp of the first access of this session.

 

lastAccess

long lastAccess
Time stamp of the last access of this session.

 

selectionValues

java.util.Hashtable<K,V> selectionValues
Maps the valid values for a dynamic selection.

 

attributes

java.util.Hashtable<K,V> attributes
The attributes of this session.

 

valAttrLock

java.io.Serializable valAttrLock
proxy lock object for validationAttributes

 

ac

int ac
the current action count

 

maxInactiveInterval

int maxInactiveInterval
the maximum amount of milliseconds a session can be inactive.

 

pingPongCount

int pingPongCount
The next ping pong context id.

 

bot

boolean bot
Holds value of property bot.


viewSave

View viewSave

locale

java.util.Locale locale
Holds value of property locale.

Class org.japano.SkipPageException extends java.lang.RuntimeException implements Serializable

Class org.japano.View extends java.lang.Object implements Serializable

serialVersionUID: -4564148637425366957L

Serialized Fields

attributes

java.util.Map<K,V> attributes
Maps an attribute name (String) to an Object. Is used as initial page context.

 

URI

java.lang.String URI
URI of this view.

 

hasNamedMessages

boolean hasNamedMessages
true if one of the messages has a parameter name.

 

messages

java.util.List<E> messages
Messages to be displayed in this view.

 

Class org.japano.View.Message extends java.lang.Object implements Serializable

serialVersionUID: 4393553949079325553L

Serialized Fields

paramName

java.lang.String paramName
name of the HTTP parameter that caused the message.

 

message

java.lang.String message
message string

 

actionClass

java.lang.Class<T> actionClass

fieldId

java.lang.String fieldId

Package org.japano.action

Class org.japano.action.ActionConfig extends java.lang.Object implements Serializable

serialVersionUID: -1842571593619767133L

Serialized Fields

actions

java.util.Map<K,V> actions
Maps action names to ActionConfig instances. Since it is not modified after initial configuration it does not need to be synchronized.

 

Class org.japano.action.ActionMapping extends Parametrized implements Serializable

serialVersionUID: 2370785801182153895L

Serialized Fields

beans

java.util.List<E> beans
Contains all beans for this action mapping.

 

tagLibrary

java.lang.String tagLibrary
The library URI of the tag of this action mapping.

 

name

java.lang.String name
Name of the tag of this action mapping.

 

repeatable

boolean repeatable
true, if the action is repeatable.

 

qName

java.lang.String qName
Qualified name of the mapped action (without extension).


extension

java.lang.String extension
The extension of the qualified name


hasTag

boolean hasTag

requiredMarker

java.lang.String requiredMarker
Holds value of property requiredMarker.

Class org.japano.action.Bean extends Parametrized implements Serializable

serialVersionUID: -8868206688841791961L

Serialized Fields

methodName

java.lang.String methodName
Name of the method on the parent to obtain an instance of this Bean.

 

actionMapping

ActionMapping actionMapping
action mapping to which this bean belongs.

 

name

java.lang.String name
name of the action mapping

Class org.japano.action.InvalidParameterException extends java.lang.RuntimeException implements Serializable

Serialized Fields

parameterName

java.lang.String parameterName

Class org.japano.action.ListValidator extends java.lang.Object implements Serializable

Serialized Fields

values

java.util.List<E> values
valid values.

 

Class org.japano.action.MissingParameterException extends java.lang.RuntimeException implements Serializable

Serialized Fields

parameterName

java.lang.String parameterName

Class org.japano.action.Parameter extends java.lang.Object implements Serializable

serialVersionUID: -8510359996355974760L

Serialized Fields

required

boolean required
is parameter is required by the action?

 

requiredMessage

java.lang.String requiredMessage
Message to display if the parameter is required, but not present.


name

java.lang.String name
Holds name of the HTTP parameter. if it is not set, the property is used as default.

 

property

java.lang.String property
Contains the property of the action to write the parameter value to.

 

description

java.lang.String description
description of the parameter.

 

parent

Parametrized parent
Parent bean of this parameter. Is null if the parameter is the child of an action.

 

validator

Validator validator
validator for this parameter or null.

 

errorMessage

java.lang.String errorMessage
Error message displayed when the validation fails.


qualifiedName

java.lang.String qualifiedName
The qualified HTTP parameter name.

 

defaultValue

java.lang.String defaultValue
The default form value for this parameter.

 

Class org.japano.action.Parametrized extends java.lang.Object implements Serializable

serialVersionUID: -3571663133388135927L

Serialized Fields

parameters

java.util.List<E> parameters
Contains all parameters.

 

klass

java.lang.Class<T> klass
Contains the class type.

 

Class org.japano.action.RangeValidator extends java.lang.Object implements Serializable

serialVersionUID: -1222071102296916385L

Serialized Fields

lo

int lo
the smallest valid value.

 

hi

int hi
the highest valid value.

 

Class org.japano.action.RegExValidator extends java.lang.Object implements Serializable

serialVersionUID: 4202089889226688168L

Serialized Fields

pattern

java.util.regex.Pattern pattern
the expression against which the parameter value is matched.

 

Package org.japano.action.parameter

Class org.japano.action.parameter.Attribute extends Parameter implements Serializable

serialVersionUID: 2741873465769103748L

Class org.japano.action.parameter.HTMLEdit extends TextArea implements Serializable

serialVersionUID: -8150938696064964601L

Class org.japano.action.parameter.Info extends Parameter implements Serializable

serialVersionUID: -256068531432212742L

Class org.japano.action.parameter.Password extends TextField implements Serializable

serialVersionUID: -2317021383761815962L

Class org.japano.action.parameter.Radio extends Parameter implements Serializable

serialVersionUID: -4697788390416921041L

Serialized Fields

names

java.util.List<E> names
Contains the tag names for all options

 

values

java.util.List<E> values
Contains the values for all options

 

Class org.japano.action.parameter.Select extends Parameter implements Serializable

serialVersionUID: 8094191251360560495L

Serialized Fields

texts

java.util.List<E> texts
Display texts for the options. is null for a dynamic selection.

 

values

java.util.List<E> values
Display values for the options. is null for a dynamic selection.

 

multiSelect

boolean multiSelect
can multiple items in the list be selected?

 

textsMethodName

java.lang.String textsMethodName
Method to call to get the texts.

 

textsMethodTakesRequest

boolean textsMethodTakesRequest

valuesMethodTakesRequest

boolean valuesMethodTakesRequest

valuesMethodName

java.lang.String valuesMethodName
Method to call to get the values.

 

Class org.japano.action.parameter.Submit extends Parameter implements Serializable

serialVersionUID: -3688836392098162534L

Serialized Fields

submitFunctionName

java.lang.String submitFunctionName

Class org.japano.action.parameter.TextArea extends Parameter implements Serializable

serialVersionUID: 6478945864126676529L

Serialized Fields

maxLength

int maxLength
Maximum length of the text in the text area.

 

Class org.japano.action.parameter.TextField extends Parameter implements Serializable

serialVersionUID: 1499954637405902759L

Serialized Fields

maxLength

int maxLength
Maximum length of the text field.

 

Package org.japano.el

Class org.japano.el.ELException extends java.lang.RuntimeException implements Serializable


Package org.japano.metadata

Class org.japano.metadata.BodyContent extends Enum implements Serializable

Class org.japano.metadata.GenericTypeInfo extends java.lang.Object implements Serializable

serialVersionUID: 984091535731509101L

Serialized Fields

type

java.lang.String type
Type this info describes


properties

java.util.Map<K,V> properties

Class org.japano.metadata.TagType extends Enum implements Serializable

Serialized Fields

javadocName

java.lang.String javadocName

annotationName

java.lang.String annotationName

parameterType

java.lang.Class<T> parameterType

Package org.japano.util

Class org.japano.util.Enum extends java.lang.Object implements Serializable

serialVersionUID: 3185933742204682676L

Serialization Methods

readResolve

protected java.lang.Object readResolve()
                                throws java.io.InvalidObjectException
Replaces a deserialized enum instance with an already existing instance of the same type with the same identifier

Throws:
java.io.InvalidObjectException - if no such replacement exists.
Serialized Fields

identifier

java.lang.Object identifier
Identifier object which identifies this Enum instance. Must be unique within all instances of the same type. Is also used as serialization replacement for this instance

 

Class org.japano.util.XMLParseException extends java.lang.RuntimeException implements Serializable

Serialized Fields

lineNr

int lineNr
Where the error occurred, or -1 if the line number is unknown.