Serialized Form


Package org.jboss.seam.remoting

Class org.jboss.seam.remoting.NonInjectionRemoting extends Remoting implements Serializable

serialVersionUID: -8985912269669096603L

Class org.jboss.seam.remoting.Remoting extends javax.servlet.http.HttpServlet implements Serializable

serialVersionUID: -3911197516105313424L

Serialized Fields

executionHandlerInstance

javax.enterprise.inject.Instance<T> executionHandlerInstance

interfaceHandlerInstance

javax.enterprise.inject.Instance<T> interfaceHandlerInstance

modelHandlerInstance

javax.enterprise.inject.Instance<T> modelHandlerInstance

translatorInstance

javax.enterprise.inject.Instance<T> translatorInstance

servletConfig

javax.servlet.ServletConfig servletConfig

pollTimeout

int pollTimeout

pollInterval

int pollInterval

debug

boolean debug

cachedConfig

Map<K,V> cachedConfig
We use a Map for this because a Servlet can serve requests for more than one context path.


resourceCache

Map<K,V> resourceCache

Package org.jboss.seam.remoting.annotationparser

Class org.jboss.seam.remoting.annotationparser.ParseException extends Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.


expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.


tokenImage

String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.


eol

String eol
The end of line string for this machine.

Class org.jboss.seam.remoting.annotationparser.Token extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

kind

int kind
An integer that describes the kind of this token. This numbering system is determined by JavaCCParser, and a table of these numbers is stored in the file ...Constants.java.


beginLine

int beginLine
The line number of the first character of this Token.


beginColumn

int beginColumn
The column number of the first character of this Token.


endLine

int endLine
The line number of the last character of this Token.


endColumn

int endColumn
The column number of the last character of this Token.


image

String image
The string image of the token.


next

Token next
A reference to the next regular (non-special) token from the input stream. If this is the last token from the input stream, or if the token manager has not read tokens beyond this one, this field is set to null. This is true only if this token is also a regular token. Otherwise, see below for a description of the contents of this field.


specialToken

Token specialToken
This field is used to access special tokens that occur prior to this token, but after the immediately preceding regular (non-special) token. If there are no such special tokens, this field is set to null. When there are more than one such special token, this field refers to the last of these special tokens, which in turn refers to the next previous special token through its specialToken field, and so on until the first special token (whose specialToken field is null). The next fields of special tokens refer to other special tokens that immediately follow it (without an intervening regular token). If there is no such token, this field is null.

Class org.jboss.seam.remoting.annotationparser.TokenMgrError extends Error implements Serializable

serialVersionUID: 1L

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.


Package org.jboss.seam.remoting.annotationparser.syntaxtree

Class org.jboss.seam.remoting.annotationparser.syntaxtree.Annotation extends Object implements Serializable

Serialized Fields

f0

NodeChoice f0

Class org.jboss.seam.remoting.annotationparser.syntaxtree.AnnotationsUnit extends Object implements Serializable

Serialized Fields

f0

NodeOptional f0

Class org.jboss.seam.remoting.annotationparser.syntaxtree.BooleanLiteral extends Object implements Serializable

Serialized Fields

f0

NodeChoice f0

Class org.jboss.seam.remoting.annotationparser.syntaxtree.ClassOrInterfaceType extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

f1

NodeListOptional f1

f2

NodeOptional f2

Class org.jboss.seam.remoting.annotationparser.syntaxtree.Literal extends Object implements Serializable

Serialized Fields

f0

NodeChoice f0

Class org.jboss.seam.remoting.annotationparser.syntaxtree.MarkerAnnotation extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

f1

Name f1

Class org.jboss.seam.remoting.annotationparser.syntaxtree.MemberValue extends Object implements Serializable

Serialized Fields

f0

NodeChoice f0

Class org.jboss.seam.remoting.annotationparser.syntaxtree.MemberValueArrayInitializer extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

f1

MemberValue f1

f2

NodeListOptional f2

f3

NodeOptional f3

f4

NodeToken f4

Class org.jboss.seam.remoting.annotationparser.syntaxtree.MemberValuePair extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

f1

NodeToken f1

f2

MemberValue f2

Class org.jboss.seam.remoting.annotationparser.syntaxtree.MemberValuePairs extends Object implements Serializable

Serialized Fields

f0

MemberValuePair f0

f1

NodeListOptional f1

Class org.jboss.seam.remoting.annotationparser.syntaxtree.Name extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

f1

NodeListOptional f1

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NodeChoice extends Object implements Serializable

Serialized Fields

choice

Node choice

which

int which

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NodeList extends Object implements Serializable

Serialized Fields

nodes

Vector<E> nodes

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NodeListOptional extends Object implements Serializable

Serialized Fields

nodes

Vector<E> nodes

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NodeOptional extends Object implements Serializable

Serialized Fields

node

Node node

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NodeSequence extends Object implements Serializable

Serialized Fields

nodes

Vector<E> nodes

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NodeToken extends Object implements Serializable

Serialized Fields

tokenImage

String tokenImage

specialTokens

Vector<E> specialTokens

beginLine

int beginLine

beginColumn

int beginColumn

endLine

int endLine

endColumn

int endColumn

kind

int kind

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NormalAnnotation extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

f1

Name f1

f2

NodeToken f2

f3

NodeOptional f3

f4

NodeToken f4

Class org.jboss.seam.remoting.annotationparser.syntaxtree.NullLiteral extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

Class org.jboss.seam.remoting.annotationparser.syntaxtree.PrimitiveType extends Object implements Serializable

Serialized Fields

f0

NodeChoice f0

Class org.jboss.seam.remoting.annotationparser.syntaxtree.SingleMemberAnnotation extends Object implements Serializable

Serialized Fields

f0

NodeToken f0

f1

Name f1

f2

NodeToken f2

f3

MemberValue f3

f4

NodeToken f4

Package org.jboss.seam.remoting.model

Class org.jboss.seam.remoting.model.Model extends Object implements Serializable

serialVersionUID: 8318288750036758325L

Serialized Fields

beanManager

javax.enterprise.inject.spi.BeanManager beanManager

id

String id

callContext

CallContext callContext

action

Call action

beanProperties

Map<K,V> beanProperties

Class org.jboss.seam.remoting.model.Model.BeanProperty extends Object implements Serializable

serialVersionUID: 540993772239615536L

Serialized Fields

bean

javax.enterprise.inject.spi.Bean<T> bean

propertyName

String propertyName

value

Object value

Class org.jboss.seam.remoting.model.ModelRegistry extends Object implements Serializable

serialVersionUID: -2952670948046596460L

Serialized Fields

beanManager

javax.enterprise.inject.spi.BeanManager beanManager

models

Map<K,V> models

Package org.jboss.seam.remoting.wrapper

Class org.jboss.seam.remoting.wrapper.ConversionException extends Exception implements Serializable

serialVersionUID: 5584559762846984501L



Copyright © 2011 Seam Framework. All Rights Reserved.