Serialized Form


Package org.jboss.crypto

Class org.jboss.crypto.JBossSXProvider extends Provider implements Serializable

serialVersionUID: -2338131128387727845L


Package org.jboss.security

Class org.jboss.security.NestableGroup extends SimplePrincipal implements Serializable

serialVersionUID: 1752783303935807441L

Serialized Fields

rolesStack

LinkedList<E> rolesStack
The stack of the Groups. Elements are pushed/poped by inserting/removing element 0.

Class org.jboss.security.NestablePrincipal extends SimplePrincipal implements Serializable

serialVersionUID: 4628473920470890923L

Serialized Fields

principalStack

LinkedList<E> principalStack
The stack of the Principals. Elements are pushed/poped by inserting/removing element 0.

Class org.jboss.security.RunAsIdentity extends SimplePrincipal implements Serializable

serialVersionUID: -3236178735180485083L

Serialized Fields

runAsRoles

HashSet<E> runAsRoles
The run-as role principals


principalsSet

HashSet<E> principalsSet

Class org.jboss.security.SimpleGroup extends SimplePrincipal implements Serializable

serialVersionUID: 6051859639378507247L

Serialized Fields

members

HashMap<K,V> members

Class org.jboss.security.SimplePrincipal extends Object implements Serializable

serialVersionUID: 7701951188631723261L

Serialized Fields

name

String name

Class org.jboss.security.SubjectInfo extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

authenticatedSubject

Subject authenticatedSubject

roles

org.jboss.security.identity.RoleGroup roles

identities

Set<E> identities

Package org.jboss.security.acl

Class org.jboss.security.acl.ACLEntryImpl extends Object implements Serializable

serialVersionUID: -2985214023383451768L

Serialized Fields

entryID

long entryID

permission

BitMaskPermission permission

bitMask

int bitMask

identity

org.jboss.security.identity.Identity identity

identityOrRole

String identityOrRole

acl

ACLImpl acl

Class org.jboss.security.acl.ACLImpl extends Object implements Serializable

serialVersionUID: -6390609071167528812L

Serialized Fields

aclID

long aclID

resource

org.jboss.security.authorization.Resource resource

resourceAsString

String resourceAsString

entriesMap

Map<K,V> entriesMap

entries

Collection<E> entries

Package org.jboss.security.auth.callback

Class org.jboss.security.auth.callback.JBossCallbackHandler extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

principal

Principal principal

credential

Object credential

Package org.jboss.security.auth.login

Class org.jboss.security.auth.login.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.security.auth.login.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.security.auth.login.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.

Class org.jboss.security.auth.login.XMLLoginConfigImpl extends Configuration implements Serializable

serialVersionUID: -8965860493224188277L

Serialized Fields

loginConfigURL

URL loginConfigURL
The URL to the XML or Sun login configuration


parentConfig

Configuration parentConfig
The inherited configuration we delegate to


validateDTD

boolean validateDTD
A flag indicating if XML configs should be validated


Package org.jboss.security.auth.spi

Class org.jboss.security.auth.spi.InputValidationException extends Exception implements Serializable


Package org.jboss.security.authorization

Class org.jboss.security.authorization.AuthorizationException extends GeneralSecurityException implements Serializable

serialVersionUID: -1345277261367748064L


Package org.jboss.security.cache

Class org.jboss.security.cache.SecurityCacheException extends Exception implements Serializable

serialVersionUID: 1L


Package org.jboss.security.identity.plugins

Class org.jboss.security.identity.plugins.SimpleIdentity extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

name

String name

role

org.jboss.security.identity.Role role

Class org.jboss.security.identity.plugins.SimpleRole extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

roleName

String roleName

parent

org.jboss.security.identity.Role parent

Class org.jboss.security.identity.plugins.SimpleRoleGroup extends SimpleRole implements Serializable

serialVersionUID: 1L

Serialized Fields

roles

ArrayList<E> roles

Package org.jboss.security.identitytrust

Class org.jboss.security.identitytrust.IdentityTrustException extends GeneralSecurityException implements Serializable

serialVersionUID: 1L


Package org.jboss.security.plugins

Class org.jboss.security.plugins.DefaultSecurityManagement extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

handler

CallbackHandler handler

Class org.jboss.security.plugins.JBossPolicyRegistration extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

trace

boolean trace

contextIdToXACMLPolicy

Map<K,V> contextIdToXACMLPolicy

contextIDToJBossPDP

Map<K,V> contextIDToJBossPDP
When the policy configuration file is registered, we directly store a copy of the JBossPDP that has read in the config file


contextIDToACLs

Map<K,V> contextIDToACLs
Map to keep track of the ACLs that have been configured in each context.


configuredACLs

Map<K,V> configuredACLs
Global map that keeps all the configured ACLs keyed by their resource

Class org.jboss.security.plugins.JBossSecurityContext extends Object implements Serializable

serialVersionUID: 1L

Serialized Fields

trace

boolean trace

contextData

Map<K,V> contextData

securityDomain

String securityDomain

subjectInfo

org.jboss.security.SubjectInfo subjectInfo

incomingRunAs

org.jboss.security.RunAs incomingRunAs

outgoingRunAs

org.jboss.security.RunAs outgoingRunAs

iSecurityManagement

org.jboss.security.ISecurityManagement iSecurityManagement

Class org.jboss.security.plugins.NoAccessSecurityManager extends Object implements Serializable

serialVersionUID: -5922913661708382384L

Serialized Fields

securityDomain

String securityDomain

Class org.jboss.security.plugins.NullSecurityManager extends Object implements Serializable

serialVersionUID: -5942994627247826747L

Serialized Fields

securityDomain

String securityDomain



Copyright © 2009 JBoss Inc.. All Rights Reserved.