Serialized Form


Package org.jboss.seam.faces.qualifier

Class org.jboss.seam.faces.qualifier.FacesLiteral extends AnnotationLiteral<Faces> implements Serializable

serialVersionUID: 1L


Package org.jboss.seam.faces.validation

Class org.jboss.seam.faces.validation.InputElement extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

id

String id

clientId

String clientId

component

UIInput component

value

Object value

Class org.jboss.seam.faces.validation.ValidatorException extends ValidatorException implements Serializable

serialVersionUID: 1L


Package org.jboss.seam.international.datetimezone

Class org.jboss.seam.international.datetimezone.ForwardingDateTimeZone extends org.joda.time.DateTimeZone implements Serializable


Package org.jboss.seam.international.jdktimezone

Class org.jboss.seam.international.jdktimezone.ForwardingTimeZone extends TimeZone implements Serializable


Package org.jboss.seam.international.status

Class org.jboss.seam.international.status.ApplicationBundles extends Object implements Serializable

serialVersionUID: 1207758648760266247L

Serialized Fields

bundles

Map<K,V> bundles

appLocale

Locale appLocale

Class org.jboss.seam.international.status.MessageFactory extends Object implements Serializable

serialVersionUID: -7899463141244189001L

Serialized Fields

manager

BeanManager manager

Package org.jboss.seam.international.status.builder

Class org.jboss.seam.international.status.builder.BundleKey extends Object implements Serializable

serialVersionUID: -4817189437146173796L

Serialized Fields

bundle

String bundle

key

String key

Package org.jboss.seam.jcr.annotations

Class org.jboss.seam.jcr.annotations.JcrConfigurationLiteral extends AnnotationLiteral<JcrConfiguration> implements Serializable

Serialized Fields

name

String name

value

String value

Package org.jboss.seam.jms

Package org.jboss.seam.jms.annotations

Class org.jboss.seam.jms.annotations.JmsDestination.JmsDestinationLiteral extends AnnotationLiteral<JmsDestination> implements Serializable

Serialized Fields

jndiName

String jndiName

Class org.jboss.seam.jms.annotations.JmsSessionSelector.JmsSessionSelectorLiteral extends AnnotationLiteral<JmsSessionSelector> implements Serializable

serialVersionUID: 7495801629674469699L

Serialized Fields

acknowledgementMode

int acknowledgementMode

transacted

boolean transacted

Package org.jboss.seam.jms.bridge

Package org.jboss.seam.mail.core

Class org.jboss.seam.mail.core.AttachmentException extends MailException implements Serializable

serialVersionUID: 1L

Class org.jboss.seam.mail.core.Header extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

value

String value

Class org.jboss.seam.mail.core.InvalidAddressException extends MailException implements Serializable

serialVersionUID: 1L

Class org.jboss.seam.mail.core.MailConfig extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

serverHost

String serverHost

serverPort

Integer serverPort

domainName

String domainName

username

String username

password

String password

enableTls

Boolean enableTls

requireTls

Boolean requireTls

enableSsl

Boolean enableSsl

auth

Boolean auth

jndiSessionName

String jndiSessionName

Class org.jboss.seam.mail.core.MailException extends RuntimeException implements Serializable

serialVersionUID: 1L

Class org.jboss.seam.mail.core.SendFailedException extends MailException implements Serializable

serialVersionUID: 1L

Class org.jboss.seam.mail.core.TemplatingException extends MailException implements Serializable

serialVersionUID: 1L


Package org.jboss.seam.remoting

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

serialVersionUID: -8985912269669096603L

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

serialVersionUID: -3911197516105313424L

Serialized Fields

executionHandlerInstance

Instance<T> executionHandlerInstance

interfaceHandlerInstance

Instance<T> interfaceHandlerInstance

modelHandlerInstance

Instance<T> modelHandlerInstance

translatorInstance

Instance<T> translatorInstance

servletConfig

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

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

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

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


Package org.jboss.seam.reports

Package org.jboss.seam.reports.exceptions

Class org.jboss.seam.reports.exceptions.IllegalReportDataSourceException extends ReportException implements Serializable

serialVersionUID: 1L

Class org.jboss.seam.reports.exceptions.ReportException extends RuntimeException implements Serializable

serialVersionUID: 1L

Class org.jboss.seam.reports.exceptions.UnsupportedReportOutputException extends ReportException implements Serializable

serialVersionUID: 1L


Package org.jboss.seam.reports.spi

Class org.jboss.seam.reports.spi.CharSequenceReport extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

charSequence

CharSequence charSequence

reportDefinition

ReportDefinition reportDefinition

Package org.jboss.seam.rest.client

Class org.jboss.seam.rest.client.RestClient.RestClientLiteral extends AnnotationLiteral<RestClient> implements Serializable

serialVersionUID: -8456396489504116441L

Serialized Fields

value

String value

Package org.jboss.seam.rest.exceptions

Class org.jboss.seam.rest.exceptions.RestRequest.RestRequestLiteral extends AnnotationLiteral<RestRequest> implements Serializable

serialVersionUID: 2990603884151025895L

Class org.jboss.seam.rest.exceptions.UnhandledException extends RuntimeException implements Serializable

serialVersionUID: 2094785191554517720L


Package org.jboss.seam.rest.validation

Class org.jboss.seam.rest.validation.ValidateRequest.ValidateLiteral extends AnnotationLiteral<ValidateRequest> implements Serializable

serialVersionUID: 6404662043744038090L

Serialized Fields

groups

Class<T>[] groups

validateMessageBody

boolean validateMessageBody

validateResourceFields

boolean validateResourceFields

Class org.jboss.seam.rest.validation.ValidationException extends RuntimeException implements Serializable

serialVersionUID: -2779809222298578247L

Serialized Fields

violations

Set<E> violations

Package org.jboss.seam.security

Class org.jboss.seam.security.AuthenticationException extends SecurityException implements Serializable

serialVersionUID: -7486433031372506270L

Class org.jboss.seam.security.AuthorizationException extends SecurityException implements Serializable

serialVersionUID: -981091398588455903L

Class org.jboss.seam.security.NotLoggedInException extends SecurityException implements Serializable

serialVersionUID: -2708471484839030465L

Class org.jboss.seam.security.SecurityDefinitionException extends SecurityException implements Serializable

serialVersionUID: -5683365417825375411L

Class org.jboss.seam.security.SecurityException extends RuntimeException implements Serializable

serialVersionUID: 789326682407249952L


Package org.jboss.seam.security.permission

Class org.jboss.seam.security.permission.Permission extends Object implements Serializable

serialVersionUID: 8998625911493711034L

Serialized Fields

resource

Object resource

permission

String permission

identity

org.picketlink.idm.spi.model.IdentityObject identity

Package org.jboss.seam.social

Class org.jboss.seam.social.JsonMapper extends Object implements Serializable

serialVersionUID: -2012295612034078749L

Serialized Fields

delegate

org.codehaus.jackson.map.ObjectMapper delegate

Class org.jboss.seam.social.MultiServicesManagerImpl extends Object implements Serializable

serialVersionUID: 2681869484541158766L

Serialized Fields

serviceInstances

Instance<T> serviceInstances

socialConfig

SeamSocialExtension socialConfig

listOfServices

List<E> listOfServices

services

Set<E> services

currentService

OAuthService currentService

Class org.jboss.seam.social.OAuthServiceBase extends Object implements Serializable

serialVersionUID: -8423894021913341674L

Serialized Fields

settings

OAuthServiceSettings settings

provider

OAuthProvider provider

log

Logger log

sessionSettings

OAuthSessionSettings sessionSettings

settingsInstances

Instance<T> settingsInstances

ip

InjectionPoint ip

socialConfig

SeamSocialExtension socialConfig

type

String type

qualifier

Annotation qualifier

myProfile

UserProfile myProfile

connected

boolean connected

status

String status

Class org.jboss.seam.social.OAuthServiceJackson extends OAuthServiceBase implements Serializable

serialVersionUID: -7806134655399349774L

Serialized Fields

jsonMapper

JsonMapper jsonMapper

Class org.jboss.seam.social.OAuthServiceSettingsImpl extends Object implements Serializable

serialVersionUID: -8018722725677732853L

Serialized Fields

apiKey

String apiKey

apiSecret

String apiSecret

callback

String callback

scope

String scope

serviceName

String serviceName

Class org.jboss.seam.social.SeamSocialException extends RuntimeException implements Serializable

serialVersionUID: 8149354996979746574L

Class org.jboss.seam.social.UserProfile extends Object implements Serializable

Serialized Fields

id

String id

Package org.jboss.seam.social.oauth

Package org.jboss.seam.social.rest

Package org.jboss.seam.social.scribe

Class org.jboss.seam.social.scribe.OAuthRequestScribe extends Object implements Serializable

serialVersionUID: 6560621737726192278L

Serialized Fields

request

org.scribe.model.OAuthRequest request

Class org.jboss.seam.social.scribe.OAuthTokenScribe extends Object implements Serializable

serialVersionUID: 6598671815429418539L

Serialized Fields

delegate

org.scribe.model.Token delegate

Package org.jboss.seam.transaction.literal

Class org.jboss.seam.transaction.literal.DefaultTransactionLiteral extends AnnotationLiteral<DefaultTransaction> implements Serializable

Class org.jboss.seam.transaction.literal.TransactionScopedLiteral extends AnnotationLiteral<TransactionScoped> implements Serializable


Package org.jboss.seam.validation

Class org.jboss.seam.validation.ValidationInterceptor extends Object implements Serializable

serialVersionUID: 604440259030722151L

Serialized Fields

validator

Validator validator

Package org.jboss.solder.beanManager

Class org.jboss.solder.beanManager.BeanManagerUnavailableException extends RuntimeException implements Serializable

serialVersionUID: 1435183932012902556L

Serialized Fields

providers

List<E> providers

Package org.jboss.solder.exception.control

Class org.jboss.solder.exception.control.ExceptionStack extends Object implements Serializable

serialVersionUID: 5988683320170873619L

Serialized Fields

root

boolean root

last

boolean last

initialStackSize

int initialStackSize

next

Throwable next

remaining

Collection<E> remaining

exceptionStackItems

Deque<E> exceptionStackItems

origExceptionStackItems

Deque<E> origExceptionStackItems

causes

Collection<E> causes

current

Throwable current

Class org.jboss.solder.exception.control.ExceptionStackItem extends Object implements Serializable

serialVersionUID: 3082750572813491654L

Serialized Fields

throwable

Throwable throwable

stackTraceElements

StackTraceElement[] stackTraceElements

Class org.jboss.solder.exception.control.ExceptionToCatch extends Object implements Serializable

serialVersionUID: 2629791852079147814L

Serialized Fields

exception

Throwable exception

handled

boolean handled

Package org.jboss.solder.exception.control.literal

Class org.jboss.solder.exception.control.literal.CatchResourceLiteral extends AnnotationLiteral<CatchResource> implements Serializable

serialVersionUID: 6883247605552338316L

Class org.jboss.solder.exception.control.literal.HandlesExceptionsLiteral extends AnnotationLiteral<HandlesExceptions> implements Serializable

serialVersionUID: -6775381615228078023L


Package org.jboss.solder.literal

Class org.jboss.solder.literal.AlternativeLiteral extends AnnotationLiteral<Alternative> implements Serializable

serialVersionUID: -6775559481124288825L

Class org.jboss.solder.literal.AnyLiteral extends AnnotationLiteral<Any> implements Serializable

serialVersionUID: -6858406907917381581L

Class org.jboss.solder.literal.ApplicationScopedLiteral extends AnnotationLiteral<ApplicationScoped> implements Serializable

serialVersionUID: 771021755170432223L

Class org.jboss.solder.literal.ClientLiteral extends AnnotationLiteral<Client> implements Serializable

serialVersionUID: -8137340248362361317L

Class org.jboss.solder.literal.ConversationScopedLiteral extends AnnotationLiteral<ConversationScoped> implements Serializable

serialVersionUID: 5401967809387903628L

Class org.jboss.solder.literal.DecoratorLiteral extends AnnotationLiteral<Decorator> implements Serializable

serialVersionUID: -1928591929455611481L

Class org.jboss.solder.literal.DefaultLiteral extends AnnotationLiteral<Default> implements Serializable

serialVersionUID: -8137340248362361317L

Class org.jboss.solder.literal.DelegateLiteral extends AnnotationLiteral<Delegate> implements Serializable

serialVersionUID: -533933286126296678L

Class org.jboss.solder.literal.DependentLiteral extends AnnotationLiteral<Dependent> implements Serializable

serialVersionUID: 5192230580203842740L

Class org.jboss.solder.literal.DisposesLiteral extends AnnotationLiteral<Disposes> implements Serializable

serialVersionUID: 1L

Class org.jboss.solder.literal.ExactLiteral extends AnnotationLiteral<Exact> implements Serializable

serialVersionUID: 4907169607105615674L

Serialized Fields

clazz

Class<T> clazz

Class org.jboss.solder.literal.InjectLiteral extends AnnotationLiteral<Inject> implements Serializable

serialVersionUID: -5547537708250537848L

Class org.jboss.solder.literal.MessageBundleLiteral extends AnnotationLiteral<MessageBundle> implements Serializable

serialVersionUID: -8137340248362361317L

Serialized Fields

projectCode

String projectCode

Class org.jboss.solder.literal.ModelLiteral extends AnnotationLiteral<Model> implements Serializable

serialVersionUID: -5353345766867563825L

Class org.jboss.solder.literal.NamedLiteral extends AnnotationLiteral<Named> implements Serializable

serialVersionUID: 6678418208030413302L

Serialized Fields

value

String value

Class org.jboss.solder.literal.NewLiteral extends AnnotationLiteral<New> implements Serializable

serialVersionUID: 1415328933091019248L

Serialized Fields

value

Class<T> value

Class org.jboss.solder.literal.NonbindingLiteral extends AnnotationLiteral<Nonbinding> implements Serializable

serialVersionUID: -7557062245283879531L

Class org.jboss.solder.literal.NormalScopeLiteral extends AnnotationLiteral<NormalScope> implements Serializable

serialVersionUID: -7952939796914825978L

Serialized Fields

passivating

boolean passivating

Class org.jboss.solder.literal.ObservesLiteral extends AnnotationLiteral<Observes> implements Serializable

serialVersionUID: 338211360805208962L

Serialized Fields

during

TransactionPhase during

notifyObserver

Reception notifyObserver

receives

Reception receives

Class org.jboss.solder.literal.ProducesLiteral extends AnnotationLiteral<Produces> implements Serializable

serialVersionUID: -469820656132063897L

Class org.jboss.solder.literal.RequestScopedLiteral extends AnnotationLiteral<RequestScoped> implements Serializable

serialVersionUID: -5604316881255438090L

Class org.jboss.solder.literal.RequiresLiteral extends AnnotationLiteral<Requires> implements Serializable

serialVersionUID: 4907169607105615674L

Serialized Fields

classes

String[] classes

Class org.jboss.solder.literal.ResourceLiteral extends AnnotationLiteral<Resource> implements Serializable

serialVersionUID: 4907169607105615674L

Serialized Fields

name

String name

Class org.jboss.solder.literal.SessionScopedLiteral extends AnnotationLiteral<SessionScoped> implements Serializable

serialVersionUID: 6685344750969701818L

Class org.jboss.solder.literal.SpecializesLiteral extends AnnotationLiteral<Specializes> implements Serializable

serialVersionUID: -4047999133165777219L

Class org.jboss.solder.literal.StereotypeLiteral extends AnnotationLiteral<Stereotype> implements Serializable

serialVersionUID: 6496685599507738216L

Class org.jboss.solder.literal.TypedLiteral extends AnnotationLiteral<Typed> implements Serializable

serialVersionUID: -5651065504705966480L

Serialized Fields

value

Class<T>[] value

Class org.jboss.solder.literal.UnwrapsLiteral extends AnnotationLiteral<Unwraps> implements Serializable

serialVersionUID: -8137340248362361317L

Class org.jboss.solder.literal.VetoLiteral extends AnnotationLiteral<Veto> implements Serializable

serialVersionUID: -8137340248362361317L


Package org.jboss.solder.logging

Class org.jboss.solder.logging.Logger extends Object implements Serializable

serialVersionUID: 2699068144024070551L

Serialized Fields

delegate

org.jboss.solder.logging.internal.Logger delegate

Package org.jboss.solder.reflection

Class org.jboss.solder.reflection.NullMemberException extends RuntimeException implements Serializable

serialVersionUID: 8300345829555326883L

Serialized Fields

annotationType

Class<T> annotationType

method

Method method

Package org.jboss.solder.resourceLoader

Class org.jboss.solder.resourceLoader.ResourceProvider extends Object implements Serializable

serialVersionUID: -4463427096501401965L

Serialized Fields

urlProvider

Instance<T> urlProvider

inputStreamProvider

Instance<T> inputStreamProvider

propertiesBundleProvider

Instance<T> propertiesBundleProvider

urlsProvider

Instance<T> urlsProvider

inputStreamsProvider

Instance<T> inputStreamsProvider

propertiesBundlesProvider

Instance<T> propertiesBundlesProvider

streamsCache

Set<E> streamsCache

Package org.jboss.solder.servlet.event.literal

Class org.jboss.solder.servlet.event.literal.DestroyedLiteral extends AnnotationLiteral<Destroyed> implements Serializable

serialVersionUID: -6004283843896030539L

Class org.jboss.solder.servlet.event.literal.DidActivateLiteral extends AnnotationLiteral<DidActivate> implements Serializable

serialVersionUID: -7542956885080035383L

Class org.jboss.solder.servlet.event.literal.HttpMethodLiteral extends AnnotationLiteral<HttpMethod> implements Serializable

Serialized Fields

value

String value

Class org.jboss.solder.servlet.event.literal.InitializedLiteral extends AnnotationLiteral<Initialized> implements Serializable

serialVersionUID: 3140645410138297667L

Class org.jboss.solder.servlet.event.literal.PathLiteral extends AnnotationLiteral<Path> implements Serializable

serialVersionUID: -6004283842766030539L

Serialized Fields

value

String value

Class org.jboss.solder.servlet.event.literal.StartedLiteral extends AnnotationLiteral<Started> implements Serializable

serialVersionUID: 3140645410138322634L

Class org.jboss.solder.servlet.event.literal.WillPassivateLiteral extends AnnotationLiteral<WillPassivate> implements Serializable

serialVersionUID: 1008760745325853191L


Package org.jboss.solder.servlet.http.literal

Class org.jboss.solder.servlet.http.literal.CookieParamLiteral extends AnnotationLiteral<CookieParam> implements Serializable

Serialized Fields

value

String value

Class org.jboss.solder.servlet.http.literal.HeaderParamLiteral extends AnnotationLiteral<HeaderParam> implements Serializable

Serialized Fields

value

String value

Class org.jboss.solder.servlet.http.literal.RequestParamLiteral extends AnnotationLiteral<RequestParam> implements Serializable

Serialized Fields

value

String value

Package org.jboss.solder.servlet.literal

Class org.jboss.solder.servlet.literal.WebRequestLiteral extends AnnotationLiteral<WebRequest> implements Serializable

serialVersionUID: -6004283843896130532L



Copyright © 2011 Seam Framework. All Rights Reserved.