Serialized Form
-
Package com.fasterxml.jackson.annotation
-
Class com.fasterxml.jackson.annotation.JacksonInject.Value extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.annotation.JsonAutoDetect.Value extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
_creatorVisibility
JsonAutoDetect.Visibility _creatorVisibility
-
_fieldVisibility
JsonAutoDetect.Visibility _fieldVisibility
-
_getterVisibility
JsonAutoDetect.Visibility _getterVisibility
-
_isGetterVisibility
JsonAutoDetect.Visibility _isGetterVisibility
-
_setterVisibility
JsonAutoDetect.Visibility _setterVisibility
-
-
Class com.fasterxml.jackson.annotation.JsonFormat.Value extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_features
JsonFormat.Features _features
- Since:
- 2.6
-
_lenient
Boolean _lenient
- Since:
- 2.9
-
_locale
Locale _locale
-
_pattern
String _pattern
-
_shape
JsonFormat.Shape _shape
-
_timezoneStr
String _timezoneStr
-
-
Class com.fasterxml.jackson.annotation.JsonIgnoreProperties.Value extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.annotation.JsonInclude.Value extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
_contentFilter
Class<?> _contentFilter
- Since:
- 2.9
-
_contentInclusion
JsonInclude.Include _contentInclusion
-
_valueFilter
Class<?> _valueFilter
- Since:
- 2.9
-
_valueInclusion
JsonInclude.Include _valueInclusion
-
-
Class com.fasterxml.jackson.annotation.JsonIncludeProperties.Value extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.annotation.JsonSetter.Value extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.annotation.ObjectIdGenerator extends Object implements Serializable
-
Class com.fasterxml.jackson.annotation.ObjectIdGenerator.IdKey extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
hashCode
int hashCode
-
key
Object key
Object for which Object Id was generated: can NOT be null. -
scope
Class<?> scope
Scope of the Object Id (may be null, to denote global) -
type
Class<?> type
Type ofObjectIdGenerator
used for generating Object Id
-
-
Class com.fasterxml.jackson.annotation.ObjectIdGenerators.IntSequenceGenerator extends com.fasterxml.jackson.annotation.ObjectIdGenerators.Base<Integer> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.annotation.ObjectIdGenerators.None extends ObjectIdGenerator<Object> implements Serializable
-
Class com.fasterxml.jackson.annotation.ObjectIdGenerators.PropertyGenerator extends com.fasterxml.jackson.annotation.ObjectIdGenerators.Base<Object> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.annotation.ObjectIdGenerators.StringIdGenerator extends com.fasterxml.jackson.annotation.ObjectIdGenerators.Base<String> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.annotation.ObjectIdGenerators.UUIDGenerator extends com.fasterxml.jackson.annotation.ObjectIdGenerators.Base<UUID> implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.core
-
Class com.fasterxml.jackson.core.Base64Variant extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
_maxLineLength
int _maxLineLength
Maximum number of encoded base64 characters to output during encoding before adding a linefeed, if line length is to be limited (Integer.MAX_VALUE
if not limited).Note: for some output modes (when writing attributes) linefeeds may need to be avoided, and this value ignored.
-
_name
String _name
Symbolic name of variant; used for diagnostics/debugging.Note that this is the only non-transient field; used when reading back from serialized state.
Also: must not be private, accessed from `BaseVariants`
-
_paddingChar
char _paddingChar
Character used for padding, if any (Base64Variant.PADDING_CHAR_NONE
if not). -
_paddingReadBehaviour
Base64Variant.PaddingReadBehaviour _paddingReadBehaviour
Whether padding characters should be required or not while decoding- Since:
- 2.12
-
_writePadding
boolean _writePadding
Whether this variant uses padding when writing out content or not.- Since:
- 2.12
-
-
Class com.fasterxml.jackson.core.JacksonException extends IOException implements Serializable
- serialVersionUID:
- 123L
-
Class com.fasterxml.jackson.core.JsonFactory extends TokenStreamFactory implements Serializable
- serialVersionUID:
- 2L
-
Serialization Methods
-
readResolve
protected Object readResolve()
Method that we need to override to actually make restoration go through constructors etc: needed to allow JDK serializability of factory instances.Note: must be overridden by sub-classes as well.
-
-
Serialized Fields
-
_characterEscapes
CharacterEscapes _characterEscapes
Definition of custom character escapes to use for generators created by this factory, if any. If null, standard data format specific escapes are used. -
_factoryFeatures
int _factoryFeatures
Currently enabled factory features. -
_generatorFeatures
int _generatorFeatures
Currently enabled generator features. -
_inputDecorator
InputDecorator _inputDecorator
Optional helper object that may decorate input sources, to do additional processing on input during parsing. -
_maximumNonEscapedChar
int _maximumNonEscapedChar
Optional threshold used for automatically escaping character above certain character code value: either0
to indicate that no threshold is specified, or value at or above 127 to indicate last character code that is NOT automatically escaped (but depends on other configuration rules for checking).- Since:
- 2.10
-
_objectCodec
ObjectCodec _objectCodec
Object that implements conversion functionality between Java objects and JSON content. For base JsonFactory implementation usually not set by default, but can be explicitly set. Sub-classes (like @link org.codehaus.jackson.map.MappingJsonFactory} usually provide an implementation. -
_outputDecorator
OutputDecorator _outputDecorator
Optional helper object that may decorate output object, to do additional processing on output during content generation. -
_parserFeatures
int _parserFeatures
Currently enabled parser features. -
_quoteChar
char _quoteChar
Character used for quoting field names (if field name quoting has not been disabled withJsonWriteFeature.QUOTE_FIELD_NAMES
) and JSON String values. -
_rootValueSeparator
SerializableString _rootValueSeparator
Separator used between root-level values, if any; null indicates "do not add separator". Default separator is a single space character.- Since:
- 2.1
-
_streamReadConstraints
StreamReadConstraints _streamReadConstraints
Read constraints to use forJsonParser
s constructed using this factory.- Since:
- 2.15
-
-
Class com.fasterxml.jackson.core.JsonGenerationException extends StreamWriteException implements Serializable
- serialVersionUID:
- 123L
-
Class com.fasterxml.jackson.core.JsonLocation extends Object implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_columnNr
int _columnNr
-
_contentReference
ContentReference _contentReference
Reference to input source; never null (but may be that ofContentReference.unknown()
).- Since:
- 2.13 (before we have
_sourceRef
(Object-valued)
-
_lineNr
int _lineNr
-
_totalBytes
long _totalBytes
-
_totalChars
long _totalChars
-
-
Class com.fasterxml.jackson.core.JsonParseException extends StreamReadException implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.core.JsonpCharacterEscapes extends CharacterEscapes implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.core.JsonPointer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
writeReplace
private Object writeReplace()
-
-
Serialized Fields
-
_asString
String _asString
We will retain representation of the pointer, as a String, so thatJsonPointer.toString()
should be as efficient as possible.NOTE: starting with 2.14, there is no accompanying
JsonPointer._asStringOffset
that MUST be considered with this String; thisString
may contain preceding path, as it is now full path of parent pointer, except for the outermost pointer instance. -
_asStringOffset
int _asStringOffset
- Since:
- 2.14
-
_hashCode
int _hashCode
Lazily-calculated hash code: need to retain hash code now that we can no longer rely onJsonPointer._asString
being the exact full representation (it is often "more", including parent path).- Since:
- 2.14
-
_head
JsonPointer _head
Reference from currently matching segment (if any) to node before leaf. Lazily constructed if/as needed.NOTE: we'll use `volatile` here assuming that this is unlikely to become a performance bottleneck. If it becomes one we can probably just drop it and things still should work (despite warnings as per JMM regarding visibility (and lack thereof) of unguarded changes).
- Since:
- 2.5
-
_matchingElementIndex
int _matchingElementIndex
-
_matchingPropertyName
String _matchingPropertyName
-
_nextSegment
JsonPointer _nextSegment
Reference to rest of the pointer beyond currently matching segment (if any); null if this pointer refers to the matching segment.
-
-
Class com.fasterxml.jackson.core.JsonProcessingException extends JacksonException implements Serializable
- serialVersionUID:
- 123L
-
Serialized Fields
-
_location
JsonLocation _location
-
-
Class com.fasterxml.jackson.core.StreamReadConstraints extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_maxNestingDepth
int _maxNestingDepth
-
_maxNumLen
int _maxNumLen
-
_maxStringLen
int _maxStringLen
-
-
Class com.fasterxml.jackson.core.TokenStreamFactory extends Object implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.core.Version extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.core.exc
-
Class com.fasterxml.jackson.core.exc.InputCoercionException extends StreamReadException implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.core.exc.StreamConstraintsException extends JsonProcessingException implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.core.exc.StreamReadException extends JsonProcessingException implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_requestPayload
RequestPayload _requestPayload
Optional payload that can be assigned to pass along for error reporting or handling purposes. Core streaming parser implementations DO NOT initialize this; it is up to using applications and frameworks to populate it.
-
-
Class com.fasterxml.jackson.core.exc.StreamWriteException extends JsonProcessingException implements Serializable
- serialVersionUID:
- 2L
-
-
Package com.fasterxml.jackson.core.io
-
Class com.fasterxml.jackson.core.io.CharacterEscapes extends Object implements Serializable
-
Class com.fasterxml.jackson.core.io.ContentReference extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException
- Throws:
IOException
-
readResolve
protected Object readResolve()
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
_isContentTextual
boolean _isContentTextual
Marker flag to indicate whether included content is textual or not: this is taken to mean, by default, that a snippet of content may be displayed for exception messages. -
_length
int _length
For static content, indicates length of content in the static array.-1
if not in use. -
_offset
int _offset
For static content, indicates offset from the beginning of static array.-1
if not in use.
-
-
Class com.fasterxml.jackson.core.io.InputDecorator extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.core.io.JsonEOFException extends JsonParseException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_token
JsonToken _token
Type of token that was being decoded, if parser had enough information to recognize type (such as starting double-quote for Strings)
-
-
Class com.fasterxml.jackson.core.io.OutputDecorator extends Object implements Serializable
-
Class com.fasterxml.jackson.core.io.SerializedString extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException
- Throws:
IOException
-
readResolve
protected Object readResolve()
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
_quotedChars
char[] _quotedChars
-
_quotedUTF8Ref
byte[] _quotedUTF8Ref
-
_unquotedUTF8Ref
byte[] _unquotedUTF8Ref
-
_value
String _value
-
-
-
Package com.fasterxml.jackson.core.util
-
Class com.fasterxml.jackson.core.util.DefaultIndenter extends DefaultPrettyPrinter.NopIndenter implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
charsPerLevel
int charsPerLevel
-
eol
String eol
-
indents
char[] indents
-
-
Class com.fasterxml.jackson.core.util.DefaultPrettyPrinter extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_arrayIndenter
DefaultPrettyPrinter.Indenter _arrayIndenter
By default, let's use only spaces to separate array values. -
_objectFieldValueSeparatorWithSpaces
String _objectFieldValueSeparatorWithSpaces
- Since:
- 2.9
-
_objectIndenter
DefaultPrettyPrinter.Indenter _objectIndenter
By default, let's use linefeed-adding indenter for separate object entries. We'll further configure indenter to use system-specific linefeeds, and 2 spaces per level (as opposed to, say, single tabs) -
_rootSeparator
SerializableString _rootSeparator
String printed between root-level values, if any. -
_separators
Separators _separators
- Since:
- 2.9
-
_spacesInObjectEntries
boolean _spacesInObjectEntries
By default we will add spaces around colons used to separate object fields and values. If disabled, will not use spaces around colon.
-
-
Class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.FixedSpaceIndenter extends DefaultPrettyPrinter.NopIndenter implements Serializable
-
Class com.fasterxml.jackson.core.util.DefaultPrettyPrinter.NopIndenter extends Object implements Serializable
-
Class com.fasterxml.jackson.core.util.InternCache extends ConcurrentHashMap<String,String> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
lock
Object lock
As minor optimization let's try to avoid "flush storms", cases where multiple threads might try to concurrently flush the map.
-
-
Class com.fasterxml.jackson.core.util.MinimalPrettyPrinter extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_rootValueSeparator
String _rootValueSeparator
-
_separators
Separators _separators
- Since:
- 2.9
-
-
Class com.fasterxml.jackson.core.util.RequestPayload extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_charset
String _charset
-
_payloadAsBytes
byte[] _payloadAsBytes
-
_payloadAsText
CharSequence _payloadAsText
-
-
Class com.fasterxml.jackson.core.util.Separators extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
arrayValueSeparator
char arrayValueSeparator
-
objectEntrySeparator
char objectEntrySeparator
-
objectFieldValueSeparator
char objectFieldValueSeparator
-
-
-
Package com.fasterxml.jackson.databind
-
Class com.fasterxml.jackson.databind.AnnotationIntrospector extends Object implements Serializable
-
Class com.fasterxml.jackson.databind.BeanProperty.Std extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_member
AnnotatedMember _member
Physical entity (field, method or constructor argument) that is used to access value of property (or in case of constructor property, just placeholder) -
_metadata
PropertyMetadata _metadata
-
_name
PropertyName _name
-
_type
JavaType _type
-
_wrapperName
PropertyName _wrapperName
-
-
Class com.fasterxml.jackson.databind.DatabindException extends JsonProcessingException implements Serializable
- serialVersionUID:
- 3L
-
Class com.fasterxml.jackson.databind.DeserializationConfig extends MapperConfigBase<DeserializationFeature,DeserializationConfig> implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_coercionConfigs
CoercionConfigs _coercionConfigs
- Since:
- 2.12
-
_ctorDetector
ConstructorDetector _ctorDetector
- Since:
- 2.12
-
_deserFeatures
int _deserFeatures
Set ofDeserializationFeature
s enabled. -
_formatReadFeatures
int _formatReadFeatures
States ofFormatFeature
s to enable/disable.- Since:
- 2.7
-
_formatReadFeaturesToChange
int _formatReadFeaturesToChange
Bitflag ofFormatFeature
s to enable/disable- Since:
- 2.7
-
_nodeFactory
JsonNodeFactory _nodeFactory
Factory used for constructingJsonNode
instances. -
_parserFeatures
int _parserFeatures
States ofJsonParser.Feature
s to enable/disable. -
_parserFeaturesToChange
int _parserFeaturesToChange
Bitflag ofJsonParser.Feature
s to enable/disable -
_problemHandlers
LinkedNode<DeserializationProblemHandler> _problemHandlers
Linked list that contains all registered problem handlers. Implementation as front-added linked list allows for sharing of the list (tail) without copying the list.
-
-
Class com.fasterxml.jackson.databind.DeserializationContext extends DatabindContext implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_cache
DeserializerCache _cache
Object that handle details ofJsonDeserializer
caching. -
_config
DeserializationConfig _config
Generic deserialization processing configuration -
_currentType
LinkedNode<JavaType> _currentType
Type ofJsonDeserializer
(or, more specifically,ContextualDeserializer
) that is being contextualized currently.- Since:
- 2.5
-
_factory
DeserializerFactory _factory
Read-only factory instance; exposed to let owners (ObjectMapper
,ObjectReader
) access it. -
_featureFlags
int _featureFlags
Bitmap ofDeserializationFeature
s that are enabled -
_injectableValues
InjectableValues _injectableValues
Object used for resolving references to injectable values. -
_readCapabilities
JacksonFeatureSet<StreamReadCapability> _readCapabilities
Capabilities of the input format.- Since:
- 2.12
-
_view
Class<?> _view
Currently active view, if any.
-
-
Class com.fasterxml.jackson.databind.InjectableValues.Std extends InjectableValues implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.JavaType extends ResolvedType implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_asStatic
boolean _asStatic
Whether entities defined with this type should be handled using static typing (as opposed to dynamic runtime type) or not.- Since:
- 2.2
-
_class
Class<?> _class
This is the nominal type-erased Class that would be close to the type represented (but not exactly type, due to type erasure: type instance may have more information on this). May be an interface or abstract class, so instantiation may not be possible. -
_hash
int _hash
-
_typeHandler
Object _typeHandler
Optional handler that can be attached to indicate how to handle additional type metadata associated with this type.Note: untyped (i.e. caller has to cast) because it is used for different kinds of handlers, with unrelated types.
-
_valueHandler
Object _valueHandler
Optional handler (codec) that can be attached to indicate what to use for handling (serializing, deserializing) values of this specific type.Note: untyped (i.e. caller has to cast) because it is used for different kinds of handlers, with unrelated types.
-
-
Class com.fasterxml.jackson.databind.JsonMappingException extends DatabindException implements Serializable
- serialVersionUID:
- 3L
-
Serialized Fields
-
_path
LinkedList<JsonMappingException.Reference> _path
Path through which problem that triggering throwing of this exception was reached.
-
-
Class com.fasterxml.jackson.databind.JsonMappingException.Reference extends Object implements Serializable
- serialVersionUID:
- 2L
-
Serialization Methods
-
writeReplace
Object writeReplace()
May need some cleaning here, given that `from` may or may not be serializable. since 2.8
-
-
Serialized Fields
-
_desc
String _desc
Lazily-constructed description of this instance; needed mostly to allow JDK serialization to work in case whereJsonMappingException.Reference._from
is non-serializable (and has to be dropped) but we still want to pass actual description along.- Since:
- 2.8
-
_fieldName
String _fieldName
Name of field (for beans) or key (for Maps) that is part of the reference. May be null for Collection types (which generally haveJsonMappingException.Reference._index
defined), or when resolving Map classes without (yet) having an instance to operate on. -
_index
int _index
Index within aCollection
instance that contained the reference; used if index is relevant and available. If either not applicable, or not available, -1 is used to denote "not known" (or not relevant).
-
-
Class com.fasterxml.jackson.databind.MappingJsonFactory extends JsonFactory implements Serializable
- serialVersionUID:
- -1L
-
Class com.fasterxml.jackson.databind.ObjectMapper extends ObjectCodec implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_coercionConfigs
CoercionConfigs _coercionConfigs
Current set of coercion configuration definitions that define allowed (and not allowed) coercions from secondary shapes.- Since:
- 2.12
-
_configOverrides
ConfigOverrides _configOverrides
Currently active per-type configuration overrides, accessed by declared type of property.- Since:
- 2.9
-
_deserializationConfig
DeserializationConfig _deserializationConfig
Configuration object that defines basic global settings for the serialization process -
_deserializationContext
DefaultDeserializationContext _deserializationContext
Blueprint context object; stored here to allow custom sub-classes. Contains references to objects needed for deserialization construction (cache, factory). -
_injectableValues
InjectableValues _injectableValues
Provider for values to inject in deserialized POJOs. -
_jsonFactory
JsonFactory _jsonFactory
Factory used to createJsonParser
andJsonGenerator
instances as necessary. -
_mixIns
SimpleMixInResolver _mixIns
Mapping that defines how to apply mix-in annotations: key is the type to received additional annotations, and value is the type that has annotations to "mix in".Annotations associated with the value classes will be used to override annotations of the key class, associated with the same field or method. They can be further masked by sub-classes: you can think of it as injecting annotations between the target class and its sub-classes (or interfaces)
- Since:
- 2.6 (earlier was a simple
Map
-
_registeredModuleTypes
Set<Object> _registeredModuleTypes
Set of module types (as perModule.getTypeId()
that have been registered; kept track of iffMapperFeature.IGNORE_DUPLICATE_MODULE_REGISTRATIONS
is enabled, so that duplicate registration calls can be ignored (to avoid adding same handlers multiple times, mostly).- Since:
- 2.5
-
_rootDeserializers
ConcurrentHashMap<JavaType,JsonDeserializer<Object>> _rootDeserializers
We will use a separate main-level Map for keeping track of root-level deserializers. This is where most successful cache lookups get resolved. Map will contain resolvers for all kinds of types, including container types: this is different from the component cache which will only cache bean deserializers.Given that we don't expect much concurrency for additions (should very quickly converge to zero after startup), let's explicitly define a low concurrency setting.
These may are either "raw" deserializers (when no type information is needed for base type), or type-wrapped deserializers (if it is needed)
-
_serializationConfig
SerializationConfig _serializationConfig
Configuration object that defines basic global settings for the serialization process -
_serializerFactory
SerializerFactory _serializerFactory
Serializer factory used for constructing serializers. -
_serializerProvider
DefaultSerializerProvider _serializerProvider
Object that manages access to serializers used for serialization, including caching. It is configured withObjectMapper._serializerFactory
to allow for constructing custom serializers.Note: while serializers are only exposed
SerializerProvider
, mappers and readers need to access additional API defined byDefaultSerializerProvider
-
_subtypeResolver
SubtypeResolver _subtypeResolver
Thing used for registering sub-types, resolving them to super/sub-types as needed. -
_typeFactory
TypeFactory _typeFactory
Specific factory used for creatingJavaType
instances; needed to allow modules to add more custom type handling (mostly to support types of non-Java JVM languages)
-
-
Class com.fasterxml.jackson.databind.ObjectMapper.DefaultTypeResolverBuilder extends StdTypeResolverBuilder implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_appliesFor
ObjectMapper.DefaultTyping _appliesFor
Definition of what types is this default typer valid for. -
_subtypeValidator
PolymorphicTypeValidator _subtypeValidator
PolymorphicTypeValidator
top use for validating that the subtypes resolved are valid for use (usually to protect against possible security issues)- Since:
- 2.10
-
-
Class com.fasterxml.jackson.databind.ObjectReader extends ObjectCodec implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_config
DeserializationConfig _config
General serialization configuration settings; while immutable, can use copy-constructor to create modified instances as necessary. -
_context
DefaultDeserializationContext _context
Blueprint instance of deserialization context; used for creating actual instance when needed. -
_dataFormatReaders
DataFormatReaders _dataFormatReaders
Optional detector used for auto-detecting data format that byte-based input uses.NOTE: If defined non-null,
readValue()
methods that takeReader
orString
input will fail with exception, because format-detection only works on byte-sources. Also, if format cannot be detect reliably (as per detector settings), aStreamReadException
will be thrown).- Since:
- 2.1
-
_filter
TokenFilter _filter
Filter to be consider for JsonParser. Default value to be null as filter not considered. -
_injectableValues
InjectableValues _injectableValues
Values that can be injected during deserialization, if any. -
_parserFactory
JsonFactory _parserFactory
Factory used for constructingJsonGenerator
s -
_rootDeserializer
JsonDeserializer<Object> _rootDeserializer
We may pre-fetch deserializer as soon asObjectReader._valueType
is known, and if so, reuse it afterwards. This allows avoiding further deserializer lookups and increases performance a bit on cases where readers are reused.- Since:
- 2.1
-
_rootDeserializers
ConcurrentHashMap<JavaType,JsonDeserializer<Object>> _rootDeserializers
Root-level cached deserializers. Passed byObjectMapper
, shared with it. -
_schema
FormatSchema _schema
When using data format that uses a schema, schema is passed to parser. -
_unwrapRoot
boolean _unwrapRoot
Flag that indicates whether root values are expected to be unwrapped or not -
_valueToUpdate
Object _valueToUpdate
Instance to update with data binding; if any. If null, a new instance is created, if non-null, properties of this value object will be updated instead. Note that value can be of almost any type, except notArrayType
; array types cannot be modified because array size is immutable. -
_valueType
JavaType _valueType
Declared type of value to instantiate during deserialization. Defines which deserializer to use; as well as base type of instance to construct if an updatable value is not configured to be used (subject to changes by embedded type information, for polymorphic types). IfObjectReader._valueToUpdate
is non-null, only used for locating deserializer.
-
-
Class com.fasterxml.jackson.databind.ObjectWriter extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_config
SerializationConfig _config
General serialization configuration settings -
_generatorFactory
JsonFactory _generatorFactory
Factory used for constructingJsonGenerator
s -
_generatorSettings
ObjectWriter.GeneratorSettings _generatorSettings
Container for settings that need to be passed toJsonGenerator
constructed for serializing values.- Since:
- 2.5
-
_prefetch
ObjectWriter.Prefetch _prefetch
We may pre-fetch serializer if root type is known (has been explicitly declared), and if so, reuse it afterwards. This allows avoiding further serializer lookups and increases performance a bit on cases where readers are reused.- Since:
- 2.5
-
_serializerFactory
SerializerFactory _serializerFactory
-
_serializerProvider
DefaultSerializerProvider _serializerProvider
-
-
Class com.fasterxml.jackson.databind.ObjectWriter.GeneratorSettings extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
characterEscapes
CharacterEscapes characterEscapes
Caller may want to specify character escaping details, either as defaults, or on call-by-call basis. -
prettyPrinter
PrettyPrinter prettyPrinter
To allow for dynamic enabling/disabling of pretty printing, pretty printer can be optionally configured for writer as well -
rootValueSeparator
SerializableString rootValueSeparator
Caller may want to override so-called "root value separator", String added (verbatim, with no quoting or escaping) between values in root context. Default value is a single space character, but this is often changed to linefeed. -
schema
FormatSchema schema
When using data format that uses a schema, schema is passed to generator.
-
-
Class com.fasterxml.jackson.databind.ObjectWriter.Prefetch extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
rootType
JavaType rootType
Specified root serialization type to use; can be same as runtime type, but usually one of its super types (parent class or interface it implements). -
typeSerializer
TypeSerializer typeSerializer
When dealing with polymorphic types, we cannot pre-fetch serializer, but can pre-fetchTypeSerializer
. -
valueSerializer
JsonSerializer<Object> valueSerializer
We may pre-fetch serializer ifObjectWriter.Prefetch.rootType
is known, and if so, reuse it afterwards. This allows avoiding further serializer lookups and increases performance a bit on cases where readers are reused.
-
-
Class com.fasterxml.jackson.databind.PropertyMetadata extends Object implements Serializable
- serialVersionUID:
- -1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
Minor optimization: let's canonicalize back to placeholders in cases where there is no real data to consider
-
-
Serialized Fields
-
_contentNulls
Nulls _contentNulls
Settings regarding handling of incoming `null`s, both for value itself and, for structured types, content values (array/Collection elements, Map values).- Since:
- 2.9
-
_defaultValue
String _defaultValue
Optional default value, as String, for property; not used for any functionality by core databind, offered as metadata for extensions. -
_description
String _description
Optional human-readable description associated with the property. -
_index
Integer _index
Optional index of the property within containing Object.- Since:
- 2.4
-
_required
Boolean _required
Three states: required, not required and unknown; unknown represented as null. -
_valueNulls
Nulls _valueNulls
Settings regarding handling of incoming `null`s, both for value itself and, for structured types, content values (array/Collection elements, Map values).- Since:
- 2.9
-
-
Class com.fasterxml.jackson.databind.PropertyName extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
_encodedSimple
SerializableString _encodedSimple
Lazily-constructed efficient representation of the simple name.NOTE: not defined as volatile to avoid performance problem with concurrent access in multi-core environments; due to statelessness of
SerializedString
at most leads to multiple instantiations.- Since:
- 2.4
-
_namespace
String _namespace
Additional namespace, for formats that have such concept (JSON does not, XML does, for example). -
_simpleName
String _simpleName
Basic name of the property.
-
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies extends Object implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.KebabCaseStrategy extends PropertyNamingStrategies.NamingBase implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.LowerCamelCaseStrategy extends PropertyNamingStrategies.NamingBase implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.LowerCaseStrategy extends PropertyNamingStrategies.NamingBase implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.LowerDotCaseStrategy extends PropertyNamingStrategies.NamingBase implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.NamingBase extends PropertyNamingStrategy implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.SnakeCaseStrategy extends PropertyNamingStrategies.NamingBase implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.UpperCamelCaseStrategy extends PropertyNamingStrategies.NamingBase implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategies.UpperSnakeCaseStrategy extends PropertyNamingStrategies.SnakeCaseStrategy implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy extends Object implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.KebabCaseStrategy extends PropertyNamingStrategy.PropertyNamingStrategyBase implements Serializable
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.LowerCaseStrategy extends PropertyNamingStrategy.PropertyNamingStrategyBase implements Serializable
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.LowerCaseWithUnderscoresStrategy extends PropertyNamingStrategy.SnakeCaseStrategy implements Serializable
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.LowerDotCaseStrategy extends PropertyNamingStrategy.PropertyNamingStrategyBase implements Serializable
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.PascalCaseStrategy extends PropertyNamingStrategy.UpperCamelCaseStrategy implements Serializable
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.PropertyNamingStrategyBase extends PropertyNamingStrategy implements Serializable
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.SnakeCaseStrategy extends PropertyNamingStrategy.PropertyNamingStrategyBase implements Serializable
-
Class com.fasterxml.jackson.databind.PropertyNamingStrategy.UpperCamelCaseStrategy extends PropertyNamingStrategy.PropertyNamingStrategyBase implements Serializable
-
Class com.fasterxml.jackson.databind.RuntimeJsonMappingException extends RuntimeException implements Serializable
-
Class com.fasterxml.jackson.databind.SerializationConfig extends MapperConfigBase<SerializationFeature,SerializationConfig> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_defaultPrettyPrinter
PrettyPrinter _defaultPrettyPrinter
If "default pretty-printing" is enabled, it will create the instance from this blueprint object.- Since:
- 2.6
-
_filterProvider
FilterProvider _filterProvider
Object used for resolving filter ids to filter instances. Non-null if explicitly defined; null by default. -
_formatWriteFeatures
int _formatWriteFeatures
States ofFormatFeature
s to enable/disable.- Since:
- 2.7
-
_formatWriteFeaturesToChange
int _formatWriteFeaturesToChange
Bitflag ofFormatFeature
s to enable/disable- Since:
- 2.7
-
_generatorFeatures
int _generatorFeatures
States ofJsonGenerator.Feature
s to enable/disable. -
_generatorFeaturesToChange
int _generatorFeaturesToChange
Bitflag ofJsonGenerator.Feature
s to enable/disable -
_serFeatures
int _serFeatures
Set ofSerializationFeature
s enabled.
-
-
-
Package com.fasterxml.jackson.databind.cfg
-
Class com.fasterxml.jackson.databind.cfg.BaseSettings extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_accessorNaming
AccessorNamingStrategy.Provider _accessorNaming
Provider for creatingAccessorNamingStrategy
instances to use- Since:
- 2.12
-
_annotationIntrospector
AnnotationIntrospector _annotationIntrospector
Introspector used for accessing annotation value based configuration. -
_classIntrospector
ClassIntrospector _classIntrospector
Introspector used to figure out Bean properties needed for bean serialization and deserialization. Overridable so that it is possible to change low-level details of introspection, like adding new annotation types. -
_dateFormat
DateFormat _dateFormat
Custom date format to use for deserialization. If specified, will be used instead ofStdDateFormat
.Note that the configured format object will be cloned once per deserialization process (first time it is needed)
-
_defaultBase64
Base64Variant _defaultBase64
Explicitly defaultBase64Variant
to use for handling binary data (byte[]
), used with data formats that use base64 encoding (like JSON, CSV).- Since:
- 2.1
-
_handlerInstantiator
HandlerInstantiator _handlerInstantiator
Object used for creating instances of handlers (serializers, deserializers, type and type id resolvers), given class to instantiate. This is typically used to do additional configuration (with dependency injection, for example) beyond simply construction of instances; or to use alternative constructors. -
_locale
Locale _locale
DefaultLocale
used with serialization formats. Default value isLocale.getDefault()
. -
_propertyNamingStrategy
PropertyNamingStrategy _propertyNamingStrategy
Custom property naming strategy in use, if any. -
_timeZone
TimeZone _timeZone
DefaultTimeZone
used with serialization formats, if (and only if!) explicitly set by use; otherwise `null` to indicate "use default", which means "UTC" (from Jackson 2.7); earlier versions (up to 2.6) used "GMT".Note that if a new value is set, timezone is also assigned to
BaseSettings._dateFormat
of this object. -
_typeFactory
TypeFactory _typeFactory
Specific factory used for creatingJavaType
instances; needed to allow modules to add more custom type handling (mostly to support types of non-Java JVM languages) -
_typeResolverBuilder
TypeResolverBuilder<?> _typeResolverBuilder
Builder used to create type resolver for serializing and deserializing values for which polymorphic type handling is needed. -
_typeValidator
PolymorphicTypeValidator _typeValidator
Validator that is used to limit allowed polymorphic subtypes, mostly for security reasons when dealing with untrusted content.- Since:
- 2.10
-
-
Class com.fasterxml.jackson.databind.cfg.CoercionConfig extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_acceptBlankAsEmpty
Boolean _acceptBlankAsEmpty
-
_coercionsByShape
CoercionAction[] _coercionsByShape
Mapping fromCoercionInputShape
into correspondingCoercionAction
.
-
-
Class com.fasterxml.jackson.databind.cfg.CoercionConfigs extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_defaultAction
CoercionAction _defaultAction
Global default for cases not explicitly covered -
_defaultCoercions
MutableCoercionConfig _defaultCoercions
Default coercion definitions used if no overrides found by logical or physical type. -
_perClassCoercions
Map<Class<?>,MutableCoercionConfig> _perClassCoercions
Coercion definitions by physical type (Class). -
_perTypeCoercions
MutableCoercionConfig[] _perTypeCoercions
Coercion definitions by logical type (LogicalType
)
-
-
Class com.fasterxml.jackson.databind.cfg.ConfigOverrides extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_defaultInclusion
JsonInclude.Value _defaultInclusion
- Since:
- 2.9
-
_defaultLeniency
Boolean _defaultLeniency
Global default setting (if any) for leniency: if disabled ({link Boolean#TRUE}), "strict" (not lenient): default setting if absence of value is considered "lenient" in Jackson 2.x. Default setting may be overridden by per-type and per-property settings.- Since:
- 2.10
-
_defaultMergeable
Boolean _defaultMergeable
- Since:
- 2.9
-
_defaultSetterInfo
JsonSetter.Value _defaultSetterInfo
- Since:
- 2.9
-
_overrides
Map<Class<?>,MutableConfigOverride> _overrides
Per-type override definitions -
_visibilityChecker
VisibilityChecker<?> _visibilityChecker
- Since:
- 2.9
-
-
Class com.fasterxml.jackson.databind.cfg.ConstructorDetector extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_allowJDKTypeCtors
boolean _allowJDKTypeCtors
Whether auto-detection of constructors of "JDK types" (those in packagesjava.
andjavax.
) is allowed or not -
_requireCtorAnnotation
boolean _requireCtorAnnotation
Whether explicitJsonCreator
is always required for detecting constructors (even if visible) other than the default (no argument) constructor. -
_singleArgMode
ConstructorDetector.SingleArgConstructor _singleArgMode
-
-
Class com.fasterxml.jackson.databind.cfg.ContextAttributes.Impl extends ContextAttributes implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_shared
Map<?,?> _shared
Shared attributes that we cannot modify in-place.
-
-
Class com.fasterxml.jackson.databind.cfg.DatatypeFeatures extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_enabledFor1
int _enabledFor1
-
_enabledFor2
int _enabledFor2
-
_explicitFor1
int _explicitFor1
-
_explicitFor2
int _explicitFor2
-
-
Class com.fasterxml.jackson.databind.cfg.DeserializerFactoryConfig extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_abstractTypeResolvers
AbstractTypeResolver[] _abstractTypeResolvers
List of objects that may be able to resolve abstract types to concrete types. Used by functionality like "mr Bean" to materialize types as needed. -
_additionalDeserializers
Deserializers[] _additionalDeserializers
List of providers for additional deserializers, checked before considering default basic or bean deserializers. -
_additionalKeyDeserializers
KeyDeserializers[] _additionalKeyDeserializers
List of providers for additional key deserializers, checked before considering standard key deserializers. -
_modifiers
BeanDeserializerModifier[] _modifiers
List of modifiers that can change the wayBeanDeserializer
instances are configured and constructed. -
_valueInstantiators
ValueInstantiators[] _valueInstantiators
List of objects that know how to create instances of POJO types; possibly using custom construction (non-annoted constructors; factory methods external to value type etc). Used to support objects that are created using non-standard methods; or to support post-constructor functionality.
-
-
Class com.fasterxml.jackson.databind.cfg.MapperConfig extends Object implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_base
BaseSettings _base
Immutable container object for simple configuration settings. -
_mapperFeatures
long _mapperFeatures
Set of shared mapper features enabled.NOTE: changed from
int
(in Jackson 2.12 and prior} tolong
(2.13 and later)
-
-
Class com.fasterxml.jackson.databind.cfg.MapperConfigBase extends MapperConfig<T extends MapperConfigBase<CFG,T>> implements Serializable
-
Serialized Fields
-
_attributes
ContextAttributes _attributes
Contextual attributes accessible (get and set) during processing, on per-call basis.- Since:
- 2.3
-
_configOverrides
ConfigOverrides _configOverrides
Configuration overrides to apply, keyed by type of property.- Since:
- 2.8
-
_datatypeFeatures
DatatypeFeatures _datatypeFeatures
Set ofDatatypeFeature
s enabled.- Since:
- 2.14
-
_mixIns
SimpleMixInResolver _mixIns
Mix-in annotation mappings to use, if any: immutable, cannot be changed once defined.- Since:
- 2.6
-
_rootName
PropertyName _rootName
Explicitly defined root name to use, if any; if empty String, will disable root-name wrapping; if null, will use defaults -
_rootNames
RootNameLookup _rootNames
Simple cache used for finding out possible root name for root name wrapping.Note that instances are stateful (for caching) and as such may need to be copied, and may NOT be demoted down to
BaseSettings
.- Since:
- 2.6
-
_subtypeResolver
SubtypeResolver _subtypeResolver
Registered concrete subtypes that can be used instead of (or in addition to) ones declared using annotations.Note that instances are stateful and as such may need to be copied, and may NOT be demoted down to
BaseSettings
. -
_view
Class<?> _view
View to use for filtering out properties to serialize or deserialize. Null if none (will also be assigned null ifObject.class
is defined), meaning that all properties are to be included.
-
-
-
Class com.fasterxml.jackson.databind.cfg.MutableCoercionConfig extends CoercionConfig implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.cfg.MutableConfigOverride extends ConfigOverride implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.cfg.SerializerFactoryConfig extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_additionalKeySerializers
Serializers[] _additionalKeySerializers
List of providers for additional key serializers, checked before considering default key serialializers. -
_additionalSerializers
Serializers[] _additionalSerializers
List of providers for additional serializers, checked before considering default basic or bean serialializers. -
_modifiers
BeanSerializerModifier[] _modifiers
List of modifiers that can change the wayBeanSerializer
instances are configured and constructed.
-
-
-
Package com.fasterxml.jackson.databind.deser
-
Class com.fasterxml.jackson.databind.deser.AbstractDeserializer extends JsonDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_acceptBoolean
boolean _acceptBoolean
-
_acceptDouble
boolean _acceptDouble
-
_acceptInt
boolean _acceptInt
-
_acceptString
boolean _acceptString
-
_backRefProperties
Map<String,SettableBeanProperty> _backRefProperties
-
_baseType
JavaType _baseType
-
_objectIdReader
ObjectIdReader _objectIdReader
-
-
Class com.fasterxml.jackson.databind.deser.BasicDeserializerFactory extends DeserializerFactory implements Serializable
-
Serialized Fields
-
_factoryConfig
DeserializerFactoryConfig _factoryConfig
Configuration settings for this factory; immutable instance (just like this factory), new version created via copy-constructor (fluent-style)
-
-
-
Class com.fasterxml.jackson.databind.deser.BeanDeserializer extends BeanDeserializerBase implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.BeanDeserializerBase extends StdDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_anySetter
SettableAnyProperty _anySetter
Fallback setter used for handling any properties that are not mapped to regular setters. If setter is not null, it will be called once for each such property. -
_arrayDelegateDeserializer
JsonDeserializer<Object> _arrayDelegateDeserializer
Deserializer that is used iff array-delegate-based creator is to be used for deserializing from JSON Object.NOTE: cannot be
final
because we need to get it duringresolve()
method (and not contextualization). -
_backRefs
Map<String,SettableBeanProperty> _backRefs
We may also have one or more back reference fields (usually zero or one). -
_beanProperties
BeanPropertyMap _beanProperties
Mapping of property names to properties, built when all properties to use have been successfully resolved. -
_beanType
JavaType _beanType
Declared type of the bean this deserializer handles. -
_delegateDeserializer
JsonDeserializer<Object> _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object.NOTE: cannot be
final
because we need to get it duringresolve()
method (and not contextualization). -
_externalTypeIdHandler
ExternalTypeHandler _externalTypeIdHandler
Handler that we need iff any of properties uses external type id. -
_ignorableProps
Set<String> _ignorableProps
In addition to properties that are set, we will also keep track of recognized but ignorable properties: these will be skipped without errors or warnings. -
_ignoreAllUnknown
boolean _ignoreAllUnknown
Flag that can be set to ignore and skip unknown properties. If set, will not throw an exception for unknown properties. -
_includableProps
Set<String> _includableProps
Keep track of the the properties that needs to be specifically included. -
_injectables
ValueInjector[] _injectables
List ofValueInjector
s, if any injectable values are expected by the bean; otherwise null. This includes injectors used for injecting values via setters and fields, but not ones passed through constructor parameters. -
_needViewProcesing
boolean _needViewProcesing
Flag that indicates that some aspect of deserialization depends on active view used (if any) -
_nonStandardCreation
boolean _nonStandardCreation
Flag that is set to mark cases where deserialization from Object value using otherwise "standard" property binding will need to use non-default creation method: namely, either "full" delegation (array-delegation does not apply), or properties-based Creator method is used.Note that flag is somewhat mis-named as it is not affected by scalar-delegating creators; it only has effect on Object Value binding.
-
_objectIdReader
ObjectIdReader _objectIdReader
If an Object Id is to be used for value handled by this deserializer, this reader is used for handling. -
_propertyBasedCreator
PropertyBasedCreator _propertyBasedCreator
If the bean needs to be instantiated using constructor or factory method that takes one or more named properties as argument(s), this creator is used for instantiation. This value gets resolved during general resolution. -
_serializationShape
JsonFormat.Shape _serializationShape
Requested shape from bean class annotations. -
_unwrappedPropertyHandler
UnwrappedPropertyHandler _unwrappedPropertyHandler
If one of properties has "unwrapped" value, we need separate helper object -
_valueInstantiator
ValueInstantiator _valueInstantiator
Object that handles details of constructing initial bean value (to which bind data to), unless instance is passed (via updateValue()) -
_vanillaProcessing
boolean _vanillaProcessing
Flag that indicates that no "special features" whatsoever are enabled, so the simplest processing is possible.
-
-
Class com.fasterxml.jackson.databind.deser.BeanDeserializerFactory extends BasicDeserializerFactory implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.BuilderBasedDeserializer extends BeanDeserializerBase implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_buildMethod
AnnotatedMethod _buildMethod
-
_targetType
JavaType _targetType
Type that the builder will produce, target type; as opposed to `handledType()` which refers to Builder class.- Since:
- 2.9
-
-
Class com.fasterxml.jackson.databind.deser.CreatorProperty extends SettableBeanProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_annotated
AnnotatedParameter _annotated
Placeholder that represents constructor parameter, when it is created from actual constructor. May be null when a synthetic instance is created. -
_creatorIndex
int _creatorIndex
- Since:
- 2.1
-
_fallbackSetter
SettableBeanProperty _fallbackSetter
In special cases, when implementing "updateValue", we cannot use constructors or factory methods, but have to fall back on using a setter (or mutable field property). If so, this refers to that fallback accessor.Mutable only to allow setting after construction, but must be strictly set before any use.
- Since:
- 2.3
-
_ignorable
boolean _ignorable
Marker flag that may have to be set during construction, to indicate that although property may have been constructed and added as a placeholder, it represents something that should be ignored during deserialization. This mostly concerns Creator properties which may not be easily deleted during processing.- Since:
- 2.9.4
-
_injectableValue
JacksonInject.Value _injectableValue
Id of value to inject, if value injection should be used for this parameter (in addition to, or instead of, regular deserialization).- Since:
- 2.11
-
-
Class com.fasterxml.jackson.databind.deser.DefaultDeserializationContext extends DeserializationContext implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_objectIdResolvers
List<ObjectIdResolver> _objectIdResolvers
-
-
Class com.fasterxml.jackson.databind.deser.DefaultDeserializationContext.Impl extends DefaultDeserializationContext implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.DeserializerCache extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
writeReplace
Object writeReplace()
-
-
Serialized Fields
-
_cachedDeserializers
LRUMap<JavaType,JsonDeserializer<Object>> _cachedDeserializers
We will also cache some dynamically constructed deserializers; specifically, ones that are expensive to construct. This currently means bean, Enum and container deserializers. -
_incompleteDeserializers
HashMap<JavaType,JsonDeserializer<Object>> _incompleteDeserializers
During deserializer construction process we may need to keep track of partially completed deserializers, to resolve cyclic dependencies. This is the map used for storing deserializers before they are fully complete.
-
-
Class com.fasterxml.jackson.databind.deser.SettableAnyProperty extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
Object readResolve()
Need to define this to verify that we retain actual Method reference
-
-
Serialized Fields
-
_keyDeserializer
KeyDeserializer _keyDeserializer
- Since:
- 2.9
-
_property
BeanProperty _property
Method used for setting "any" properties, along with annotation information. Retained to allow contextualization of any properties. -
_setter
AnnotatedMember _setter
Annotated variant is needed for JDK serialization only -
_setterIsField
boolean _setterIsField
-
_type
JavaType _type
-
_valueDeserializer
JsonDeserializer<Object> _valueDeserializer
-
_valueTypeDeserializer
TypeDeserializer _valueTypeDeserializer
-
-
Class com.fasterxml.jackson.databind.deser.SettableAnyProperty.JsonNodeFieldAnyProperty extends SettableAnyProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_nodeFactory
JsonNodeFactory _nodeFactory
-
-
Class com.fasterxml.jackson.databind.deser.SettableAnyProperty.MapFieldAnyProperty extends SettableAnyProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_valueInstantiator
ValueInstantiator _valueInstantiator
-
-
Class com.fasterxml.jackson.databind.deser.SettableAnyProperty.MethodAnyProperty extends SettableAnyProperty implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.SettableBeanProperty extends ConcreteBeanPropertyBase implements Serializable
-
Serialized Fields
-
_managedReferenceName
String _managedReferenceName
If property represents a managed (forward) reference, we will need the name of reference for later linking.TODO: should try to make immutable.
-
_nullProvider
NullValueProvider _nullProvider
Entity used for possible translation from `null` into non-null value of type of this property. Often same as_valueDeserializer
, but not always.- Since:
- 2.9
-
_objectIdInfo
ObjectIdInfo _objectIdInfo
This is the information for object identity associated with the property.TODO: should try to make immutable.
-
_propertyIndex
int _propertyIndex
Index of property (within all property of a bean); assigned when all properties have been collected. Order of entries is arbitrary, but once indexes are assigned they are not changed.TODO: should try to make immutable if at all possible
-
_propName
PropertyName _propName
Logical name of the property (often but not always derived from the setter method name) -
_type
JavaType _type
Base type for property; may be a supertype of actual value. -
_valueDeserializer
JsonDeserializer<Object> _valueDeserializer
Deserializer used for handling property value.NOTE: has been immutable since 2.3
-
_valueTypeDeserializer
TypeDeserializer _valueTypeDeserializer
If value will contain type information (to support polymorphic handling), this is the type deserializer used to handle type resolution. -
_viewMatcher
ViewMatcher _viewMatcher
Helper object used for checking whether this property is to be included in the active view, if property is view-specific; null otherwise.TODO: should try to make immutable.
-
_wrapperName
PropertyName _wrapperName
- Since:
- 2.2
-
-
-
Class com.fasterxml.jackson.databind.deser.SettableBeanProperty.Delegating extends SettableBeanProperty implements Serializable
-
Serialized Fields
-
delegate
SettableBeanProperty delegate
-
-
-
Class com.fasterxml.jackson.databind.deser.UnresolvedForwardReference extends JsonMappingException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_roid
ReadableObjectId _roid
-
_unresolvedIds
List<UnresolvedId> _unresolvedIds
-
-
Class com.fasterxml.jackson.databind.deser.ValueInstantiator.Base extends ValueInstantiator implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_valueType
Class<?> _valueType
-
-
Class com.fasterxml.jackson.databind.deser.ValueInstantiator.Delegating extends ValueInstantiator implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_delegate
ValueInstantiator _delegate
-
-
-
Package com.fasterxml.jackson.databind.deser.impl
-
Class com.fasterxml.jackson.databind.deser.impl.BeanAsArrayBuilderDeserializer extends BeanDeserializerBase implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_buildMethod
AnnotatedMethod _buildMethod
-
_delegate
BeanDeserializerBase _delegate
Deserializer we delegate operations that we cannot handle. -
_orderedProperties
SettableBeanProperty[] _orderedProperties
Properties in order expected to be found in JSON array. -
_targetType
JavaType _targetType
Type that the builder will produce, target type; as opposed to `handledType()` which refers to Builder class.- Since:
- 2.9
-
-
Class com.fasterxml.jackson.databind.deser.impl.BeanAsArrayDeserializer extends BeanDeserializerBase implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_delegate
BeanDeserializerBase _delegate
Deserializer we delegate operations that we cannot handle. -
_orderedProperties
SettableBeanProperty[] _orderedProperties
Properties in order expected to be found in JSON array.
-
-
Class com.fasterxml.jackson.databind.deser.impl.BeanPropertyMap extends Object implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_aliasDefs
Map<String,List<PropertyName>> _aliasDefs
Configuration of alias mappings, indexed by unmodified property name to unmodified aliases, if any; entries only included for properties that do have aliases. This is is used for constructing actual reverse lookup mapping, if needed, taking into account possible case-insensitivity, as well as possibility of name prefixes.- Since:
- 2.9
-
_aliasMapping
Map<String,String> _aliasMapping
Mapping from secondary names (aliases) to primary names.- Since:
- 2.9
-
_caseInsensitive
boolean _caseInsensitive
- Since:
- 2.5
-
_hashArea
Object[] _hashArea
Hash area that contains key/property pairs in adjacent elements. -
_hashMask
int _hashMask
-
_locale
Locale _locale
We requireLocale
since case changes are locale-sensitive in certain cases (see Turkish I for example)- Since:
- 2.11
-
_propsInOrder
SettableBeanProperty[] _propsInOrder
Array of properties in the exact order they were handed in. This is used by as-array serialization, deserialization. -
_size
int _size
Number of entries stored in the hash area. -
_spillCount
int _spillCount
-
-
Class com.fasterxml.jackson.databind.deser.impl.FailingDeserializer extends StdDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_message
String _message
-
-
Class com.fasterxml.jackson.databind.deser.impl.FieldProperty extends SettableBeanProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
Object readResolve()
-
-
Serialized Fields
-
_annotated
AnnotatedField _annotated
-
_skipNulls
boolean _skipNulls
- Since:
- 2.9
-
-
Class com.fasterxml.jackson.databind.deser.impl.InnerClassProperty extends SettableBeanProperty.Delegating implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
Serialized Fields
-
_annotated
AnnotatedConstructor _annotated
Serializable version of single-arg constructor we use for value instantiation.
-
-
Class com.fasterxml.jackson.databind.deser.impl.ManagedReferenceProperty extends SettableBeanProperty.Delegating implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_backProperty
SettableBeanProperty _backProperty
-
_isContainer
boolean _isContainer
Flag that indicates whether property to handle is a container type (array, Collection, Map) or not. -
_referenceName
String _referenceName
-
-
Class com.fasterxml.jackson.databind.deser.impl.MergingSettableBeanProperty extends SettableBeanProperty.Delegating implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_accessor
AnnotatedMember _accessor
Member (field, method) used for accessing existing value.
-
-
Class com.fasterxml.jackson.databind.deser.impl.MethodProperty extends SettableBeanProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
Object readResolve()
-
-
Serialized Fields
-
_annotated
AnnotatedMethod _annotated
-
_skipNulls
boolean _skipNulls
- Since:
- 2.9
-
-
Class com.fasterxml.jackson.databind.deser.impl.NullsAsEmptyProvider extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_deserializer
JsonDeserializer<?> _deserializer
-
-
Class com.fasterxml.jackson.databind.deser.impl.NullsConstantProvider extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_access
AccessPattern _access
-
_nullValue
Object _nullValue
-
-
Class com.fasterxml.jackson.databind.deser.impl.NullsFailProvider extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_name
PropertyName _name
-
_type
JavaType _type
-
-
Class com.fasterxml.jackson.databind.deser.impl.ObjectIdReader extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_deserializer
JsonDeserializer<Object> _deserializer
Deserializer used for deserializing id values. -
_idType
JavaType _idType
-
generator
ObjectIdGenerator<?> generator
Blueprint generator instance: actual instance will be fetched fromSerializerProvider
using this as the key. -
idProperty
SettableBeanProperty idProperty
-
propertyName
PropertyName propertyName
-
resolver
ObjectIdResolver resolver
-
-
Class com.fasterxml.jackson.databind.deser.impl.ObjectIdReferenceProperty extends SettableBeanProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_forward
SettableBeanProperty _forward
-
-
Class com.fasterxml.jackson.databind.deser.impl.ObjectIdValueProperty extends SettableBeanProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_objectIdReader
ObjectIdReader _objectIdReader
-
-
Class com.fasterxml.jackson.databind.deser.impl.PropertyBasedObjectIdGenerator extends ObjectIdGenerators.PropertyGenerator implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.impl.SetterlessProperty extends SettableBeanProperty implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_annotated
AnnotatedMethod _annotated
-
_getter
Method _getter
Get method for accessing property value used to access property (of Collection or Map type) to modify.
-
-
Class com.fasterxml.jackson.databind.deser.impl.TypeWrappedDeserializer extends JsonDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_deserializer
JsonDeserializer<Object> _deserializer
-
_typeDeserializer
TypeDeserializer _typeDeserializer
-
-
Class com.fasterxml.jackson.databind.deser.impl.UnsupportedTypeDeserializer extends StdDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.impl.ValueInjector extends BeanProperty.Std implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_valueId
Object _valueId
Identifier used for looking up value to inject
-
-
-
Package com.fasterxml.jackson.databind.deser.std
-
Class com.fasterxml.jackson.databind.deser.std.ArrayBlockingQueueDeserializer extends CollectionDeserializer implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.AtomicBooleanDeserializer extends StdScalarDeserializer<AtomicBoolean> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.AtomicIntegerDeserializer extends StdScalarDeserializer<AtomicInteger> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.AtomicLongDeserializer extends StdScalarDeserializer<AtomicLong> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.AtomicReferenceDeserializer extends ReferenceTypeDeserializer<AtomicReference<Object>> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.ByteBufferDeserializer extends StdScalarDeserializer<ByteBuffer> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.CollectionDeserializer extends ContainerDeserializerBase<Collection<Object>> implements Serializable
- serialVersionUID:
- -1L
-
Serialized Fields
-
_delegateDeserializer
JsonDeserializer<Object> _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object. -
_valueDeserializer
JsonDeserializer<Object> _valueDeserializer
Value deserializer. -
_valueInstantiator
ValueInstantiator _valueInstantiator
-
_valueTypeDeserializer
TypeDeserializer _valueTypeDeserializer
If element instances have polymorphic type information, this is the type deserializer that can handle it
-
-
Class com.fasterxml.jackson.databind.deser.std.ContainerDeserializerBase extends StdDeserializer<T> implements Serializable
-
Serialized Fields
-
_containerType
JavaType _containerType
-
_nullProvider
NullValueProvider _nullProvider
Handler we need for dealing with nulls.- Since:
- 2.9
-
_skipNullValues
boolean _skipNullValues
Marker flag set if the_nullProvider
indicates that all null content values should be skipped (instead of being possibly converted).- Since:
- 2.9
-
_unwrapSingle
Boolean _unwrapSingle
Specific override for this instance (from proper, or global per-type overrides) to indicate whether single value may be taken to mean an unwrapped one-element array or not. If null, left to global defaults.- Since:
- 2.9 (demoted from sub-classes where added in 2.7)
-
-
-
Class com.fasterxml.jackson.databind.deser.std.DateDeserializers.CalendarDeserializer extends DateDeserializers.DateBasedDeserializer<Calendar> implements Serializable
-
Serialized Fields
-
_defaultCtor
Constructor<Calendar> _defaultCtor
We may know actual expected type; if so, it will be used for instantiation.- Since:
- 2.9
-
-
-
Class com.fasterxml.jackson.databind.deser.std.DateDeserializers.DateBasedDeserializer extends StdScalarDeserializer<T> implements Serializable
-
Serialized Fields
-
_customFormat
DateFormat _customFormat
Specific format to use, if non-null; if null will just use default format. -
_formatString
String _formatString
Let's also keep format String for reference, to use for error messages
-
-
-
Class com.fasterxml.jackson.databind.deser.std.DateDeserializers.DateDeserializer extends DateDeserializers.DateBasedDeserializer<Date> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.DateDeserializers.SqlDateDeserializer extends DateDeserializers.DateBasedDeserializer<Date> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.DateDeserializers.TimestampDeserializer extends DateDeserializers.DateBasedDeserializer<Timestamp> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.DelegatingDeserializer extends StdDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_delegatee
JsonDeserializer<?> _delegatee
-
-
Class com.fasterxml.jackson.databind.deser.std.EnumDeserializer extends StdScalarDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_caseInsensitive
Boolean _caseInsensitive
-
_enumDefaultValue
Enum<?> _enumDefaultValue
- Since:
- 2.8
-
_enumsByIndex
Object[] _enumsByIndex
-
_isFromIntValue
boolean _isFromIntValue
Marker flag for cases where we expect actual integral value for Enum, based on@JsonValue
(and equivalent) annotated accessor.- Since:
- 2.13
-
_lookupByEnumNaming
CompactStringObjectMap _lookupByEnumNaming
Look up map with key asEnum.name()
converted byEnumNamingStrategy.convertEnumToExternalName(String)
and value as Enums.- Since:
- 2.15
-
_lookupByName
CompactStringObjectMap _lookupByName
- Since:
- 2.7.3
-
_lookupByToString
CompactStringObjectMap _lookupByToString
Alternatively, we may need a different lookup object if "use toString" is defined.- Since:
- 2.7.3
-
_useDefaultValueForUnknownEnum
Boolean _useDefaultValueForUnknownEnum
-
_useNullForUnknownEnum
Boolean _useNullForUnknownEnum
-
-
Class com.fasterxml.jackson.databind.deser.std.EnumMapDeserializer extends ContainerDeserializerBase<EnumMap<?,?>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_delegateDeserializer
JsonDeserializer<Object> _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object. -
_enumClass
Class<?> _enumClass
-
_keyDeserializer
KeyDeserializer _keyDeserializer
-
_propertyBasedCreator
PropertyBasedCreator _propertyBasedCreator
If the Map is to be instantiated using non-default constructor or factory method that takes one or more named properties as argument(s), this creator is used for instantiation. -
_valueDeserializer
JsonDeserializer<Object> _valueDeserializer
-
_valueInstantiator
ValueInstantiator _valueInstantiator
- Since:
- 2.9
-
_valueTypeDeserializer
TypeDeserializer _valueTypeDeserializer
If value instances have polymorphic type information, this is the type deserializer that can handle it
-
-
Class com.fasterxml.jackson.databind.deser.std.EnumSetDeserializer extends StdDeserializer<EnumSet<?>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_enumDeserializer
JsonDeserializer<Enum<?>> _enumDeserializer
-
_enumType
JavaType _enumType
-
_nullProvider
NullValueProvider _nullProvider
Handler we need for dealing with nulls.- Since:
- 2.10.1
-
_skipNullValues
boolean _skipNullValues
Marker flag set if the_nullProvider
indicates that all null content values should be skipped (instead of being possibly converted).- Since:
- 2.10.1
-
_unwrapSingle
Boolean _unwrapSingle
Specific override for this instance (from proper, or global per-type overrides) to indicate whether single value may be taken to mean an unwrapped one-element array or not. If null, left to global defaults.- Since:
- 2.7
-
-
Class com.fasterxml.jackson.databind.deser.std.FromStringDeserializer extends StdScalarDeserializer<T> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.FromStringDeserializer.Std extends FromStringDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_kind
int _kind
-
-
Class com.fasterxml.jackson.databind.deser.std.JsonLocationInstantiator extends ValueInstantiator.Base implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.JsonNodeDeserializer extends com.fasterxml.jackson.databind.deser.std.BaseNodeDeserializer<JsonNode> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.MapDeserializer extends ContainerDeserializerBase<Map<Object,Object>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_checkDupSquash
boolean _checkDupSquash
Flag used to check, whether theStreamReadCapability.DUPLICATE_PROPERTIES
can be applied, because the Map has declared value type ofjava.lang.Object
.- Since:
- 2.14
-
_delegateDeserializer
JsonDeserializer<Object> _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object. -
_hasDefaultCreator
boolean _hasDefaultCreator
-
_ignorableProperties
Set<String> _ignorableProperties
-
_includableProperties
Set<String> _includableProperties
- Since:
- 2.12
-
_inclusionChecker
IgnorePropertiesUtil.Checker _inclusionChecker
Helper object used for name-based filtering- Since:
- 2.12
-
_keyDeserializer
KeyDeserializer _keyDeserializer
Key deserializer to use; either passed via constructor (when indicated by annotations), or resolved whenMapDeserializer.resolve(com.fasterxml.jackson.databind.DeserializationContext)
is called; -
_propertyBasedCreator
PropertyBasedCreator _propertyBasedCreator
If the Map is to be instantiated using non-default constructor or factory method that takes one or more named properties as argument(s), this creator is used for instantiation. -
_standardStringKey
boolean _standardStringKey
-
_valueDeserializer
JsonDeserializer<Object> _valueDeserializer
Value deserializer. -
_valueInstantiator
ValueInstantiator _valueInstantiator
-
_valueTypeDeserializer
TypeDeserializer _valueTypeDeserializer
If value instances have polymorphic type information, this is the type deserializer that can handle it
-
-
Class com.fasterxml.jackson.databind.deser.std.MapEntryDeserializer extends ContainerDeserializerBase<Map.Entry<Object,Object>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_keyDeserializer
KeyDeserializer _keyDeserializer
Key deserializer to use; either passed via constructor (when indicated by annotations), or resolved whenMapEntryDeserializer.createContextual(com.fasterxml.jackson.databind.DeserializationContext, com.fasterxml.jackson.databind.BeanProperty)
is called; -
_valueDeserializer
JsonDeserializer<Object> _valueDeserializer
Value deserializer. -
_valueTypeDeserializer
TypeDeserializer _valueTypeDeserializer
If value instances have polymorphic type information, this is the type deserializer that can handle it
-
-
Class com.fasterxml.jackson.databind.deser.std.NullifyingDeserializer extends StdDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.BigDecimalDeserializer extends StdScalarDeserializer<BigDecimal> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.BigIntegerDeserializer extends StdScalarDeserializer<BigInteger> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.BooleanDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Boolean> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.ByteDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Byte> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.CharacterDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Character> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.DoubleDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Double> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.FloatDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Float> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.IntegerDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Integer> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.LongDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Long> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.NumberDeserializer extends StdScalarDeserializer<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.PrimitiveOrWrapperDeserializer extends StdScalarDeserializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_emptyValue
T _emptyValue
-
_logicalType
LogicalType _logicalType
-
_nullValue
T _nullValue
-
_primitive
boolean _primitive
-
-
Class com.fasterxml.jackson.databind.deser.std.NumberDeserializers.ShortDeserializer extends NumberDeserializers.PrimitiveOrWrapperDeserializer<Short> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.ObjectArrayDeserializer extends ContainerDeserializerBase<Object[]> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_elementClass
Class<?> _elementClass
Type of contained elements: needed for constructing actual result array -
_elementDeserializer
JsonDeserializer<Object> _elementDeserializer
Element deserializer -
_elementTypeDeserializer
TypeDeserializer _elementTypeDeserializer
If element instances have polymorphic type information, this is the type deserializer that can handle it -
_emptyValue
Object[] _emptyValue
- Since:
- 2.12
-
_untyped
boolean _untyped
Flag that indicates whether the component type is Object or not. Used for minor optimization when constructing result.
-
-
Class com.fasterxml.jackson.databind.deser.std.PrimitiveArrayDeserializers extends StdDeserializer<T> implements Serializable
-
Serialized Fields
-
_nuller
NullValueProvider _nuller
Flag that indicates need for special handling; either failing (throw exception) or skipping -
_unwrapSingle
Boolean _unwrapSingle
Specific override for this instance (from proper, or global per-type overrides) to indicate whether single value may be taken to mean an unwrapped one-element array or not. If null, left to global defaults.- Since:
- 2.7
-
-
-
Class com.fasterxml.jackson.databind.deser.std.ReferenceTypeDeserializer extends StdDeserializer<T> implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_fullType
JavaType _fullType
Full type of property (or root value) for which this deserializer has been constructed and contextualized. -
_valueDeserializer
JsonDeserializer<Object> _valueDeserializer
-
_valueInstantiator
ValueInstantiator _valueInstantiator
-
_valueTypeDeserializer
TypeDeserializer _valueTypeDeserializer
-
-
Class com.fasterxml.jackson.databind.deser.std.StackTraceElementDeserializer extends StdScalarDeserializer<StackTraceElement> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_adapterDeserializer
JsonDeserializer<?> _adapterDeserializer
-
-
Class com.fasterxml.jackson.databind.deser.std.StdDelegatingDeserializer extends StdDeserializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_converter
Converter<Object,T> _converter
Converter that was used for creatingStdDelegatingDeserializer._delegateDeserializer
. -
_delegateDeserializer
JsonDeserializer<Object> _delegateDeserializer
Underlying serializer for typeT
. -
_delegateType
JavaType _delegateType
Fully resolved delegate type, with generic information if any available.
-
-
Class com.fasterxml.jackson.databind.deser.std.StdDeserializer extends JsonDeserializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.StdKeyDeserializer extends KeyDeserializer implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_deser
FromStringDeserializer<?> _deser
Some types that are deserialized using a helper deserializer. -
_keyClass
Class<?> _keyClass
-
_kind
int _kind
-
-
Class com.fasterxml.jackson.databind.deser.std.StdKeyDeserializers extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.StdNodeBasedDeserializer extends StdDeserializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_treeDeserializer
JsonDeserializer<Object> _treeDeserializer
-
-
Class com.fasterxml.jackson.databind.deser.std.StdScalarDeserializer extends StdDeserializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.StdValueInstantiator extends ValueInstantiator implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_arrayDelegateArguments
SettableBeanProperty[] _arrayDelegateArguments
-
_arrayDelegateCreator
AnnotatedWithParams _arrayDelegateCreator
-
_arrayDelegateType
JavaType _arrayDelegateType
-
_constructorArguments
SettableBeanProperty[] _constructorArguments
-
_defaultCreator
AnnotatedWithParams _defaultCreator
Default (no-argument) constructor to use for instantiation (withStdValueInstantiator.createUsingDefault(com.fasterxml.jackson.databind.DeserializationContext)
) -
_delegateArguments
SettableBeanProperty[] _delegateArguments
-
_delegateCreator
AnnotatedWithParams _delegateCreator
-
_delegateType
JavaType _delegateType
-
_fromBigDecimalCreator
AnnotatedWithParams _fromBigDecimalCreator
-
_fromBigIntegerCreator
AnnotatedWithParams _fromBigIntegerCreator
-
_fromBooleanCreator
AnnotatedWithParams _fromBooleanCreator
-
_fromDoubleCreator
AnnotatedWithParams _fromDoubleCreator
-
_fromIntCreator
AnnotatedWithParams _fromIntCreator
-
_fromLongCreator
AnnotatedWithParams _fromLongCreator
-
_fromStringCreator
AnnotatedWithParams _fromStringCreator
-
_valueClass
Class<?> _valueClass
- Since:
- 2.8
-
_valueTypeDesc
String _valueTypeDesc
Type of values that are instantiated; used for error reporting purposes. -
_withArgsCreator
AnnotatedWithParams _withArgsCreator
-
-
Class com.fasterxml.jackson.databind.deser.std.StringArrayDeserializer extends StdDeserializer<String[]> implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_elementDeserializer
JsonDeserializer<String> _elementDeserializer
Value serializer to use, if not the standard one (which is inlined) -
_nullProvider
NullValueProvider _nullProvider
Handler we need for dealing with null values as elements- Since:
- 2.9
-
_skipNullValues
boolean _skipNullValues
Marker flag set if the_nullProvider
indicates that all null content values should be skipped (instead of being possibly converted).- Since:
- 2.9
-
_unwrapSingle
Boolean _unwrapSingle
Specific override for this instance (from proper, or global per-type overrides) to indicate whether single value may be taken to mean an unwrapped one-element array or not. If null, left to global defaults.- Since:
- 2.7
-
-
Class com.fasterxml.jackson.databind.deser.std.StringCollectionDeserializer extends ContainerDeserializerBase<Collection<String>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_delegateDeserializer
JsonDeserializer<Object> _delegateDeserializer
Deserializer that is used iff delegate-based creator is to be used for deserializing from JSON Object. -
_valueDeserializer
JsonDeserializer<String> _valueDeserializer
Value deserializer to use, if NOT the standard one (if it is, will be null). -
_valueInstantiator
ValueInstantiator _valueInstantiator
Instantiator used in case custom handling is needed for creation.
-
-
Class com.fasterxml.jackson.databind.deser.std.StringDeserializer extends StdScalarDeserializer<String> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.ThrowableDeserializer extends BeanDeserializer implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.TokenBufferDeserializer extends StdScalarDeserializer<TokenBuffer> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer extends StdDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_listDeserializer
JsonDeserializer<Object> _listDeserializer
-
_listType
JavaType _listType
IfList
has been mapped to non-default implementation, we'll store type here- Since:
- 2.6
-
_mapDeserializer
JsonDeserializer<Object> _mapDeserializer
-
_mapType
JavaType _mapType
IfMap
has been mapped to non-default implementation, we'll store type here- Since:
- 2.6
-
_nonMerging
boolean _nonMerging
- Since:
- 2.9
-
_numberDeserializer
JsonDeserializer<Object> _numberDeserializer
-
_stringDeserializer
JsonDeserializer<Object> _stringDeserializer
-
-
Class com.fasterxml.jackson.databind.deser.std.UntypedObjectDeserializer.Vanilla extends StdDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_nonMerging
boolean _nonMerging
Deprecated.
-
-
Class com.fasterxml.jackson.databind.deser.std.UUIDDeserializer extends FromStringDeserializer<UUID> implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.databind.exc
-
Class com.fasterxml.jackson.databind.exc.IgnoredPropertyException extends PropertyBindingException implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.exc.InvalidDefinitionException extends JsonMappingException implements Serializable
-
Serialized Fields
-
_type
JavaType _type
-
-
-
Class com.fasterxml.jackson.databind.exc.InvalidFormatException extends MismatchedInputException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_value
Object _value
Underlying value that could not be deserialized into target type, if available.
-
-
Class com.fasterxml.jackson.databind.exc.InvalidNullException extends MismatchedInputException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_propertyName
PropertyName _propertyName
Name of property, if known, for which null was encountered.
-
-
Class com.fasterxml.jackson.databind.exc.InvalidTypeIdException extends MismatchedInputException implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.exc.MismatchedInputException extends JsonMappingException implements Serializable
-
Serialized Fields
-
_targetType
Class<?> _targetType
Type of value that was to be deserialized
-
-
-
Class com.fasterxml.jackson.databind.exc.PropertyBindingException extends MismatchedInputException implements Serializable
-
Serialized Fields
-
_propertyIds
Collection<Object> _propertyIds
Set of ids of properties that are known for the type, if this can be statically determined. -
_propertyName
String _propertyName
Note: redundant information since it is also included in the reference path.
-
_referringClass
Class<?> _referringClass
Class that does not contain mapping for the unrecognized property.
-
-
-
Class com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException extends PropertyBindingException implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.exc.ValueInstantiationException extends JsonMappingException implements Serializable
-
Serialized Fields
-
_type
JavaType _type
-
-
-
-
Package com.fasterxml.jackson.databind.ext
-
Class com.fasterxml.jackson.databind.ext.CoreXMLDeserializers.Std extends FromStringDeserializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_kind
int _kind
-
-
Class com.fasterxml.jackson.databind.ext.CoreXMLSerializers.XMLGregorianCalendarSerializer extends StdSerializer<XMLGregorianCalendar> implements Serializable
-
Serialized Fields
-
_delegate
JsonSerializer<Object> _delegate
-
-
-
Class com.fasterxml.jackson.databind.ext.DOMDeserializer extends FromStringDeserializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ext.DOMDeserializer.DocumentDeserializer extends DOMDeserializer<Document> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ext.DOMDeserializer.NodeDeserializer extends DOMDeserializer<Node> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ext.DOMSerializer extends StdSerializer<Node> implements Serializable
-
Serialized Fields
-
transformerFactory
TransformerFactory transformerFactory
-
-
-
Class com.fasterxml.jackson.databind.ext.NioPathDeserializer extends StdScalarDeserializer<Path> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ext.NioPathSerializer extends StdScalarSerializer<Path> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ext.OptionalHandlerFactory extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ext.SqlBlobSerializer extends StdScalarSerializer<Blob> implements Serializable
-
-
Package com.fasterxml.jackson.databind.introspect
-
Class com.fasterxml.jackson.databind.introspect.AccessorNamingStrategy.Base extends AccessorNamingStrategy implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.introspect.AccessorNamingStrategy.Provider extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.introspect.AnnotatedConstructor extends AnnotatedWithParams implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
Serialized Fields
-
_constructor
Constructor<?> _constructor
-
_serialization
com.fasterxml.jackson.databind.introspect.AnnotatedConstructor.Serialization _serialization
Field that is used to make JDK serialization work with this object.- Since:
- 2.1
-
-
Class com.fasterxml.jackson.databind.introspect.AnnotatedField extends AnnotatedMember implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.introspect.AnnotatedMember extends Annotated implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.introspect.AnnotatedMethod extends AnnotatedWithParams implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
Serialized Fields
-
_paramClasses
Class<?>[] _paramClasses
-
_serialization
com.fasterxml.jackson.databind.introspect.AnnotatedMethod.Serialization _serialization
Field that is used to make JDK serialization work with this object.- Since:
- 2.1
-
-
Class com.fasterxml.jackson.databind.introspect.AnnotatedParameter extends AnnotatedMember implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_index
int _index
Index of the parameter within argument list -
_owner
AnnotatedWithParams _owner
Member (method, constructor) that this parameter belongs to -
_type
JavaType _type
JDK type of the parameter, possibly contains generic type information
-
-
Class com.fasterxml.jackson.databind.introspect.AnnotatedWithParams extends AnnotatedMember implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_paramAnnotations
AnnotationMap[] _paramAnnotations
Annotations associated with parameters of the annotated entity (method or constructor parameters)
-
-
Class com.fasterxml.jackson.databind.introspect.AnnotationCollector.NoAnnotations extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.introspect.AnnotationCollector.OneAnnotation extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_type
Class<?> _type
-
_value
Annotation _value
-
-
Class com.fasterxml.jackson.databind.introspect.AnnotationCollector.TwoAnnotations extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_type1
Class<?> _type1
-
_type2
Class<?> _type2
-
_value1
Annotation _value1
-
_value2
Annotation _value2
-
-
Class com.fasterxml.jackson.databind.introspect.AnnotationIntrospectorPair extends AnnotationIntrospector implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_primary
AnnotationIntrospector _primary
-
_secondary
AnnotationIntrospector _secondary
-
-
Class com.fasterxml.jackson.databind.introspect.BasicClassIntrospector extends ClassIntrospector implements Serializable
- serialVersionUID:
- 2L
-
Class com.fasterxml.jackson.databind.introspect.ConcreteBeanPropertyBase extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_metadata
PropertyMetadata _metadata
Additional information about property- Since:
- 2.3
-
-
Class com.fasterxml.jackson.databind.introspect.DefaultAccessorNamingStrategy.Provider extends AccessorNamingStrategy.Provider implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_baseNameValidator
DefaultAccessorNamingStrategy.BaseNameValidator _baseNameValidator
-
_getterPrefix
String _getterPrefix
-
_isGetterPrefix
String _isGetterPrefix
-
_setterPrefix
String _setterPrefix
-
_withPrefix
String _withPrefix
-
-
Class com.fasterxml.jackson.databind.introspect.JacksonAnnotationIntrospector extends AnnotationIntrospector implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
_cfgConstructorPropertiesImpliesCreator
boolean _cfgConstructorPropertiesImpliesCreator
SeeJacksonAnnotationIntrospector.setConstructorPropertiesImpliesCreator(boolean)
for explanation.Defaults to true.
- Since:
- 2.7.4
-
-
Class com.fasterxml.jackson.databind.introspect.NopAnnotationIntrospector extends AnnotationIntrospector implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.introspect.SimpleMixInResolver extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_localMixIns
Map<ClassKey,Class<?>> _localMixIns
Simple mix-in targets defined locally. -
_overrides
ClassIntrospector.MixInResolver _overrides
External resolver that gets called before looking at any locally defined mix-in target classes.
-
-
Class com.fasterxml.jackson.databind.introspect.VirtualAnnotatedMember extends AnnotatedMember implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.introspect.VisibilityChecker.Std extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_creatorMinLevel
JsonAutoDetect.Visibility _creatorMinLevel
-
_fieldMinLevel
JsonAutoDetect.Visibility _fieldMinLevel
-
_getterMinLevel
JsonAutoDetect.Visibility _getterMinLevel
-
_isGetterMinLevel
JsonAutoDetect.Visibility _isGetterMinLevel
-
_setterMinLevel
JsonAutoDetect.Visibility _setterMinLevel
-
-
-
Package com.fasterxml.jackson.databind.json
-
Class com.fasterxml.jackson.databind.json.JsonMapper extends ObjectMapper implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.databind.jsontype
-
Class com.fasterxml.jackson.databind.jsontype.BasicPolymorphicTypeValidator extends PolymorphicTypeValidator.Base implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_baseTypeMatchers
BasicPolymorphicTypeValidator.TypeMatcher[] _baseTypeMatchers
Set of matchers that can validate all values of polymorphic properties that match specified allowed base types. -
_invalidBaseTypes
Set<Class<?>> _invalidBaseTypes
Set of specifically denied base types to indicate that use of specific base types is not allowed: most commonly used to fully block use ofObject
as the base type. -
_subClassMatchers
BasicPolymorphicTypeValidator.TypeMatcher[] _subClassMatchers
Set of matchers that can validate specific values of polymorphic properties that match subtype class criteria. -
_subTypeNameMatchers
BasicPolymorphicTypeValidator.NameMatcher[] _subTypeNameMatchers
Set of matchers that can validate specific values of polymorphic properties that match subtype class name criteria.
-
-
Class com.fasterxml.jackson.databind.jsontype.DefaultBaseTypeLimitingValidator extends PolymorphicTypeValidator implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.NamedType extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.PolymorphicTypeValidator extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.PolymorphicTypeValidator.Base extends PolymorphicTypeValidator implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.databind.jsontype.impl
-
Class com.fasterxml.jackson.databind.jsontype.impl.AsArrayTypeDeserializer extends TypeDeserializerBase implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.impl.AsDeductionTypeDeserializer extends AsPropertyTypeDeserializer implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.impl.AsExternalTypeDeserializer extends AsArrayTypeDeserializer implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.impl.AsPropertyTypeDeserializer extends AsArrayTypeDeserializer implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_inclusion
JsonTypeInfo.As _inclusion
-
_msgForMissingId
String _msgForMissingId
-
_strictTypeIdHandling
boolean _strictTypeIdHandling
Indicates that we should be strict about handling missing type information.- Since:
- 2.15
-
-
Class com.fasterxml.jackson.databind.jsontype.impl.AsWrapperTypeDeserializer extends TypeDeserializerBase implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.impl.LaissezFaireSubTypeValidator extends PolymorphicTypeValidator.Base implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.jsontype.impl.StdSubtypeResolver extends SubtypeResolver implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_registeredSubtypes
LinkedHashSet<NamedType> _registeredSubtypes
-
-
Class com.fasterxml.jackson.databind.jsontype.impl.TypeDeserializerBase extends TypeDeserializer implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_baseType
JavaType _baseType
-
_defaultImpl
JavaType _defaultImpl
Type to use as the default implementation, if type id is missing or cannot be resolved. -
_defaultImplDeserializer
JsonDeserializer<Object> _defaultImplDeserializer
-
_deserializers
Map<String,JsonDeserializer<Object>> _deserializers
For efficient operation we will lazily build mappings from type ids to actual deserializers, once needed. -
_idResolver
TypeIdResolver _idResolver
-
_property
BeanProperty _property
Property that contains value for which type information is included; null if value is a root value. Note that this value is not assigned during construction but only whenTypeDeserializerBase.forProperty(com.fasterxml.jackson.databind.BeanProperty)
is called to create a copy. -
_typeIdVisible
boolean _typeIdVisible
-
_typePropertyName
String _typePropertyName
Name of type property used; needed for non-property versions too, in cases where type id is to be exposed as part of JSON.
-
-
-
Package com.fasterxml.jackson.databind.module
-
Class com.fasterxml.jackson.databind.module.SimpleAbstractTypeResolver extends AbstractTypeResolver implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.module.SimpleDeserializers extends Deserializers.Base implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_classMappings
HashMap<ClassKey,JsonDeserializer<?>> _classMappings
-
_hasEnumDeserializer
boolean _hasEnumDeserializer
Flag to help find "generic" enum deserializer, if one has been registered.- Since:
- 2.3
-
-
Class com.fasterxml.jackson.databind.module.SimpleKeyDeserializers extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_classMappings
HashMap<ClassKey,KeyDeserializer> _classMappings
-
-
Class com.fasterxml.jackson.databind.module.SimpleModule extends Module implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_abstractTypes
SimpleAbstractTypeResolver _abstractTypes
Lazily-constructed resolver used for storing mappings from abstract classes to more specific implementing classes (which may be abstract or concrete) -
_deserializerModifier
BeanDeserializerModifier _deserializerModifier
- Since:
- 2.2
-
_deserializers
SimpleDeserializers _deserializers
-
_hasExplicitName
boolean _hasExplicitName
Flag that indicates whether module was given an explicit name or not. Distinction is used to determine whether methodSimpleModule.getTypeId()
should return name (yes, if explicit) ornull
(if no explicit name was passed).- Since:
- 2.13
-
_keyDeserializers
SimpleKeyDeserializers _keyDeserializers
-
_keySerializers
SimpleSerializers _keySerializers
-
_mixins
HashMap<Class<?>,Class<?>> _mixins
Lazily-constructed map that contains mix-in definitions, indexed by target class, value being mix-in to apply. -
_name
String _name
-
_namingStrategy
PropertyNamingStrategy _namingStrategy
- Since:
- 2.3
-
_serializerModifier
BeanSerializerModifier _serializerModifier
- Since:
- 2.2
-
_serializers
SimpleSerializers _serializers
-
_subtypes
LinkedHashSet<NamedType> _subtypes
Set of subtypes to register, if any. -
_valueInstantiators
SimpleValueInstantiators _valueInstantiators
Lazily-constructed resolver used for storing mappings from abstract classes to more specific implementing classes (which may be abstract or concrete) -
_version
Version _version
-
-
Class com.fasterxml.jackson.databind.module.SimpleSerializers extends Serializers.Base implements Serializable
- serialVersionUID:
- 3L
-
Serialized Fields
-
_classMappings
HashMap<ClassKey,JsonSerializer<?>> _classMappings
Class-based mappings that are used both for exact and sub-class matches. -
_hasEnumSerializer
boolean _hasEnumSerializer
Flag to help find "generic" enum serializer, if one has been registered.- Since:
- 2.3
-
_interfaceMappings
HashMap<ClassKey,JsonSerializer<?>> _interfaceMappings
Interface-based matches.
-
-
Class com.fasterxml.jackson.databind.module.SimpleValueInstantiators extends ValueInstantiators.Base implements Serializable
- serialVersionUID:
- -8929386427526115130L
-
Serialized Fields
-
_classMappings
HashMap<ClassKey,ValueInstantiator> _classMappings
Mappings from raw (type-erased, i.e. non-generic) types to matchingValueInstantiator
instances.
-
-
-
Package com.fasterxml.jackson.databind.node
-
Class com.fasterxml.jackson.databind.node.ArrayNode extends ContainerNode<ArrayNode> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.node.BaseJsonNode extends JsonNode implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
writeReplace
Object writeReplace()
-
-
Class com.fasterxml.jackson.databind.node.BigIntegerNode extends NumericNode implements Serializable
-
Serialized Fields
-
_value
BigInteger _value
-
-
-
Class com.fasterxml.jackson.databind.node.BinaryNode extends ValueNode implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_data
byte[] _data
-
-
Class com.fasterxml.jackson.databind.node.BooleanNode extends ValueNode implements Serializable
- serialVersionUID:
- 2L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
_value
boolean _value
-
-
Class com.fasterxml.jackson.databind.node.ContainerNode extends BaseJsonNode implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_nodeFactory
JsonNodeFactory _nodeFactory
We will keep a reference to the Object (usually TreeMapper) that can construct instances of nodes to add to this container node.
-
-
Class com.fasterxml.jackson.databind.node.DecimalNode extends NumericNode implements Serializable
-
Serialized Fields
-
_value
BigDecimal _value
-
-
-
Class com.fasterxml.jackson.databind.node.DoubleNode extends NumericNode implements Serializable
-
Serialized Fields
-
_value
double _value
-
-
-
Class com.fasterxml.jackson.databind.node.FloatNode extends NumericNode implements Serializable
-
Serialized Fields
-
_value
float _value
-
-
-
Class com.fasterxml.jackson.databind.node.IntNode extends NumericNode implements Serializable
-
Serialized Fields
-
_value
int _value
Integer value this node contains
-
-
-
Class com.fasterxml.jackson.databind.node.JsonNodeFactory extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_cfgBigDecimalExact
boolean _cfgBigDecimalExact
Deprecated.
-
-
Class com.fasterxml.jackson.databind.node.LongNode extends NumericNode implements Serializable
-
Serialized Fields
-
_value
long _value
-
-
-
Class com.fasterxml.jackson.databind.node.MissingNode extends ValueNode implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class com.fasterxml.jackson.databind.node.NullNode extends ValueNode implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class com.fasterxml.jackson.databind.node.NumericNode extends ValueNode implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.node.ObjectNode extends ContainerNode<ObjectNode> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.node.POJONode extends ValueNode implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_value
Object _value
-
-
Class com.fasterxml.jackson.databind.node.ShortNode extends NumericNode implements Serializable
-
Serialized Fields
-
_value
short _value
-
-
-
Class com.fasterxml.jackson.databind.node.TextNode extends ValueNode implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
_value
String _value
-
-
Class com.fasterxml.jackson.databind.node.ValueNode extends BaseJsonNode implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.databind.ser
-
Class com.fasterxml.jackson.databind.ser.BasicSerializerFactory extends SerializerFactory implements Serializable
-
Serialized Fields
-
_factoryConfig
SerializerFactoryConfig _factoryConfig
Configuration settings for this factory; immutable instance (just like this factory), new version created via copy-constructor (fluent-style)
-
-
-
Class com.fasterxml.jackson.databind.ser.BeanPropertyWriter extends PropertyWriter implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
Object readResolve()
-
-
Serialized Fields
-
_cfgSerializationType
JavaType _cfgSerializationType
Type to use for locating serializer; normally same as return type of the accessor method, but may be overridden by annotations. -
_declaredType
JavaType _declaredType
Type property is declared to have, either in class definition or associated annotations. -
_includeInViews
Class<?>[] _includeInViews
Alternate set of property writers used when view-based filtering is available for the Bean. -
_member
AnnotatedMember _member
Member (field, method) that represents property and allows access to associated annotations. -
_name
SerializedString _name
Logical name of the property; will be used as the field name under which value for the property is written.NOTE: do NOT change name of this field; it is accessed by Afterburner module (until 2.4; not directly from 2.5) ALSO NOTE: ... and while it really ought to be `SerializableString`, changing that is also binary-incompatible change. So nope.
-
_nonTrivialBaseType
JavaType _nonTrivialBaseType
Base type of the property, if the declared type is "non-trivial"; meaning it is either a structured type (collection, map, array), or parameterized. Used to retain type information about contained type, which is mostly necessary if type meta-data is to be included. -
_nullSerializer
JsonSerializer<Object> _nullSerializer
Serializer used for writing out null values, if any: if null, null values are to be suppressed. -
_serializer
JsonSerializer<Object> _serializer
Serializer to use for writing out the value: null if it cannot be known statically; non-null if it can. -
_suppressableValue
Object _suppressableValue
Value that is considered default value of the property; used for default-value-suppression if enabled. -
_suppressNulls
boolean _suppressNulls
Whether null values are to be suppressed (nothing written out if value is null) or not. Note that this is a configuration value during construction, and actual handling relies on setting (or not) ofBeanPropertyWriter._nullSerializer
. -
_typeSerializer
TypeSerializer _typeSerializer
If property being serialized needs type information to be included this is the type serializer to use. Declared type (possibly augmented with annotations) of property is used for determining exact mechanism to use (compared to actual runtime type used for serializing actual state). -
_wrapperName
PropertyName _wrapperName
Wrapper name to use for this element, if any- Since:
- 2.2
-
-
Class com.fasterxml.jackson.databind.ser.BeanSerializer extends BeanSerializerBase implements Serializable
- serialVersionUID:
- 29L
-
Class com.fasterxml.jackson.databind.ser.BeanSerializerFactory extends BasicSerializerFactory implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.ContainerSerializer extends StdSerializer<T> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.DefaultSerializerProvider extends SerializerProvider implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.DefaultSerializerProvider.Impl extends DefaultSerializerProvider implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.PropertyWriter extends ConcreteBeanPropertyBase implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.VirtualBeanPropertyWriter extends BeanPropertyWriter implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.databind.ser.impl
-
Class com.fasterxml.jackson.databind.ser.impl.AttributePropertyWriter extends VirtualBeanPropertyWriter implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_attrName
String _attrName
-
-
Class com.fasterxml.jackson.databind.ser.impl.BeanAsArraySerializer extends BeanSerializerBase implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_defaultSerializer
BeanSerializerBase _defaultSerializer
Serializer that would produce JSON Object version; used in cases where array output cannot be used.
-
-
Class com.fasterxml.jackson.databind.ser.impl.FailingSerializer extends StdSerializer<Object> implements Serializable
-
Serialized Fields
-
_msg
String _msg
-
-
-
Class com.fasterxml.jackson.databind.ser.impl.IndexedListSerializer extends AsArraySerializerBase<List<?>> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.impl.IndexedStringListSerializer extends StaticListSerializerBase<List<String>> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.impl.IteratorSerializer extends AsArraySerializerBase<Iterator<?>> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.impl.MapEntrySerializer extends ContainerSerializer<Map.Entry<?,?>> implements Serializable
-
Serialized Fields
-
_dynamicValueSerializers
PropertySerializerMap _dynamicValueSerializers
If value type cannot be statically determined, mapping from runtime value types to serializers are stored in this object. -
_entryType
JavaType _entryType
-
_keySerializer
JsonSerializer<Object> _keySerializer
Key serializer to use, if it can be statically determined -
_keyType
JavaType _keyType
-
_property
BeanProperty _property
Map-valued property being serialized with this instance -
_suppressableValue
Object _suppressableValue
Value that indicates suppression mechanism to use for values contained; either "filter" (of whichequals()
is called), or marker value ofMapEntrySerializer.MARKER_FOR_EMPTY
, or null to indicate no filtering for non-null values. Note that inclusion value for Map instance itself is handled by caller (POJO property that refers to the Map value).- Since:
- 2.5
-
_suppressNulls
boolean _suppressNulls
Flag that indicates what to do with `null` values, distinct from handling ofMapEntrySerializer._suppressableValue
- Since:
- 2.9
-
_valueSerializer
JsonSerializer<Object> _valueSerializer
Value serializer to use, if it can be statically determined -
_valueType
JavaType _valueType
-
_valueTypeIsStatic
boolean _valueTypeIsStatic
Whether static types should be used for serialization of values or not (if not, dynamic runtime type is used) -
_valueTypeSerializer
TypeSerializer _valueTypeSerializer
Type identifier serializer used for values, if any.
-
-
-
Class com.fasterxml.jackson.databind.ser.impl.PropertyBasedObjectIdGenerator extends ObjectIdGenerators.PropertyGenerator implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_property
BeanPropertyWriter _property
-
-
Class com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter.FilterExceptFilter extends SimpleBeanPropertyFilter implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter.SerializeExceptFilter extends SimpleBeanPropertyFilter implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.impl.SimpleFilterProvider extends FilterProvider implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_cfgFailOnUnknownId
boolean _cfgFailOnUnknownId
Flag that indicates whether request for an unknown filter id should result an exception (default) or not. Note that this is only relevant if no default filter has been configured. -
_defaultFilter
PropertyFilter _defaultFilter
This is the filter we return in case no mapping was found for given id; default isnull
(in which case caller typically reports an error), but can be set to an explicit filter. -
_filtersById
Map<String,PropertyFilter> _filtersById
Mappings from ids to filters.
-
-
Class com.fasterxml.jackson.databind.ser.impl.StringArraySerializer extends ArraySerializerBase<String[]> implements Serializable
-
Serialized Fields
-
_elementSerializer
JsonSerializer<Object> _elementSerializer
Value serializer to use, if it's not the standard one (if it is we can optimize serialization a lot)
-
-
-
Class com.fasterxml.jackson.databind.ser.impl.StringCollectionSerializer extends StaticListSerializerBase<Collection<String>> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.impl.UnknownSerializer extends ToEmptyObjectSerializer implements Serializable
-
Class com.fasterxml.jackson.databind.ser.impl.UnsupportedTypeSerializer extends StdSerializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.impl.UnwrappingBeanPropertyWriter extends BeanPropertyWriter implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_nameTransformer
NameTransformer _nameTransformer
Transformer used to add prefix and/or suffix for properties of unwrapped POJO.
-
-
Class com.fasterxml.jackson.databind.ser.impl.UnwrappingBeanSerializer extends BeanSerializerBase implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_nameTransformer
NameTransformer _nameTransformer
Transformer used to add prefix and/or suffix for properties of unwrapped POJO.
-
-
-
Package com.fasterxml.jackson.databind.ser.std
-
Class com.fasterxml.jackson.databind.ser.std.ArraySerializerBase extends ContainerSerializer<T> implements Serializable
-
Serialized Fields
-
_property
BeanProperty _property
-
_unwrapSingle
Boolean _unwrapSingle
Setting for specific local override for "unwrap single element arrays": true for enable unwrapping, false for preventing it, `null` for using global configuration.- Since:
- 2.6
-
-
-
Class com.fasterxml.jackson.databind.ser.std.AsArraySerializerBase extends ContainerSerializer<T> implements Serializable
-
Serialized Fields
-
_dynamicSerializers
PropertySerializerMap _dynamicSerializers
If element type cannot be statically determined, mapping from runtime type to serializer is handled using this object -
_elementSerializer
JsonSerializer<Object> _elementSerializer
Value serializer to use, if it can be statically determined -
_elementType
JavaType _elementType
-
_property
BeanProperty _property
Collection-valued property being serialized with this instance -
_staticTyping
boolean _staticTyping
-
_unwrapSingle
Boolean _unwrapSingle
Setting for specific local override for "unwrap single element arrays": true for enable unwrapping, false for preventing it, `null` for using global configuration.- Since:
- 2.6
-
_valueTypeSerializer
TypeSerializer _valueTypeSerializer
Type serializer used for values, if any.
-
-
-
Class com.fasterxml.jackson.databind.ser.std.AtomicReferenceSerializer extends ReferenceTypeSerializer<AtomicReference<?>> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.std.BeanSerializerBase extends StdSerializer<Object> implements Serializable
-
Serialized Fields
-
_anyGetterWriter
AnyGetterWriter _anyGetterWriter
Handler forJsonAnyGetter
annotated properties -
_beanType
JavaType _beanType
- Since:
- 2.9
-
_filteredProps
BeanPropertyWriter[] _filteredProps
Optional filters used to suppress output of properties that are only to be included in certain views -
_objectIdWriter
ObjectIdWriter _objectIdWriter
If this POJO can be alternatively serialized using just an object id to denote a reference to previously serialized object, this Object will handle details. -
_propertyFilterId
Object _propertyFilterId
Id of the bean property filter to use, if any; null if none. -
_props
BeanPropertyWriter[] _props
Writers used for outputting actual property values -
_serializationShape
JsonFormat.Shape _serializationShape
Requested shape from bean class annotations. -
_typeId
AnnotatedMember _typeId
If using custom type ids (usually via getter, or field), this is the reference to that member.
-
-
-
Class com.fasterxml.jackson.databind.ser.std.BooleanSerializer extends StdScalarSerializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_forPrimitive
boolean _forPrimitive
Whether type serialized is primitive (boolean) or wrapper (java.lang.Boolean); if true, former, if false, latter.
-
-
Class com.fasterxml.jackson.databind.ser.std.ByteArraySerializer extends StdSerializer<byte[]> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.std.ByteBufferSerializer extends StdScalarSerializer<ByteBuffer> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.CalendarSerializer extends DateTimeSerializerBase<Calendar> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.ClassSerializer extends StdScalarSerializer<Class<?>> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.CollectionSerializer extends AsArraySerializerBase<Collection<?>> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.std.DateSerializer extends DateTimeSerializerBase<Date> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.DateTimeSerializerBase extends StdScalarSerializer<T> implements Serializable
-
Serialized Fields
-
_customFormat
DateFormat _customFormat
Specific format to use, if not default format: non null value also indicates that serialization is to be done as JSON String, not numeric timestamp, unlessDateTimeSerializerBase._useTimestamp
is true. -
_reusedCustomFormat
AtomicReference<DateFormat> _reusedCustomFormat
IfDateTimeSerializerBase._customFormat
is used, we will try to reuse instances in simplest possible form; thread-safe, but without overhead ofThreadLocal
(not from code, but wrt retaining of possibly large number of format instances over all threads, properties with custom formats).- Since:
- 2.9
-
_useTimestamp
Boolean _useTimestamp
Flag that indicates that serialization must be done as the Java timestamp, regardless of other settings.
-
-
-
Class com.fasterxml.jackson.databind.ser.std.EnumSerializer extends StdScalarSerializer<Enum<?>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_serializeAsIndex
Boolean _serializeAsIndex
Flag that is set if we statically know serialization choice between index and textual format (null if it needs to be dynamically checked).- Since:
- 2.1
-
_values
EnumValues _values
This map contains pre-resolved values (since there are ways to customize actual String constants to use) to use as serializations. -
_valuesByEnumNaming
EnumValues _valuesByEnumNaming
Map with key as converted property class defined implementation ofEnumNamingStrategy
and with value as Enum names collected usingEnum.name()
.- Since:
- 2.15
-
-
Class com.fasterxml.jackson.databind.ser.std.EnumSetSerializer extends AsArraySerializerBase<EnumSet<? extends Enum<?>>> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.FileSerializer extends StdScalarSerializer<File> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.InetAddressSerializer extends StdScalarSerializer<InetAddress> implements Serializable
-
Serialized Fields
-
_asNumeric
boolean _asNumeric
- Since:
- 2.9
-
-
-
Class com.fasterxml.jackson.databind.ser.std.InetSocketAddressSerializer extends StdScalarSerializer<InetSocketAddress> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.IterableSerializer extends AsArraySerializerBase<Iterable<?>> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.JsonValueSerializer extends StdSerializer<Object> implements Serializable
-
Serialized Fields
-
_accessor
AnnotatedMember _accessor
- Since:
- 2.9
-
_forceTypeInformation
boolean _forceTypeInformation
This is a flag that is set in rare (?) cases where this serializer is used for "natural" types (boolean, int, String, double); and where we actually must force type information wrapping, even though one would not normally be added. -
_property
BeanProperty _property
-
_valueSerializer
JsonSerializer<Object> _valueSerializer
-
_valueType
JavaType _valueType
Declared type of the value accessed, as declared by accessor.- Since:
- 2.12
-
_valueTypeSerializer
TypeSerializer _valueTypeSerializer
- Since:
- 2.12
-
-
-
Class com.fasterxml.jackson.databind.ser.std.MapProperty extends PropertyWriter implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_key
Object _key
-
_keySerializer
JsonSerializer<Object> _keySerializer
-
_property
BeanProperty _property
-
_typeSerializer
TypeSerializer _typeSerializer
-
_value
Object _value
-
_valueSerializer
JsonSerializer<Object> _valueSerializer
-
-
Class com.fasterxml.jackson.databind.ser.std.MapSerializer extends ContainerSerializer<Map<?,?>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_dynamicValueSerializers
PropertySerializerMap _dynamicValueSerializers
If value type cannot be statically determined, mapping from runtime value types to serializers are stored in this object. -
_filterId
Object _filterId
Id of the property filter to use, if any; null if none.- Since:
- 2.3
-
_ignoredEntries
Set<String> _ignoredEntries
Set of entries to omit during serialization, if any -
_includedEntries
Set<String> _includedEntries
Set of entries to include during serialization, if null, it is ignored, empty will include nothing.- Since:
- 2.12
-
_inclusionChecker
IgnorePropertiesUtil.Checker _inclusionChecker
Helper object used for name-based filtering- Since:
- 2.12
-
_keySerializer
JsonSerializer<Object> _keySerializer
Key serializer to use, if it can be statically determined -
_keyType
JavaType _keyType
Declared type of keys -
_property
BeanProperty _property
Map-valued property being serialized with this instance -
_sortKeys
boolean _sortKeys
Flag set if output is forced to be sorted by keys (usually due to annotation).- Since:
- 2.4
-
_suppressableValue
Object _suppressableValue
Value that indicates suppression mechanism to use for values contained; either "filter" (of whichequals()
is called), or marker value ofMapSerializer.MARKER_FOR_EMPTY
, or null to indicate no filtering for non-null values. Note that inclusion value for Map instance itself is handled by caller (POJO property that refers to the Map value).- Since:
- 2.5
-
_suppressNulls
boolean _suppressNulls
Flag that indicates what to do with `null` values, distinct from handling ofMapSerializer._suppressableValue
- Since:
- 2.9
-
_valueSerializer
JsonSerializer<Object> _valueSerializer
Value serializer to use, if it can be statically determined -
_valueType
JavaType _valueType
Declared type of contained values -
_valueTypeIsStatic
boolean _valueTypeIsStatic
Whether static types should be used for serialization of values or not (if not, dynamic runtime type is used) -
_valueTypeSerializer
TypeSerializer _valueTypeSerializer
Type identifier serializer used for values, if any.
-
-
Class com.fasterxml.jackson.databind.ser.std.NonTypedScalarSerializerBase extends StdScalarSerializer<T> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.NullSerializer extends StdSerializer<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializer extends StdScalarSerializer<Number> implements Serializable
-
Serialized Fields
-
_isInt
boolean _isInt
-
-
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializers.Base extends StdScalarSerializer<T> implements Serializable
-
Serialized Fields
-
_isInt
boolean _isInt
-
_numberType
JsonParser.NumberType _numberType
-
_schemaType
String _schemaType
-
-
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializers.DoubleSerializer extends NumberSerializers.Base<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializers.FloatSerializer extends NumberSerializers.Base<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntegerSerializer extends NumberSerializers.Base<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializers.IntLikeSerializer extends NumberSerializers.Base<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializers.LongSerializer extends NumberSerializers.Base<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.NumberSerializers.ShortSerializer extends NumberSerializers.Base<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.ObjectArraySerializer extends ArraySerializerBase<Object[]> implements Serializable
-
Serialized Fields
-
_dynamicSerializers
PropertySerializerMap _dynamicSerializers
If element type cannot be statically determined, mapping from runtime type to serializer is handled using this object -
_elementSerializer
JsonSerializer<Object> _elementSerializer
Value serializer to use, if it can be statically determined. -
_elementType
JavaType _elementType
Declared type of element entries -
_staticTyping
boolean _staticTyping
Whether we are using static typing (using declared types, ignoring runtime type) or not for elements. -
_valueTypeSerializer
TypeSerializer _valueTypeSerializer
Type serializer to use for values, if any.
-
-
-
Class com.fasterxml.jackson.databind.ser.std.RawSerializer extends StdSerializer<T> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.ReferenceTypeSerializer extends StdSerializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_property
BeanProperty _property
-
_referredType
JavaType _referredType
Value type -
_suppressableValue
Object _suppressableValue
Value that indicates suppression mechanism to use for values contained; either "filter" (of whichequals()
is called), or marker value ofReferenceTypeSerializer.MARKER_FOR_EMPTY
, or null to indicate no filtering for non-null values. Note that inclusion value for Map instance itself is handled by caller (POJO property that refers to the Map value).- Since:
- 2.9
-
_suppressNulls
boolean _suppressNulls
Flag that indicates what to do with `null` values, distinct from handling ofReferenceTypeSerializer._suppressableValue
- Since:
- 2.9
-
_unwrapper
NameTransformer _unwrapper
In case of unwrapping, need name transformer. -
_valueSerializer
JsonSerializer<Object> _valueSerializer
Serializer for content values, if statically known. -
_valueTypeSerializer
TypeSerializer _valueTypeSerializer
Type serializer used for values, if any.
-
-
Class com.fasterxml.jackson.databind.ser.std.SerializableSerializer extends StdSerializer<JsonSerializable> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.SqlDateSerializer extends DateTimeSerializerBase<Date> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.SqlTimeSerializer extends StdScalarSerializer<Time> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StaticListSerializerBase extends StdSerializer<T extends Collection<?>> implements Serializable
-
Serialized Fields
-
_unwrapSingle
Boolean _unwrapSingle
Setting for specific local override for "unwrap single element arrays": true for enable unwrapping, false for preventing it, `null` for using global configuration.- Since:
- 2.6
-
-
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.BooleanArraySerializer extends ArraySerializerBase<boolean[]> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.CharArraySerializer extends StdSerializer<char[]> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.DoubleArraySerializer extends ArraySerializerBase<double[]> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.FloatArraySerializer extends StdArraySerializers.TypedPrimitiveArraySerializer<float[]> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.IntArraySerializer extends ArraySerializerBase<int[]> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.LongArraySerializer extends StdArraySerializers.TypedPrimitiveArraySerializer<long[]> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.ShortArraySerializer extends StdArraySerializers.TypedPrimitiveArraySerializer<short[]> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdArraySerializers.TypedPrimitiveArraySerializer extends ArraySerializerBase<T> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdDelegatingSerializer extends StdSerializer<Object> implements Serializable
-
Serialized Fields
-
_converter
Converter<Object,?> _converter
-
_delegateSerializer
JsonSerializer<Object> _delegateSerializer
Underlying serializer for typeT
. -
_delegateType
JavaType _delegateType
Fully resolved delegate type, with generic information if any available.
-
-
-
Class com.fasterxml.jackson.databind.ser.std.StdJdkSerializers.AtomicBooleanSerializer extends StdScalarSerializer<AtomicBoolean> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdJdkSerializers.AtomicIntegerSerializer extends StdScalarSerializer<AtomicInteger> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdJdkSerializers.AtomicLongSerializer extends StdScalarSerializer<AtomicLong> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdKeySerializer extends StdSerializer<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdKeySerializers.Default extends StdSerializer<Object> implements Serializable
-
Serialized Fields
-
_typeId
int _typeId
-
-
-
Class com.fasterxml.jackson.databind.ser.std.StdKeySerializers.Dynamic extends StdSerializer<Object> implements Serializable
-
Serialization Methods
-
readResolve
Object readResolve()
-
-
-
Class com.fasterxml.jackson.databind.ser.std.StdKeySerializers.EnumKeySerializer extends StdSerializer<Object> implements Serializable
-
Serialized Fields
-
_values
EnumValues _values
-
_valuesByEnumNaming
EnumValues _valuesByEnumNaming
Map with key as converted property class defined implementation ofEnumNamingStrategy
and with value as Enum names collected usingEnum.name()
.- Since:
- 2.15
-
-
-
Class com.fasterxml.jackson.databind.ser.std.StdKeySerializers.StringKeySerializer extends StdSerializer<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdScalarSerializer extends StdSerializer<T> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.StdSerializer extends JsonSerializer<T> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.std.StringSerializer extends StdScalarSerializer<Object> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.ser.std.TimeZoneSerializer extends StdScalarSerializer<TimeZone> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.ToEmptyObjectSerializer extends StdSerializer<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.TokenBufferSerializer extends StdSerializer<TokenBuffer> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.ToStringSerializer extends ToStringSerializerBase implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.ToStringSerializerBase extends StdSerializer<Object> implements Serializable
-
Class com.fasterxml.jackson.databind.ser.std.UUIDSerializer extends StdScalarSerializer<UUID> implements Serializable
-
Serialized Fields
-
_asBinary
Boolean _asBinary
Configuration setting that indicates if serialization as binary (native or Base64-encoded) has been forced;null
means "use default heuristic"- Since:
- 2.11.3
-
-
-
-
Package com.fasterxml.jackson.databind.type
-
Class com.fasterxml.jackson.databind.type.ArrayType extends TypeBase implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.type.ClassKey extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.type.CollectionLikeType extends TypeBase implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_elementType
JavaType _elementType
Type of elements in collection
-
-
Class com.fasterxml.jackson.databind.type.CollectionType extends CollectionLikeType implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.type.MapLikeType extends TypeBase implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.type.MapType extends MapLikeType implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.type.PlaceholderForType extends com.fasterxml.jackson.databind.type.IdentityEqualityType implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_actualType
JavaType _actualType
Type assigned during wildcard resolution (which follows type structure resolution) -
_ordinal
int _ordinal
-
-
Class com.fasterxml.jackson.databind.type.ReferenceType extends SimpleType implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_anchorType
JavaType _anchorType
Essential type used for type ids, for example if type id is needed for referencing type with polymorphic handling. Typically initialized when aSimpleType
is upgraded into reference type, but NOT changed if being sub-classed.- Since:
- 2.8
-
_referencedType
JavaType _referencedType
-
-
Class com.fasterxml.jackson.databind.type.ResolvedRecursiveType extends com.fasterxml.jackson.databind.type.IdentityEqualityType implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_referencedType
JavaType _referencedType
-
-
Class com.fasterxml.jackson.databind.type.SimpleType extends TypeBase implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.type.TypeBase extends JavaType implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_bindings
TypeBindings _bindings
Bindings in effect for this type instance; possibly empty. Needed when resolving types declared in members of this type (if any).- Since:
- 2.7
-
_superClass
JavaType _superClass
-
_superInterfaces
JavaType[] _superInterfaces
-
-
Class com.fasterxml.jackson.databind.type.TypeBindings extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
Class com.fasterxml.jackson.databind.type.TypeFactory extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_classLoader
ClassLoader _classLoader
ClassLoader used by this factory [databind#624]. -
_modifiers
TypeModifier[] _modifiers
RegisteredTypeModifier
s: objects that can change details ofJavaType
instances factory constructs. -
_parser
TypeParser _parser
-
_typeCache
LookupCache<Object,JavaType> _typeCache
Since type resolution can be expensive (specifically when resolving actual generic types), we will use small cache to avoid repetitive resolution of core types
-
-
Class com.fasterxml.jackson.databind.type.TypeParser extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_factory
TypeFactory _factory
-
-
-
Package com.fasterxml.jackson.databind.util
-
Class com.fasterxml.jackson.databind.util.CompactStringObjectMap extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_hashArea
Object[] _hashArea
-
_hashMask
int _hashMask
-
_spillCount
int _spillCount
-
-
Class com.fasterxml.jackson.databind.util.EnumResolver extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_defaultValue
Enum<?> _defaultValue
-
_enumClass
Class<Enum<?>> _enumClass
-
_enums
Enum<?>[] _enums
-
_enumsById
HashMap<String,Enum<?>> _enumsById
-
_isFromIntValue
boolean _isFromIntValue
Marker for case where value may come from@JsonValue
annotated accessor and is expected/likely to come from actual integral number value (and not String).Special case is needed since this specifically means that
Enum.index()
should NOT be used or default to.- Since:
- 2.13
-
_isIgnoreCase
boolean _isIgnoreCase
Marker for case-insensitive handling- Since:
- 2.12
-
-
Class com.fasterxml.jackson.databind.util.EnumValues extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_enumClass
Class<Enum<?>> _enumClass
-
_textual
SerializableString[] _textual
-
_values
Enum<?>[] _values
-
-
Class com.fasterxml.jackson.databind.util.IgnorePropertiesUtil.Checker extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.util.ISO8601DateFormat extends DateFormat implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.util.LRUMap extends Object implements Serializable
- serialVersionUID:
- 2L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
_initialEntries
int _initialEntries
-
_maxEntries
int _maxEntries
-
-
Class com.fasterxml.jackson.databind.util.NameTransformer.Chained extends NameTransformer implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_t1
NameTransformer _t1
-
_t2
NameTransformer _t2
-
-
Class com.fasterxml.jackson.databind.util.NameTransformer.NopTransformer extends NameTransformer implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.databind.util.RootNameLookup extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
Need to override to reproduce cache object via constructor, instead of serialize/deserialize (since we do NOT want to retain cached data)
-
-
Class com.fasterxml.jackson.databind.util.StdDateFormat extends DateFormat implements Serializable
-
Serialized Fields
-
_lenient
Boolean _lenient
Explicit override for leniency, if specified.Cannot be `final` because
StdDateFormat.setLenient(boolean)
returns `void`.- Since:
- 2.7
-
_locale
Locale _locale
-
_tzSerializedWithColon
boolean _tzSerializedWithColon
Whether the TZ offset must be formatted with a colon between hours and minutes (HH:mm
format)Defaults to
true
since 2.11: earlier versions defaulted tofalse
for backwards compatibility reasons- Since:
- 2.9.1
-
-
-
Class com.fasterxml.jackson.databind.util.ViewMatcher extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.databind.util.internal
-
Class com.fasterxml.jackson.databind.util.internal.PrivateMaxEntriesMap extends AbstractMap<K,V> implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream stream) throws InvalidObjectException
- Throws:
InvalidObjectException
-
writeReplace
Object writeReplace()
-
-
Serialized Fields
-
capacity
AtomicLong capacity
-
concurrencyLevel
int concurrencyLevel
-
data
ConcurrentMap<K,com.fasterxml.jackson.databind.util.internal.PrivateMaxEntriesMap.Node<K,V>> data
-
drainStatus
AtomicReference<com.fasterxml.jackson.databind.util.internal.PrivateMaxEntriesMap.DrainStatus> drainStatus
-
evictionDeque
com.fasterxml.jackson.databind.util.internal.LinkedDeque<com.fasterxml.jackson.databind.util.internal.PrivateMaxEntriesMap.Node<K,V>> evictionDeque
-
evictionLock
Lock evictionLock
-
readBufferDrainAtWriteCount
AtomicLongArray readBufferDrainAtWriteCount
-
readBufferReadCount
long[] readBufferReadCount
-
readBuffers
AtomicReferenceArray<com.fasterxml.jackson.databind.util.internal.PrivateMaxEntriesMap.Node<K,V>> readBuffers
-
readBufferWriteCount
AtomicLongArray readBufferWriteCount
-
weightedSize
AtomicLong weightedSize
-
writeBuffer
Queue<Runnable> writeBuffer
-
-
-
Package com.fasterxml.jackson.datatype.jdk8
-
Class com.fasterxml.jackson.datatype.jdk8.BaseScalarOptionalDeserializer extends StdScalarDeserializer<T> implements Serializable
-
Serialized Fields
-
_empty
T _empty
-
-
-
Class com.fasterxml.jackson.datatype.jdk8.DoubleStreamSerializer extends StdSerializer<DoubleStream> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.IntStreamSerializer extends StdSerializer<IntStream> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.Jdk8Deserializers extends Deserializers.Base implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_cfgReadAbsentAsNull
boolean _cfgReadAbsentAsNull
- Since:
- 2.14
-
-
Class com.fasterxml.jackson.datatype.jdk8.Jdk8OptionalBeanPropertyWriter extends BeanPropertyWriter implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_empty
Object _empty
- Since:
- 2.9
-
-
Class com.fasterxml.jackson.datatype.jdk8.Jdk8Serializers extends Serializers.Base implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.Jdk8TypeModifier extends TypeModifier implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.Jdk8UnwrappingOptionalBeanPropertyWriter extends UnwrappingBeanPropertyWriter implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_empty
Object _empty
- Since:
- 2.9
-
-
Class com.fasterxml.jackson.datatype.jdk8.LongStreamSerializer extends StdSerializer<LongStream> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.OptionalDoubleSerializer extends StdScalarSerializer<OptionalDouble> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.OptionalIntDeserializer extends BaseScalarOptionalDeserializer<OptionalInt> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.OptionalLongDeserializer extends BaseScalarOptionalDeserializer<OptionalLong> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.OptionalSerializer extends ReferenceTypeSerializer<Optional<?>> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jdk8.StreamSerializer extends StdSerializer<Stream<?>> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
elemType
JavaType elemType
Stream elements type (matching T)
-
-
Class com.fasterxml.jackson.datatype.jdk8.WrappedIOException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.datatype.jsr310
-
Class com.fasterxml.jackson.datatype.jsr310.JavaTimeModule extends SimpleModule implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.JSR310Module extends SimpleModule implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.datatype.jsr310.deser
-
Class com.fasterxml.jackson.datatype.jsr310.deser.DurationDeserializer extends com.fasterxml.jackson.datatype.jsr310.deser.JSR310DeserializerBase<Duration> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_durationUnitConverter
DurationUnitConverter _durationUnitConverter
When defined (notnull
) integer values will be converted into duration unit configured for the converter. Using this converter will typically override the value specified inDeserializationFeature.READ_DATE_TIMESTAMPS_AS_NANOSECONDS
as it is considered that the unit set inJsonFormat.pattern()
has precedence since it is more specific.See [jackson-modules-java8#184] for more info.
- Since:
- 2.12
-
-
Class com.fasterxml.jackson.datatype.jsr310.deser.InstantDeserializer extends JSR310DateTimeDeserializerBase<T extends Temporal> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_adjustToContextTZOverride
Boolean _adjustToContextTZOverride
Flag forJsonFormat.Feature.ADJUST_DATES_TO_CONTEXT_TIME_ZONE
- Since:
- 2.8
-
adjust
BiFunction<T extends Temporal,ZoneId,T extends Temporal> adjust
-
fromMilliseconds
Function<InstantDeserializer.FromIntegerArguments,T extends Temporal> fromMilliseconds
-
fromNanoseconds
Function<InstantDeserializer.FromDecimalArguments,T extends Temporal> fromNanoseconds
-
parsedToValue
Function<TemporalAccessor,T extends Temporal> parsedToValue
-
replaceZeroOffsetAsZ
boolean replaceZeroOffsetAsZ
In case of vanilla `Instant` we seem to need to translate "+0000 | +00:00 | +00" timezone designator into plain "Z" for some reason; see [jackson-modules-java8#18] for more info- Since:
- 2.9.0
-
-
Class com.fasterxml.jackson.datatype.jsr310.deser.JSR310DateTimeDeserializerBase extends com.fasterxml.jackson.datatype.jsr310.deser.JSR310DeserializerBase<T> implements Serializable
-
Serialized Fields
-
_formatter
DateTimeFormatter _formatter
-
_shape
JsonFormat.Shape _shape
Setting that indicates the specified for this deserializer as aJsonFormat.Shape
annotation on property or class, or due to per-type "config override", or from global settings: If Shape is NUMBER_INT, the input value is considered to be epoch days. If not a NUMBER_INT, and the deserializer was not specified with the leniency setting of true, then an exception will be thrown.- Since:
- 2.11
-
-
-
Class com.fasterxml.jackson.datatype.jsr310.deser.JSR310StringParsableDeserializer extends com.fasterxml.jackson.datatype.jsr310.deser.JSR310DeserializerBase<Object> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_typeSelector
int _typeSelector
-
-
Class com.fasterxml.jackson.datatype.jsr310.deser.LocalDateDeserializer extends JSR310DateTimeDeserializerBase<LocalDate> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.deser.LocalDateTimeDeserializer extends JSR310DateTimeDeserializerBase<LocalDateTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.deser.LocalTimeDeserializer extends JSR310DateTimeDeserializerBase<LocalTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.deser.MonthDayDeserializer extends JSR310DateTimeDeserializerBase<MonthDay> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.deser.OffsetTimeDeserializer extends JSR310DateTimeDeserializerBase<OffsetTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.deser.YearDeserializer extends JSR310DateTimeDeserializerBase<Year> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.deser.YearMonthDeserializer extends JSR310DateTimeDeserializerBase<YearMonth> implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.datatype.jsr310.ser
-
Class com.fasterxml.jackson.datatype.jsr310.ser.DurationSerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<Duration> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_durationUnitConverter
DurationUnitConverter _durationUnitConverter
When defined (notnull
) duration values will be converted into integers with the unit configured for the converter. Only available whenSerializationFeature.WRITE_DURATIONS_AS_TIMESTAMPS
is enabled andSerializationFeature.WRITE_DATE_TIMESTAMPS_AS_NANOSECONDS
is not enabled since the duration converters do not support fractions- Since:
- 2.12
-
-
Class com.fasterxml.jackson.datatype.jsr310.ser.InstantSerializer extends InstantSerializerBase<Instant> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.InstantSerializerBase extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<T extends Temporal> implements Serializable
-
Serialized Fields
-
defaultFormat
DateTimeFormatter defaultFormat
-
getEpochMillis
ToLongFunction<T extends Temporal> getEpochMillis
-
getEpochSeconds
ToLongFunction<T extends Temporal> getEpochSeconds
-
getNanoseconds
ToIntFunction<T extends Temporal> getNanoseconds
-
-
-
Class com.fasterxml.jackson.datatype.jsr310.ser.LocalDateSerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<LocalDate> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.LocalDateTimeSerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<LocalDateTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.LocalTimeSerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<LocalTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.MonthDaySerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<MonthDay> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.OffsetDateTimeSerializer extends InstantSerializerBase<OffsetDateTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.OffsetTimeSerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<OffsetTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.YearMonthSerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<YearMonth> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.YearSerializer extends com.fasterxml.jackson.datatype.jsr310.ser.JSR310FormattedSerializerBase<Year> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.ZonedDateTimeSerializer extends InstantSerializerBase<ZonedDateTime> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_writeZoneId
Boolean _writeZoneId
Flag forJsonFormat.Feature.WRITE_DATES_WITH_ZONE_ID
- Since:
- 2.8
-
-
Class com.fasterxml.jackson.datatype.jsr310.ser.ZonedDateTimeWithZoneIdSerializer extends InstantSerializerBase<ZonedDateTime> implements Serializable
- serialVersionUID:
- 1L
-
Class com.fasterxml.jackson.datatype.jsr310.ser.ZoneIdSerializer extends ToStringSerializerBase implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.jakarta.rs.base.util
-
Class com.fasterxml.jackson.jakarta.rs.base.util.EndpointAsBeanProperty extends BeanProperty.Std implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
_annotations
AnnotationMap _annotations
-
-
Class com.fasterxml.jackson.jakarta.rs.base.util.LRUMap extends LinkedHashMap<K,V> implements Serializable
-
Serialized Fields
-
_maxEntries
int _maxEntries
-
-
-
-
Package com.fasterxml.jackson.module.jakarta.xmlbind
-
Class com.fasterxml.jackson.module.jakarta.xmlbind.JakartaXmlBindAnnotationIntrospector extends AnnotationIntrospector implements Serializable
- serialVersionUID:
- -1L
-
Serialized Fields
-
_dataHandlerDeserializer
JsonDeserializer<?> _dataHandlerDeserializer
-
_dataHandlerSerializer
JsonSerializer<?> _dataHandlerSerializer
-
_ignoreXmlIDREF
boolean _ignoreXmlIDREF
-
_jaxbPackageName
String _jaxbPackageName
-
_nonNillableInclusion
JsonInclude.Include _nonNillableInclusion
Inclusion value to return for properties annotated withXmlElement
andXmlElementWrapper
, in casenillable
property is left asfalse
. Default setting isnull
; this is typically changed to eitherJsonInclude.Include.NON_NULL
orJsonInclude.Include.NON_EMPTY
.- Since:
- 2.7
-
_typeFactory
TypeFactory _typeFactory
-
_xmlValueName
String _xmlValueName
When usingXmlValue
annotation, a placeholder name is assigned to property (unless overridden by explicit name); this configuration value specified what that name is.
-
-
-
Package com.fasterxml.jackson.module.jakarta.xmlbind.deser
-
Class com.fasterxml.jackson.module.jakarta.xmlbind.deser.DataHandlerDeserializer extends StdScalarDeserializer<DataHandler> implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.fasterxml.jackson.module.jakarta.xmlbind.ser
-
Class com.fasterxml.jackson.module.jakarta.xmlbind.ser.DataHandlerSerializer extends StdSerializer<DataHandler> implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.ibm.wsdl
-
Class com.ibm.wsdl.AbstractWSDLElement extends Object implements Serializable
-
Class com.ibm.wsdl.BindingFaultImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.BindingImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.BindingInputImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.BindingOperationImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bindingFaults
Map bindingFaults
-
bindingInput
BindingInput bindingInput
-
bindingOutput
BindingOutput bindingOutput
-
name
String name
-
nativeAttributeNames
List nativeAttributeNames
-
operation
Operation operation
-
-
Class com.ibm.wsdl.BindingOutputImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.DefinitionImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
bindings
Map bindings
-
documentBaseURI
String documentBaseURI
-
extReg
ExtensionRegistry extReg
-
imports
Map imports
-
messages
Map messages
-
name
QName name
-
namespaces
Map namespaces
-
nativeAttributeNames
List nativeAttributeNames
-
portTypes
Map portTypes
-
services
Map services
-
targetNamespace
String targetNamespace
-
types
Types types
-
-
Class com.ibm.wsdl.FaultImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.ImportImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
definition
Definition definition
-
locationURI
String locationURI
-
namespaceURI
String namespaceURI
-
nativeAttributeNames
List nativeAttributeNames
-
-
Class com.ibm.wsdl.InputImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.MessageImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.OperationImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.OutputImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.PartImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.PortImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.PortTypeImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.ServiceImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.TypesImpl extends AbstractWSDLElement implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
nativeAttributeNames
List nativeAttributeNames
-
-
-
Package com.ibm.wsdl.extensions
-
Class com.ibm.wsdl.extensions.PopulatedExtensionRegistry extends ExtensionRegistry implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.ibm.wsdl.extensions.http
-
Class com.ibm.wsdl.extensions.http.HTTPAddressImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPAddressSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPBindingImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPBindingSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPOperationImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPOperationSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPUrlEncodedImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPUrlEncodedSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPUrlReplacementImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.http.HTTPUrlReplacementSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.ibm.wsdl.extensions.mime
-
Class com.ibm.wsdl.extensions.mime.MIMEContentImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.mime.MIMEContentSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.mime.MIMEMimeXmlImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.mime.MIMEMimeXmlSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.mime.MIMEMultipartRelatedImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.mime.MIMEMultipartRelatedSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.mime.MIMEPartImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.ibm.wsdl.extensions.schema
-
Class com.ibm.wsdl.extensions.schema.SchemaDeserializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
allReferencedSchemas
Map allReferencedSchemas
-
-
Class com.ibm.wsdl.extensions.schema.SchemaImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.schema.SchemaImportImpl extends SchemaReferenceImpl implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
namespace
String namespace
-
-
Class com.ibm.wsdl.extensions.schema.SchemaReferenceImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.schema.SchemaSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.ibm.wsdl.extensions.soap
-
Class com.ibm.wsdl.extensions.soap.SOAPAddressImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPAddressSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPBindingImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPBindingSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPBodyImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPBodySerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPFaultImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPFaultSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPHeaderFaultImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPHeaderImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPHeaderSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPOperationImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap.SOAPOperationSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.ibm.wsdl.extensions.soap12
-
Class com.ibm.wsdl.extensions.soap12.SOAP12AddressImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12AddressSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12BindingImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12BindingSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12BodyImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12BodySerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12FaultImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12FaultSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12HeaderFaultImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12HeaderImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12HeaderSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12OperationImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class com.ibm.wsdl.extensions.soap12.SOAP12OperationSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.sun.codemodel
-
Class com.sun.codemodel.JClassAlreadyExistsException extends Exception implements Serializable
- serialVersionUID:
- -6200382663753897115L
-
Class com.sun.codemodel.JCommentPart extends ArrayList<Object> implements Serializable
- serialVersionUID:
- 1L
-
Class com.sun.codemodel.JDocComment extends JCommentPart implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
atDeprecated
JCommentPart atDeprecated
The @deprecated tag -
atReturn
JCommentPart atReturn
The @return tag part.
-
-
-
Package com.sun.istack
-
Class com.sun.istack.FinalArrayList extends ArrayList<T> implements Serializable
- serialVersionUID:
- -540534530037816397L
-
Class com.sun.istack.SAXException2 extends SAXException implements Serializable
- serialVersionUID:
- -707119042406163844L
-
Class com.sun.istack.SAXParseException2 extends SAXParseException implements Serializable
- serialVersionUID:
- 1304853690034671001L
-
Class com.sun.istack.XMLStreamException2 extends XMLStreamException implements Serializable
- serialVersionUID:
- 1409033131880742500L
-
-
Package com.sun.tools.rngdatatype
-
Class com.sun.tools.rngdatatype.DatatypeException extends Exception implements Serializable
- serialVersionUID:
- -6036466759898047370L
-
Serialized Fields
-
index
int index
-
-
-
Package com.sun.tools.rngom.ast.builder
-
Class com.sun.tools.rngom.ast.builder.BuildException extends RuntimeException implements Serializable
- serialVersionUID:
- -2335066797269369766L
-
Serialized Fields
-
cause
Throwable cause
-
-
-
Package com.sun.tools.rngom.digested
-
Class com.sun.tools.rngom.digested.DXMLPrinter.XMLWriterException extends RuntimeException implements Serializable
- serialVersionUID:
- -6182580269873640348L
-
-
Package com.sun.tools.rngom.nc
-
Class com.sun.tools.rngom.nc.AnyNameExceptNameClass extends NameClass implements Serializable
- serialVersionUID:
- 641375958519870109L
-
Serialized Fields
-
nameClass
NameClass nameClass
-
-
Class com.sun.tools.rngom.nc.ChoiceNameClass extends NameClass implements Serializable
- serialVersionUID:
- 6131402436437748085L
-
Class com.sun.tools.rngom.nc.NameClass extends Object implements Serializable
- serialVersionUID:
- -8327594277689361653L
-
Class com.sun.tools.rngom.nc.NsNameClass extends NameClass implements Serializable
- serialVersionUID:
- -728446798893492026L
-
Serialized Fields
-
namespaceUri
String namespaceUri
-
-
Class com.sun.tools.rngom.nc.NsNameExceptNameClass extends NameClass implements Serializable
- serialVersionUID:
- -5798429257214762521L
-
Class com.sun.tools.rngom.nc.SimpleNameClass extends NameClass implements Serializable
- serialVersionUID:
- -1776408159849453340L
-
Serialized Fields
-
name
QName name
-
-
-
Package com.sun.tools.rngom.parse
-
Class com.sun.tools.rngom.parse.IllegalSchemaException extends Exception implements Serializable
- serialVersionUID:
- -848449240388007175L
-
-
Package com.sun.tools.rngom.parse.compact
-
Class com.sun.tools.rngom.parse.compact.EOFException extends IOException implements Serializable
- serialVersionUID:
- -2261064999719670646L
-
Class com.sun.tools.rngom.parse.compact.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. -
eol
String eol
The end of line string for this machine. -
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.
-
-
Class com.sun.tools.rngom.parse.compact.Token extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
beginColumn
int beginColumn
The column number of the first character of this Token. -
beginLine
int beginLine
The line number of the first character of this Token. -
endColumn
int endColumn
The column number of the last character of this Token. -
endLine
int endLine
The line number of the last character of this Token. -
image
String image
The string image of the token. -
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. -
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 com.sun.tools.rngom.parse.compact.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 com.sun.tools.xjc
-
Class com.sun.tools.xjc.AbortException extends RuntimeException implements Serializable
- serialVersionUID:
- -335027176514421642L
-
Class com.sun.tools.xjc.BadCommandLineException extends Exception implements Serializable
- serialVersionUID:
- 8088500733830641442L
-
Serialized Fields
-
options
Options options
-
-
-
Package com.sun.tools.xjc.model
-
Class com.sun.tools.xjc.model.CCustomizations extends ArrayList<CPluginCustomization> implements Serializable
- serialVersionUID:
- 7551826676482019240L
-
Serialized Fields
-
next
CCustomizations next
AllCCustomizations
used by aModel
form a single linked list so that we can look for unacknowledged customizations later. -
owner
CCustomizable owner
The owner model component that carries these customizations.
-
-
-
Package com.sun.xml.messaging.saaj
-
Class com.sun.xml.messaging.saaj.SOAPExceptionImpl extends SOAPException implements Serializable
- serialVersionUID:
- 449323096527796613L
-
Serialized Fields
-
cause
Throwable cause
-
-
-
Package com.sun.xml.messaging.saaj.packaging.mime
-
Class com.sun.xml.messaging.saaj.packaging.mime.MessagingException extends Exception implements Serializable
- serialVersionUID:
- 6248253386214122360L
-
Serialized Fields
-
next
Exception next
The next exception in the chain.
-
-
-
Package com.sun.xml.messaging.saaj.packaging.mime.internet
-
Class com.sun.xml.messaging.saaj.packaging.mime.internet.ParseException extends MessagingException implements Serializable
- serialVersionUID:
- -5986507770568208734L
-
-
Package com.sun.xml.messaging.saaj.soap
-
Class com.sun.xml.messaging.saaj.soap.GifDataContentHandler extends Component implements Serializable
- serialVersionUID:
- -8698473820462938913L
-
Class com.sun.xml.messaging.saaj.soap.ImageDataContentHandler extends Component implements Serializable
- serialVersionUID:
- -1032466256223569148L
-
Serialized Fields
-
flavor
ActivationDataFlavor[] flavor
-
-
Class com.sun.xml.messaging.saaj.soap.JpegDataContentHandler extends Component implements Serializable
- serialVersionUID:
- 1658381224344887691L
-
Class com.sun.xml.messaging.saaj.soap.SOAPIOException extends IOException implements Serializable
- serialVersionUID:
- -5636159039553977703L
-
Serialized Fields
-
soapException
SOAPExceptionImpl soapException
-
-
Class com.sun.xml.messaging.saaj.soap.SOAPVersionMismatchException extends SOAPExceptionImpl implements Serializable
- serialVersionUID:
- -3681495393703865847L
-
-
Package com.sun.xml.messaging.saaj.soap.impl
-
Class com.sun.xml.messaging.saaj.soap.impl.TreeException extends RuntimeException implements Serializable
- serialVersionUID:
- 6266801046219021219L
-
-
Package com.sun.xml.messaging.saaj.util
-
Class com.sun.xml.messaging.saaj.util.FinalArrayList extends ArrayList<E> implements Serializable
- serialVersionUID:
- -4515171066879191101L
-
Class com.sun.xml.messaging.saaj.util.JaxmURI extends Object implements Serializable
- serialVersionUID:
- -4759316425394589529L
-
Serialized Fields
-
m_fragment
String m_fragment
If specified, stores the fragment for this URI; otherwise null -
m_host
String m_host
If specified, stores the host for this URI; otherwise null -
m_path
String m_path
If specified, stores the path for this URI; otherwise null -
m_port
int m_port
If specified, stores the port for this URI; otherwise -1 -
m_queryString
String m_queryString
If specified, stores the query string for this URI; otherwise null. -
m_scheme
String m_scheme
Stores the scheme (usually the protocol) for this URI. -
m_userinfo
String m_userinfo
If specified, stores the userinfo for this URI; otherwise null
-
-
Class com.sun.xml.messaging.saaj.util.JaxmURI.MalformedURIException extends IOException implements Serializable
- serialVersionUID:
- -4328958620562292564L
-
-
Package com.sun.xml.txw2
-
Class com.sun.xml.txw2.IllegalAnnotationException extends TxwException implements Serializable
- serialVersionUID:
- 1L
-
Class com.sun.xml.txw2.IllegalSignatureException extends TxwException implements Serializable
- serialVersionUID:
- 1L
-
Class com.sun.xml.txw2.TxwException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package com.sun.xml.xsom.impl.scd
-
Class com.sun.xml.xsom.impl.scd.ParseException extends Exception implements Serializable
- serialVersionUID:
- -1892857266151029978L
-
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. -
eol
String eol
The end of line string for this machine. -
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. -
specialConstructor
boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below). -
tokenImage
List<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.
-
-
Class com.sun.xml.xsom.impl.scd.TokenMgrError extends Error implements Serializable
- serialVersionUID:
- -7661331941187774350L
-
Serialized Fields
-
errorCode
int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.
-
-
-
Package com.sun.xml.xsom.impl.util
-
Class com.sun.xml.xsom.impl.util.SchemaTreeTraverser.SchemaRootNode extends SchemaTreeTraverser.SchemaTreeNode implements Serializable
- serialVersionUID:
- -4869737965361647583L
-
Class com.sun.xml.xsom.impl.util.SchemaTreeTraverser.SchemaTreeCellRenderer extends JPanel implements Serializable
- serialVersionUID:
- 865538344984392435L
-
Serialized Fields
-
iconLabel
JLabel iconLabel
The icon label. -
isSelected
boolean isSelected
The selection indicator. -
nameFont
Font nameFont
Default font for the text label. -
nameLabel
JLabel nameLabel
The text label -
selectedBackground
Color selectedBackground
Background color for selected cells (light brown). -
selectedForeground
Color selectedForeground
Foreground color for selected cells, both text and border (dark brown).
-
-
Class com.sun.xml.xsom.impl.util.SchemaTreeTraverser.SchemaTreeModel extends DefaultTreeModel implements Serializable
- serialVersionUID:
- 3202903011416748633L
-
Class com.sun.xml.xsom.impl.util.SchemaTreeTraverser.SchemaTreeNode extends DefaultMutableTreeNode implements Serializable
- serialVersionUID:
- 5119501381189181864L
-
-
Package io.undertow
-
Class io.undertow.UndertowLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class io.undertow.UndertowMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package io.undertow.attribute
-
Class io.undertow.attribute.ReadOnlyAttributeException extends Exception implements Serializable
-
-
Package io.undertow.client
-
Class io.undertow.client.UndertowClientMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package io.undertow.io
-
Class io.undertow.io.Receiver.RequestToLargeException extends IOException implements Serializable
-
-
Package io.undertow.protocols.http2
-
Class io.undertow.protocols.http2.ConnectionErrorException extends IOException implements Serializable
-
Serialized Fields
-
code
int code
-
-
-
Class io.undertow.protocols.http2.HpackException extends Exception implements Serializable
-
Serialized Fields
-
closeCode
int closeCode
-
-
-
Class io.undertow.protocols.http2.StreamErrorException extends IOException implements Serializable
-
Serialized Fields
-
errorId
int errorId
-
-
-
-
Package io.undertow.security.api
-
Class io.undertow.security.api.AuthenticatedSessionManager.AuthenticatedSession extends Object implements Serializable
-
-
Package io.undertow.security.idm
-
Class io.undertow.security.idm.ExternalCredential extends Object implements Serializable
-
-
Package io.undertow.server
-
Class io.undertow.server.RenegotiationRequiredException extends Exception implements Serializable
-
Class io.undertow.server.RequestTooBigException extends IOException implements Serializable
-
Class io.undertow.server.TruncatedResponseException extends IOException implements Serializable
-
-
Package io.undertow.server.handlers.form
-
Class io.undertow.server.handlers.form.MultiPartParserDefinition.FileTooLargeException extends IOException implements Serializable
-
-
Package io.undertow.server.protocol.http
-
Class io.undertow.server.protocol.http.CacheMap extends LinkedHashMap<K,V> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
capacity
int capacity
-
-
-
Package io.undertow.servlet
-
Class io.undertow.servlet.UndertowServletLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class io.undertow.servlet.UndertowServletMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package io.undertow.servlet.handlers
-
Class io.undertow.servlet.handlers.DefaultServlet extends HttpServlet implements Serializable
-
Serialized Fields
-
allowed
Set<String> allowed
-
allowPost
boolean allowPost
-
defaultAllowed
boolean defaultAllowed
-
deployment
Deployment deployment
-
directoryListingEnabled
boolean directoryListingEnabled
-
disallowed
Set<String> disallowed
-
resolveAgainstContextRoot
boolean resolveAgainstContextRoot
-
resourceSupplier
ResourceSupplier resourceSupplier
-
-
-
-
Package io.undertow.servlet.util
-
Class io.undertow.servlet.util.SavedRequest extends Object implements Serializable
-
Serialized Fields
-
data
byte[] data
-
dataLength
int dataLength
-
headerMap
HashMap<HttpString,List<String>> headerMap
-
method
HttpString method
-
requestPath
String requestPath
-
-
-
-
Package io.undertow.servlet.websockets
-
Class io.undertow.servlet.websockets.WebSocketServlet extends HttpServlet implements Serializable
-
Serialized Fields
-
callback
WebSocketConnectionCallback callback
-
handshakes
List<Handshake> handshakes
-
peerConnections
Set<WebSocketChannel> peerConnections
-
-
-
-
Package io.undertow.util
-
Class io.undertow.util.BadRequestException extends Exception implements Serializable
-
Class io.undertow.util.ConcurrentDirectDeque extends AbstractCollection<E> implements Serializable
-
Class io.undertow.util.FastConcurrentDirectDeque extends ConcurrentDirectDeque<E> implements Serializable
- serialVersionUID:
- 876323262645176354L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reconstitutes this deque from a stream (that is, deserializes it).- Throws:
ClassNotFoundException
- if the class of a serialized object could not be foundIOException
- if an I/O error occurs
-
writeObject
private void writeObject(ObjectOutputStream s) throws IOException
Saves this deque to a stream (that is, serializes it).- Serial Data:
- All of the elements (each an
E
) in the proper order, followed by a null - Throws:
IOException
- if an I/O error occurs
-
-
Class io.undertow.util.HttpString extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws ClassNotFoundException, IOException
- Throws:
ClassNotFoundException
IOException
-
-
Serialized Fields
-
bytes
byte[] bytes
-
orderInt
int orderInt
And integer that is only set for well known header to make comparison fast
-
-
Class io.undertow.util.MalformedMessageException extends IOException implements Serializable
-
Class io.undertow.util.ParameterLimitException extends Exception implements Serializable
-
Class io.undertow.util.PortableConcurrentDirectDeque extends ConcurrentDirectDeque<E> implements Serializable
- serialVersionUID:
- 876323262645176354L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reconstitutes this deque from a stream (that is, deserializes it).- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream s) throws IOException
Saves this deque to a stream (that is, serializes it).- Serial Data:
- All of the elements (each an
E
) in the proper order, followed by a null - Throws:
IOException
-
-
Class io.undertow.util.UrlDecodeException extends IllegalArgumentException implements Serializable
-
-
Package io.undertow.websockets.core
-
Class io.undertow.websockets.core.InvalidOpCodeException extends WebSocketException implements Serializable
-
Class io.undertow.websockets.core.WebSocketException extends IOException implements Serializable
- serialVersionUID:
- -6784834646314672530L
-
Class io.undertow.websockets.core.WebSocketFrameCorruptedException extends WebSocketException implements Serializable
- serialVersionUID:
- -6784834646314476130L
-
Class io.undertow.websockets.core.WebSocketHandshakeException extends WebSocketException implements Serializable
- serialVersionUID:
- 1L
-
Class io.undertow.websockets.core.WebSocketInvalidCloseCodeException extends WebSocketException implements Serializable
- serialVersionUID:
- -6784834646314476130L
-
Class io.undertow.websockets.core.WebSocketLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class io.undertow.websockets.core.WebSocketMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package jakarta.activation
-
Class jakarta.activation.MimeType extends Object implements Serializable
- serialVersionUID:
- 7548163901563814301L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
The object implements the readExternal method to restore its contents by calling the methods of DataInput for primitive types and readObject for objects, strings and arrays. The readExternal method must read the values in the same sequence and with the same types as were written by writeExternal.- Throws:
ClassNotFoundException
- If the class for an object being restored cannot be found.IOException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
The object implements the writeExternal method to save its contents by calling the methods of DataOutput for its primitive values or calling the writeObject method of ObjectOutput for objects, strings and arrays.- Throws:
IOException
- Includes any I/O exceptions that may occur
-
-
Class jakarta.activation.MimeTypeParseException extends Exception implements Serializable
- serialVersionUID:
- 1855296571002626216L
-
Class jakarta.activation.UnsupportedDataTypeException extends IOException implements Serializable
- serialVersionUID:
- -3584600599376858820L
-
-
Package jakarta.batch.operations
-
Class jakarta.batch.operations.BatchRuntimeException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.JobExecutionAlreadyCompleteException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.JobExecutionIsRunningException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.JobExecutionNotMostRecentException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.JobExecutionNotRunningException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.JobRestartException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.JobSecurityException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.JobStartException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.NoSuchJobException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.NoSuchJobExecutionException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.batch.operations.NoSuchJobInstanceException extends BatchRuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package jakarta.ejb
-
Class jakarta.ejb.AccessLocalException extends EJBException implements Serializable
- serialVersionUID:
- -4089104928924996726L
-
Class jakarta.ejb.ConcurrentAccessException extends EJBException implements Serializable
- serialVersionUID:
- -8980855319866981477L
-
Class jakarta.ejb.ConcurrentAccessTimeoutException extends ConcurrentAccessException implements Serializable
- serialVersionUID:
- 7899534274371798660L
-
Class jakarta.ejb.CreateException extends Exception implements Serializable
- serialVersionUID:
- 6295951740865457514L
-
Class jakarta.ejb.DuplicateKeyException extends CreateException implements Serializable
- serialVersionUID:
- -7287399994705270076L
-
Class jakarta.ejb.EJBAccessException extends EJBException implements Serializable
- serialVersionUID:
- 4923220329322198628L
-
Class jakarta.ejb.EJBException extends RuntimeException implements Serializable
- serialVersionUID:
- 796770993296843510L
-
Class jakarta.ejb.EJBTransactionRequiredException extends EJBException implements Serializable
- serialVersionUID:
- 8880799605373282306L
-
Class jakarta.ejb.EJBTransactionRolledbackException extends EJBException implements Serializable
- serialVersionUID:
- -8301720350425840333L
-
Class jakarta.ejb.FinderException extends Exception implements Serializable
- serialVersionUID:
- 8785983102057433621L
-
Class jakarta.ejb.IllegalLoopbackException extends ConcurrentAccessException implements Serializable
- serialVersionUID:
- -8854624128500916709L
-
Class jakarta.ejb.NoMoreTimeoutsException extends EJBException implements Serializable
- serialVersionUID:
- 1373788283844991998L
-
Class jakarta.ejb.NoSuchEJBException extends EJBException implements Serializable
- serialVersionUID:
- -4861625171310593950L
-
Class jakarta.ejb.NoSuchEntityException extends EJBException implements Serializable
- serialVersionUID:
- -4815730078295420703L
-
Class jakarta.ejb.NoSuchObjectLocalException extends EJBException implements Serializable
- serialVersionUID:
- 9151491108833037318L
-
Class jakarta.ejb.ObjectNotFoundException extends FinderException implements Serializable
- serialVersionUID:
- 4624364141026778L
-
Class jakarta.ejb.RemoveException extends Exception implements Serializable
- serialVersionUID:
- -4581849053220157910L
-
Class jakarta.ejb.ScheduleExpression extends Object implements Serializable
- serialVersionUID:
- -3813254457230997879L
-
Class jakarta.ejb.TransactionRequiredLocalException extends EJBException implements Serializable
- serialVersionUID:
- -3884174204131319153L
-
Class jakarta.ejb.TransactionRolledbackLocalException extends EJBException implements Serializable
- serialVersionUID:
- 2897658132751784821L
-
-
Package jakarta.el
-
Class jakarta.el.ELContextEvent extends EventObject implements Serializable
- serialVersionUID:
- 1255131906285426769L
-
Class jakarta.el.ELException extends RuntimeException implements Serializable
- serialVersionUID:
- -2161386187282690885L
-
Class jakarta.el.Expression extends Object implements Serializable
- serialVersionUID:
- -6663767980471823812L
-
Class jakarta.el.MethodExpression extends Expression implements Serializable
- serialVersionUID:
- -1151639017737837708L
-
Class jakarta.el.MethodNotFoundException extends ELException implements Serializable
- serialVersionUID:
- 7727548537051164640L
-
Class jakarta.el.PropertyNotFoundException extends ELException implements Serializable
- serialVersionUID:
- 7876728153282609955L
-
Class jakarta.el.PropertyNotWritableException extends ELException implements Serializable
- serialVersionUID:
- 4511862414551151572L
-
Class jakarta.el.ValueExpression extends Expression implements Serializable
- serialVersionUID:
- -8466802188968516519L
-
Class jakarta.el.ValueReference extends Object implements Serializable
- serialVersionUID:
- -4076659531951367109L
-
-
Package jakarta.enterprise.concurrent
-
Class jakarta.enterprise.concurrent.AbortedException extends ExecutionException implements Serializable
- serialVersionUID:
- -8248124070283019190L
-
Class jakarta.enterprise.concurrent.SkippedException extends ExecutionException implements Serializable
- serialVersionUID:
- 6296866815328432550L
-
-
Package jakarta.enterprise.context
-
Class jakarta.enterprise.context.ApplicationScoped.Literal extends AnnotationLiteral<ApplicationScoped> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.context.BeforeDestroyed.Literal extends AnnotationLiteral<BeforeDestroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
value
Class<? extends Annotation> value
-
-
Class jakarta.enterprise.context.BusyConversationException extends ContextException implements Serializable
- serialVersionUID:
- -3599813072560026919L
-
Class jakarta.enterprise.context.ContextException extends RuntimeException implements Serializable
- serialVersionUID:
- -3599813072560026919L
-
Class jakarta.enterprise.context.ContextNotActiveException extends ContextException implements Serializable
- serialVersionUID:
- -3599813072560026919L
-
Class jakarta.enterprise.context.ConversationScoped.Literal extends AnnotationLiteral<ConversationScoped> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.context.Dependent.Literal extends AnnotationLiteral<Dependent> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.context.Destroyed.Literal extends AnnotationLiteral<Destroyed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
value
Class<? extends Annotation> value
-
-
Class jakarta.enterprise.context.Initialized.Literal extends AnnotationLiteral<Initialized> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
value
Class<? extends Annotation> value
-
-
Class jakarta.enterprise.context.NonexistentConversationException extends ContextException implements Serializable
- serialVersionUID:
- -3599813072560026919L
-
Class jakarta.enterprise.context.RequestScoped.Literal extends AnnotationLiteral<RequestScoped> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.context.SessionScoped.Literal extends AnnotationLiteral<SessionScoped> implements Serializable
- serialVersionUID:
- 1L
-
-
Package jakarta.enterprise.event
-
Class jakarta.enterprise.event.ObserverException extends RuntimeException implements Serializable
- serialVersionUID:
- -801836224808304381L
-
-
Package jakarta.enterprise.inject
-
Class jakarta.enterprise.inject.Alternative.Literal extends AnnotationLiteral<Alternative> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.inject.AmbiguousResolutionException extends ResolutionException implements Serializable
- serialVersionUID:
- -2132733164534544788L
-
Class jakarta.enterprise.inject.Any.Literal extends AnnotationLiteral<Any> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.inject.CreationException extends InjectionException implements Serializable
- serialVersionUID:
- 1002854668862145298L
-
Class jakarta.enterprise.inject.Default.Literal extends AnnotationLiteral<Default> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.inject.IllegalProductException extends InjectionException implements Serializable
- serialVersionUID:
- -6280627846071966243L
-
Class jakarta.enterprise.inject.InjectionException extends RuntimeException implements Serializable
- serialVersionUID:
- -2132733164534544788L
-
Class jakarta.enterprise.inject.ResolutionException extends InjectionException implements Serializable
- serialVersionUID:
- -6280627846071966243L
-
Class jakarta.enterprise.inject.Specializes.Literal extends AnnotationLiteral<Specializes> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.inject.TransientReference.Literal extends AnnotationLiteral<TransientReference> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.inject.Typed.Literal extends AnnotationLiteral<Typed> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
value
Class<?>[] value
-
-
Class jakarta.enterprise.inject.UnproxyableResolutionException extends ResolutionException implements Serializable
- serialVersionUID:
- 1667539354548135465L
-
Class jakarta.enterprise.inject.UnsatisfiedResolutionException extends ResolutionException implements Serializable
- serialVersionUID:
- 5350603312442756709L
-
Class jakarta.enterprise.inject.Vetoed.Literal extends AnnotationLiteral<Vetoed> implements Serializable
- serialVersionUID:
- 1L
-
-
Package jakarta.enterprise.inject.literal
-
Class jakarta.enterprise.inject.literal.InjectLiteral extends AnnotationLiteral<Inject> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.inject.literal.NamedLiteral extends AnnotationLiteral<Named> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
value
String value
-
-
Class jakarta.enterprise.inject.literal.QualifierLiteral extends AnnotationLiteral<Qualifier> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.inject.literal.SingletonLiteral extends AnnotationLiteral<Singleton> implements Serializable
- serialVersionUID:
- 1L
-
-
Package jakarta.enterprise.inject.spi
-
Class jakarta.enterprise.inject.spi.DefinitionException extends RuntimeException implements Serializable
- serialVersionUID:
- -2699170549782567339L
-
Class jakarta.enterprise.inject.spi.DeploymentException extends RuntimeException implements Serializable
- serialVersionUID:
- 2604707587772339984L
-
-
Package jakarta.enterprise.util
-
Class jakarta.enterprise.util.AnnotationLiteral extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.util.Nonbinding.Literal extends AnnotationLiteral<Nonbinding> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.enterprise.util.TypeLiteral extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package jakarta.jms
-
Class jakarta.jms.IllegalStateException extends JMSException implements Serializable
- serialVersionUID:
- -6850763061112244487L
-
Class jakarta.jms.IllegalStateRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- 6838714637432837899L
-
Class jakarta.jms.InvalidClientIDException extends JMSException implements Serializable
- serialVersionUID:
- 2410181719763491702L
-
Class jakarta.jms.InvalidClientIDRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- -1997236208457896631L
-
Class jakarta.jms.InvalidDestinationException extends JMSException implements Serializable
- serialVersionUID:
- -8588063794606036755L
-
Class jakarta.jms.InvalidDestinationRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- 2765276997130843763L
-
Class jakarta.jms.InvalidSelectorException extends JMSException implements Serializable
- serialVersionUID:
- 6223038613086963841L
-
Class jakarta.jms.InvalidSelectorRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- 1974783946275023548L
-
Class jakarta.jms.JMSException extends Exception implements Serializable
- serialVersionUID:
- 8951994251593378324L
-
Class jakarta.jms.JMSRuntimeException extends RuntimeException implements Serializable
- serialVersionUID:
- -5204332229969809982L
-
Serialized Fields
-
errorCode
String errorCode
Provider-specific error code.
-
-
Class jakarta.jms.JMSSecurityException extends JMSException implements Serializable
- serialVersionUID:
- -7512859695190450217L
-
Class jakarta.jms.JMSSecurityRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- 1020149469192845616L
-
Class jakarta.jms.MessageEOFException extends JMSException implements Serializable
- serialVersionUID:
- -4829621000056590895L
-
Class jakarta.jms.MessageFormatException extends JMSException implements Serializable
- serialVersionUID:
- -3642297253594750138L
-
Class jakarta.jms.MessageFormatRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- 416918643772467720L
-
Class jakarta.jms.MessageNotReadableException extends JMSException implements Serializable
- serialVersionUID:
- 8044835867550650748L
-
Class jakarta.jms.MessageNotWriteableException extends JMSException implements Serializable
- serialVersionUID:
- -4241931174711518830L
-
Class jakarta.jms.MessageNotWriteableRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- 6075922984499850209L
-
Class jakarta.jms.ResourceAllocationException extends JMSException implements Serializable
- serialVersionUID:
- -1172695755360706776L
-
Class jakarta.jms.ResourceAllocationRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- -1306897975610715374L
-
Class jakarta.jms.TransactionInProgressException extends JMSException implements Serializable
- serialVersionUID:
- -5611340150426335231L
-
Class jakarta.jms.TransactionInProgressRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- -916492460069513065L
-
Class jakarta.jms.TransactionRolledBackException extends JMSException implements Serializable
- serialVersionUID:
- 9157976009672865857L
-
Class jakarta.jms.TransactionRolledBackRuntimeException extends JMSRuntimeException implements Serializable
- serialVersionUID:
- 2157965166257651703L
-
-
Package jakarta.json
-
Class jakarta.json.JsonException extends RuntimeException implements Serializable
- serialVersionUID:
- 359810709545392112L
-
-
Package jakarta.json.bind
-
Class jakarta.json.bind.JsonbException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package jakarta.json.stream
-
Class jakarta.json.stream.JsonGenerationException extends JsonException implements Serializable
- serialVersionUID:
- -207609100806940680L
-
Class jakarta.json.stream.JsonParsingException extends JsonException implements Serializable
- serialVersionUID:
- 9073566598484238797L
-
-
Package jakarta.mail
-
Class jakarta.mail.Address extends Object implements Serializable
- serialVersionUID:
- -5822459626751992278L
-
Class jakarta.mail.AuthenticationFailedException extends MessagingException implements Serializable
- serialVersionUID:
- 492080754054436511L
-
Class jakarta.mail.Flags extends Object implements Serializable
- serialVersionUID:
- 6243590407214169028L
-
Class jakarta.mail.FolderClosedException extends MessagingException implements Serializable
- serialVersionUID:
- 1687879213433302315L
-
Class jakarta.mail.FolderNotFoundException extends MessagingException implements Serializable
- serialVersionUID:
- 472612108891249403L
-
Class jakarta.mail.IllegalWriteException extends MessagingException implements Serializable
- serialVersionUID:
- 3974370223328268013L
-
Class jakarta.mail.Message.RecipientType extends Object implements Serializable
- serialVersionUID:
- -7479791750606340008L
-
Serialization Methods
-
readResolve
protected Object readResolve() throws ObjectStreamException
When deserializing a RecipientType, we need to make sure to return only one of the known static final instances defined in this class. Subclasses must implement their ownreadResolve
method that checks for their known instances before calling this super method.- Throws:
ObjectStreamException
- for object stream errors
-
-
Serialized Fields
-
type
String type
The type of recipient, usually the name of a corresponding Internet standard header.
-
-
Class jakarta.mail.MessageRemovedException extends MessagingException implements Serializable
- serialVersionUID:
- 1951292550679528690L
-
Class jakarta.mail.MessagingException extends Exception implements Serializable
- serialVersionUID:
- -7569192289819959253L
-
Serialized Fields
-
next
Exception next
The next exception in the chain.
-
-
Class jakarta.mail.MethodNotSupportedException extends MessagingException implements Serializable
- serialVersionUID:
- -3757386618726131322L
-
Class jakarta.mail.NoSuchProviderException extends MessagingException implements Serializable
- serialVersionUID:
- 8058319293154708827L
-
Class jakarta.mail.ReadOnlyFolderException extends MessagingException implements Serializable
- serialVersionUID:
- 5711829372799039325L
-
Class jakarta.mail.SendFailedException extends MessagingException implements Serializable
- serialVersionUID:
- -6457531621682372913L
-
Class jakarta.mail.StoreClosedException extends MessagingException implements Serializable
- serialVersionUID:
- -3145392336120082655L
-
-
Package jakarta.mail.event
-
Class jakarta.mail.event.ConnectionEvent extends MailEvent implements Serializable
- serialVersionUID:
- -1855480171284792957L
-
Serialized Fields
-
type
int type
The event type.
-
-
Class jakarta.mail.event.FolderEvent extends MailEvent implements Serializable
- serialVersionUID:
- 5278131310563694307L
-
Serialized Fields
-
type
int type
The event type.
-
-
Class jakarta.mail.event.MailEvent extends EventObject implements Serializable
- serialVersionUID:
- 1846275636325456631L
-
Class jakarta.mail.event.MessageChangedEvent extends MailEvent implements Serializable
- serialVersionUID:
- -4974972972105535108L
-
Serialized Fields
-
type
int type
The event type.
-
-
Class jakarta.mail.event.MessageCountEvent extends MailEvent implements Serializable
- serialVersionUID:
- -7447022340837897369L
-
Serialized Fields
-
removed
boolean removed
If true, this event is the result of an explicit expunge by this client, and the messages in this folder have been renumbered to account for this. If false, this event is the result of an expunge by external sources. -
type
int type
The event type.
-
-
Class jakarta.mail.event.StoreEvent extends MailEvent implements Serializable
- serialVersionUID:
- 1938704919992515330L
-
Serialized Fields
-
message
String message
The message text to be presented to the user. -
type
int type
The event type.
-
-
Class jakarta.mail.event.TransportEvent extends MailEvent implements Serializable
- serialVersionUID:
- -4729852364684273073L
-
Serialized Fields
-
type
int type
The event type.
-
-
-
Package jakarta.mail.internet
-
Class jakarta.mail.internet.AddressException extends ParseException implements Serializable
- serialVersionUID:
- 9134583443539323120L
-
Serialized Fields
-
pos
int pos
The index in the string where the error occurred, or -1 if not known. -
ref
String ref
The string being parsed.
-
-
Class jakarta.mail.internet.InternetAddress extends Address implements Serializable
- serialVersionUID:
- -7507595530758302903L
-
Serialized Fields
-
address
String address
The email address. -
encodedPersonal
String encodedPersonal
The RFC 2047 encoded version of the personal name.This field and the
personal
field track each other, so if a subclass sets one of these fields directly, it should set the other tonull
, so that it is suitably recomputed. -
personal
String personal
The personal name.
-
-
Class jakarta.mail.internet.MailDateFormat extends SimpleDateFormat implements Serializable
- serialVersionUID:
- -8148227605210628779L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
Allows to deserialize instances that were serialized with the previous implementation.- Throws:
IOException
- on read failuresClassNotFoundException
- never
-
writeReplace
private Object writeReplace() throws ObjectStreamException
Allows to serialize instances such that they are deserializable with the previous implementation.- Throws:
ObjectStreamException
- never
-
-
Class jakarta.mail.internet.MimeMessage.RecipientType extends Message.RecipientType implements Serializable
- serialVersionUID:
- -5468290701714395543L
-
Serialization Methods
-
readResolve
protected Object readResolve() throws ObjectStreamException
- Throws:
ObjectStreamException
- for object stream errors
-
-
Class jakarta.mail.internet.NewsAddress extends Address implements Serializable
- serialVersionUID:
- -4203797299824684143L
-
Class jakarta.mail.internet.ParseException extends MessagingException implements Serializable
- serialVersionUID:
- 7649991205183658089L
-
-
Package jakarta.mail.search
-
Class jakarta.mail.search.AddressStringTerm extends StringTerm implements Serializable
- serialVersionUID:
- 3086821234204980368L
-
Class jakarta.mail.search.AddressTerm extends SearchTerm implements Serializable
- serialVersionUID:
- 2005405551929769980L
-
Serialized Fields
-
address
Address address
The address.
-
-
Class jakarta.mail.search.AndTerm extends SearchTerm implements Serializable
- serialVersionUID:
- -3583274505380989582L
-
Serialized Fields
-
terms
SearchTerm[] terms
The array of terms on which the AND operator should be applied.
-
-
Class jakarta.mail.search.BodyTerm extends StringTerm implements Serializable
- serialVersionUID:
- -4888862527916911385L
-
Class jakarta.mail.search.ComparisonTerm extends SearchTerm implements Serializable
- serialVersionUID:
- 1456646953666474308L
-
Serialized Fields
-
comparison
int comparison
The comparison.
-
-
Class jakarta.mail.search.DateTerm extends ComparisonTerm implements Serializable
- serialVersionUID:
- 4818873430063720043L
-
Serialized Fields
-
date
Date date
The date.
-
-
Class jakarta.mail.search.FlagTerm extends SearchTerm implements Serializable
- serialVersionUID:
- -142991500302030647L
-
Serialized Fields
-
flags
Flags flags
Flags object containing the flags to test. -
set
boolean set
Indicates whether to test for the presence or absence of the specified Flag. Iftrue
, then test whether all the specified flags are present, else test whether all the specified flags are absent.
-
-
Class jakarta.mail.search.FromStringTerm extends AddressStringTerm implements Serializable
- serialVersionUID:
- 5801127523826772788L
-
Class jakarta.mail.search.FromTerm extends AddressTerm implements Serializable
- serialVersionUID:
- 5214730291502658665L
-
Class jakarta.mail.search.HeaderTerm extends StringTerm implements Serializable
- serialVersionUID:
- 8342514650333389122L
-
Serialized Fields
-
headerName
String headerName
The name of the header.
-
-
Class jakarta.mail.search.IntegerComparisonTerm extends ComparisonTerm implements Serializable
- serialVersionUID:
- -6963571240154302484L
-
Serialized Fields
-
number
int number
The number.
-
-
Class jakarta.mail.search.MessageIDTerm extends StringTerm implements Serializable
- serialVersionUID:
- -2121096296454691963L
-
Class jakarta.mail.search.MessageNumberTerm extends IntegerComparisonTerm implements Serializable
- serialVersionUID:
- -5379625829658623812L
-
Class jakarta.mail.search.NotTerm extends SearchTerm implements Serializable
- serialVersionUID:
- 7152293214217310216L
-
Serialized Fields
-
term
SearchTerm term
The search term to negate.
-
-
Class jakarta.mail.search.OrTerm extends SearchTerm implements Serializable
- serialVersionUID:
- 5380534067523646936L
-
Serialized Fields
-
terms
SearchTerm[] terms
The array of terms on which the OR operator should be applied.
-
-
Class jakarta.mail.search.ReceivedDateTerm extends DateTerm implements Serializable
- serialVersionUID:
- -2756695246195503170L
-
Class jakarta.mail.search.RecipientStringTerm extends AddressStringTerm implements Serializable
- serialVersionUID:
- -8293562089611618849L
-
Serialized Fields
-
type
Message.RecipientType type
The recipient type.
-
-
Class jakarta.mail.search.RecipientTerm extends AddressTerm implements Serializable
- serialVersionUID:
- 6548700653122680468L
-
Serialized Fields
-
type
Message.RecipientType type
The recipient type.
-
-
Class jakarta.mail.search.SearchException extends MessagingException implements Serializable
- serialVersionUID:
- -7092886778226268686L
-
Class jakarta.mail.search.SearchTerm extends Object implements Serializable
- serialVersionUID:
- -6652358452205992789L
-
Class jakarta.mail.search.SentDateTerm extends DateTerm implements Serializable
- serialVersionUID:
- 5647755030530907263L
-
Class jakarta.mail.search.SizeTerm extends IntegerComparisonTerm implements Serializable
- serialVersionUID:
- -2556219451005103709L
-
Class jakarta.mail.search.StringTerm extends SearchTerm implements Serializable
- serialVersionUID:
- 1274042129007696269L
-
Serialized Fields
-
ignoreCase
boolean ignoreCase
Ignore case when comparing? -
pattern
String pattern
The pattern.
-
-
Class jakarta.mail.search.SubjectTerm extends StringTerm implements Serializable
- serialVersionUID:
- 7481568618055573432L
-
-
Package jakarta.persistence
-
Class jakarta.persistence.EntityExistsException extends PersistenceException implements Serializable
-
Class jakarta.persistence.EntityNotFoundException extends PersistenceException implements Serializable
-
Class jakarta.persistence.LockTimeoutException extends PersistenceException implements Serializable
-
Serialized Fields
-
entity
Object entity
The object that caused the exception
-
-
-
Class jakarta.persistence.NonUniqueResultException extends PersistenceException implements Serializable
-
Class jakarta.persistence.NoResultException extends PersistenceException implements Serializable
-
Class jakarta.persistence.OptimisticLockException extends PersistenceException implements Serializable
-
Serialized Fields
-
entity
Object entity
The object that caused the exception
-
-
-
Class jakarta.persistence.PersistenceException extends RuntimeException implements Serializable
-
Class jakarta.persistence.PessimisticLockException extends PersistenceException implements Serializable
-
Serialized Fields
-
entity
Object entity
The object that caused the exception
-
-
-
Class jakarta.persistence.QueryTimeoutException extends PersistenceException implements Serializable
-
Serialized Fields
-
query
Query query
The query object that caused the exception
-
-
-
Class jakarta.persistence.RollbackException extends PersistenceException implements Serializable
-
Class jakarta.persistence.TransactionRequiredException extends PersistenceException implements Serializable
-
-
Package jakarta.persistence.spi
-
Class jakarta.persistence.spi.TransformerException extends Exception implements Serializable
- serialVersionUID:
- 7484555485977030491L
-
-
Package jakarta.resource
-
Class jakarta.resource.NotSupportedException extends ResourceException implements Serializable
-
Class jakarta.resource.ResourceException extends Exception implements Serializable
-
-
Package jakarta.resource.cci
-
Class jakarta.resource.cci.ResourceWarning extends ResourceException implements Serializable
-
-
Package jakarta.resource.spi
-
Class jakarta.resource.spi.ApplicationServerInternalException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.CommException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.ConnectionEvent extends EventObject implements Serializable
-
Class jakarta.resource.spi.EISSystemException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.IllegalStateException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.InvalidPropertyException extends ResourceException implements Serializable
-
Serialized Fields
-
invalidProperties
PropertyDescriptor[] invalidProperties
-
-
-
Class jakarta.resource.spi.LocalTransactionException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.ResourceAdapterInternalException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.ResourceAllocationException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.RetryableUnavailableException extends UnavailableException implements Serializable
- serialVersionUID:
- 3730185319227786830L
-
Class jakarta.resource.spi.SecurityException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.SharingViolationException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.UnavailableException extends ResourceException implements Serializable
-
-
Package jakarta.resource.spi.security
-
Class jakarta.resource.spi.security.PasswordCredential extends Object implements Serializable
-
Serialized Fields
-
mcf
ManagedConnectionFactory mcf
-
password
char[] password
-
userName
String userName
-
-
-
-
Package jakarta.resource.spi.work
-
Class jakarta.resource.spi.work.HintsContext extends Object implements Serializable
- serialVersionUID:
- 7956353628297167255L
-
Serialized Fields
-
description
String description
-
hints
Map<String,Serializable> hints
-
name
String name
-
-
Class jakarta.resource.spi.work.RetryableWorkRejectedException extends WorkRejectedException implements Serializable
- serialVersionUID:
- 8198870267352154108L
-
Class jakarta.resource.spi.work.SecurityContext extends Object implements Serializable
- serialVersionUID:
- 7730296651802712658L
-
Class jakarta.resource.spi.work.TransactionContext extends ExecutionContext implements Serializable
- serialVersionUID:
- 6205067498708597824L
-
Class jakarta.resource.spi.work.WorkCompletedException extends WorkException implements Serializable
-
Class jakarta.resource.spi.work.WorkEvent extends EventObject implements Serializable
-
Serialized Fields
-
exc
WorkException exc
The exception that occured duringWork
processing. -
startDuration
long startDuration
The start delay duration (in milliseconds). -
type
int type
The event type. -
work
Work work
TheWork
object on which the event occured.
-
-
-
Class jakarta.resource.spi.work.WorkException extends ResourceException implements Serializable
-
Class jakarta.resource.spi.work.WorkRejectedException extends WorkException implements Serializable
-
-
Package jakarta.security.auth.message
-
Class jakarta.security.auth.message.AuthException extends LoginException implements Serializable
- serialVersionUID:
- -1156951780670243758L
-
-
Package jakarta.security.enterprise
-
Class jakarta.security.enterprise.AuthenticationException extends GeneralSecurityException implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.security.enterprise.CallerPrincipal extends Object implements Serializable
- serialVersionUID:
- -6951555039431667786L
-
Serialized Fields
-
name
String name
-
-
-
Package jakarta.security.enterprise.authentication.mechanism.http
-
Class jakarta.security.enterprise.authentication.mechanism.http.AutoApplySession.Literal extends AnnotationLiteral<AutoApplySession> implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.security.enterprise.authentication.mechanism.http.LoginToContinue.Literal extends AnnotationLiteral<LoginToContinue> implements Serializable
-
Class jakarta.security.enterprise.authentication.mechanism.http.RememberMe.Literal extends AnnotationLiteral<RememberMe> implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cookieHttpOnly
boolean cookieHttpOnly
-
cookieHttpOnlyExpression
String cookieHttpOnlyExpression
-
cookieMaxAgeSeconds
int cookieMaxAgeSeconds
-
cookieMaxAgeSecondsExpression
String cookieMaxAgeSecondsExpression
-
cookieName
String cookieName
-
cookieSecureOnly
boolean cookieSecureOnly
-
cookieSecureOnlyExpression
String cookieSecureOnlyExpression
-
isRememberMe
boolean isRememberMe
-
isRememberMeExpression
String isRememberMeExpression
-
-
-
Package jakarta.security.enterprise.identitystore
-
Class jakarta.security.enterprise.identitystore.IdentityStorePermission extends BasicPermission implements Serializable
- serialVersionUID:
- 1254057022829640365L
-
-
Package jakarta.security.enterprise.identitystore.openid
-
Class jakarta.security.enterprise.identitystore.openid.Scope extends LinkedHashSet<String> implements Serializable
- serialVersionUID:
- 1L
-
-
Package jakarta.security.jacc
-
Class jakarta.security.jacc.EJBMethodPermission extends Permission implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream inputStream) throws IOException, ClassNotFoundException
readObject reads the serialized fields from the input stream and uses them to restore the permission. This method need not be implemented if establishing the values of the serialized fields (as is done by defaultReadObject) is sufficient to initialize the permission.- Throws:
ClassNotFoundException
- If the class of an object couldn't be foundIOException
- If an I/O error occurs
-
writeObject
private void writeObject(ObjectOutputStream outputStream) throws IOException
writeObject is used to establish the values of the serialized fields before they are written to the output stream and need not be implemented if the values of the serialized fields are always available and up to date. The serialized fields are written to the output stream in the same form as they would be written by defaultWriteObject.- Throws:
IOException
- If an I/O error occurs while writing to the underlying stream
-
-
Serialization Overview
-
The serialized fields of this permission are defined below. Whether or not the serialized fields correspond to actual (private) fields is an implementation decision.
-
-
Serialized Fields
-
actions
String actions
the canonicalized actions string (as returned by getActions).
-
-
Class jakarta.security.jacc.EJBRoleRefPermission extends Permission implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream inputStream) throws IOException, ClassNotFoundException
readObject reads the serialized fields from the input stream and uses them to restore the permission. This method need not be implemented if establishing the values of the serialized fields (as is done by defaultReadObject) is sufficient to initialize the permission.- Throws:
ClassNotFoundException
- If the class of an object couldn't be foundIOException
- If an I/O error occurs
-
writeObject
private void writeObject(ObjectOutputStream outputStream) throws IOException
writeObject is used to establish the values of the serialized fields before they are written to the output stream and need not be implemented if the values of the serialized fields are always available and up to date. The serialized fields are written to the output stream in the same form as they would be written by defaultWriteObject.- Throws:
IOException
- If an I/O error occurs while writing to the underlying stream
-
-
Serialization Overview
-
The serialized fields of this permission are defined below. Whether or not the serialized fields correspond to actual (private) fields is an implementation decision.
-
-
Serialized Fields
-
actions
String actions
the canonicalized actions string (as returned by getActions).
-
-
Class jakarta.security.jacc.PolicyContextException extends Exception implements Serializable
- serialVersionUID:
- 3925692572777572935L
-
Class jakarta.security.jacc.WebResourcePermission extends Permission implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream inputStream) throws IOException, ClassNotFoundException
readObject reads the serialized fields from the input stream and uses them to restore the permission. This method need not be implemented if establishing the values of the serialized fields (as is done by defaultReadObject) is sufficient to initialize the permission.- Throws:
ClassNotFoundException
- If the class of an object couldn't be foundIOException
- If an I/O error occurs
-
writeObject
private void writeObject(ObjectOutputStream outputStream) throws IOException
writeObject is used to establish the values of the serialized fields before they are written to the output stream and need not be implemented if the values of the serialized fields are always available and up to date. The serialized fields are written to the output stream in the same form as they would be written by defaultWriteObject.- Throws:
IOException
- If an I/O error occurs while writing to the underlying stream
-
-
Serialization Overview
-
The serialized fields of this permission are defined below. Whether or not the serialized fields correspond to actual (private) fields is an implementation decision.
-
-
Serialized Fields
-
actions
String actions
the canonicalized actions string (as returned by getActions).
-
-
Class jakarta.security.jacc.WebRoleRefPermission extends Permission implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream inputStream) throws IOException, ClassNotFoundException
readObject reads the serialized fields from the input stream and uses them to restore the permission. This method need not be implemented if establishing the values of the serialized fields (as is done by defaultReadObject) is sufficient to initialize the permission.- Throws:
ClassNotFoundException
- If the class of an object couldn't be foundIOException
- If an I/O error occurs
-
writeObject
private void writeObject(ObjectOutputStream outputStream) throws IOException
writeObject is used to establish the values of the serialized fields before they are written to the output stream and need not be implemented if the values of the serialized fields are always available and up to date. The serialized fields are written to the output stream in the same form as they would be written by defaultWriteObject.- Throws:
IOException
- If an I/O error occurs while writing to the underlying stream
-
-
Serialization Overview
-
The serialized fields of this permission are defined below. Whether or not the serialized fields correspond to actual (private) fields is an implementation decision.
-
-
Serialized Fields
-
actions
String actions
the canonicalized actions string (as returned by getActions).
-
-
Class jakarta.security.jacc.WebUserDataPermission extends Permission implements Serializable
- serialVersionUID:
- -970193775626385011L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream inputStream) throws IOException, ClassNotFoundException
readObject reads the serialized fields from the input stream and uses them to restore the permission. This method need not be implemented if establishing the values of the serialized fields (as is done by defaultReadObject) is sufficient to initialize the permission.- Throws:
ClassNotFoundException
- If the class of an object couldn't be foundIOException
- If an I/O error occurs
-
writeObject
private void writeObject(ObjectOutputStream outputStream) throws IOException
writeObject is used to establish the values of the serialized fields before they are written to the output stream and need not be implemented if the values of the serialized fields are always available and up to date. The serialized fields are written to the output stream in the same form as they would be written by defaultWriteObject.- Throws:
IOException
- If an I/O error occurs while writing to the underlying stream
-
-
Serialization Overview
-
The serialized fields of this permission are defined below. Whether or not the serialized fields correspond to actual (private) fields is an implementation decision.
-
-
Serialized Fields
-
actions
String actions
the canonicalized actions string (as returned by getActions).
-
-
-
Package jakarta.servlet
-
Class jakarta.servlet.GenericFilter extends Object implements Serializable
- serialVersionUID:
- 4060116231031076581L
-
Class jakarta.servlet.GenericServlet extends Object implements Serializable
- serialVersionUID:
- -8592279577370996712L
-
Class jakarta.servlet.ServletContextAttributeEvent extends ServletContextEvent implements Serializable
- serialVersionUID:
- -5804680734245618303L
-
Class jakarta.servlet.ServletContextEvent extends EventObject implements Serializable
- serialVersionUID:
- -7501701636134222423L
-
Class jakarta.servlet.ServletException extends Exception implements Serializable
- serialVersionUID:
- 4221302886851315160L
-
Serialized Fields
-
rootCause
Throwable rootCause
-
-
Class jakarta.servlet.ServletRequestAttributeEvent extends ServletRequestEvent implements Serializable
- serialVersionUID:
- -1466635426192317793L
-
Class jakarta.servlet.ServletRequestEvent extends EventObject implements Serializable
- serialVersionUID:
- -7467864054698729101L
-
Class jakarta.servlet.UnavailableException extends ServletException implements Serializable
- serialVersionUID:
- 5622686609215003468L
-
Serialized Fields
-
permanent
boolean permanent
-
seconds
int seconds
-
-
-
Package jakarta.servlet.http
-
Class jakarta.servlet.http.Cookie extends Object implements Serializable
- serialVersionUID:
- -5433071011125749022L
-
Class jakarta.servlet.http.HttpFilter extends GenericFilter implements Serializable
- serialVersionUID:
- 7478463438252262094L
-
Class jakarta.servlet.http.HttpServlet extends GenericServlet implements Serializable
- serialVersionUID:
- 8466325577512134784L
-
Serialized Fields
-
legacyHeadHandling
boolean legacyHeadHandling
-
-
Class jakarta.servlet.http.HttpSessionBindingEvent extends HttpSessionEvent implements Serializable
- serialVersionUID:
- 7308000419984825907L
-
Class jakarta.servlet.http.HttpSessionEvent extends EventObject implements Serializable
- serialVersionUID:
- -7622791603672342895L
-
-
Package jakarta.servlet.jsp
-
Class jakarta.servlet.jsp.JspException extends Exception implements Serializable
- serialVersionUID:
- -724329986255528641L
-
Class jakarta.servlet.jsp.JspTagException extends JspException implements Serializable
- serialVersionUID:
- 1546743964929435607L
-
Class jakarta.servlet.jsp.SkipPageException extends JspException implements Serializable
- serialVersionUID:
- -7223157500637139188L
-
-
Package jakarta.servlet.jsp.el
-
Class jakarta.servlet.jsp.el.ELException extends Exception implements Serializable
- serialVersionUID:
- -3920470039225321534L
-
Serialized Fields
-
mRootCause
Throwable mRootCause
Deprecated.
-
-
Class jakarta.servlet.jsp.el.ELParseException extends ELException implements Serializable
- serialVersionUID:
- 3521581805886060118L
-
-
Package jakarta.servlet.jsp.jstl.core
-
Class jakarta.servlet.jsp.jstl.core.ConditionalTagSupport extends TagSupport implements Serializable
-
Serialized Fields
-
result
boolean result
-
scope
int scope
-
var
String var
-
-
-
Class jakarta.servlet.jsp.jstl.core.IndexedValueExpression extends ValueExpression implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
i
Integer i
-
orig
ValueExpression orig
-
-
Class jakarta.servlet.jsp.jstl.core.IteratedValueExpression extends ValueExpression implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
i
int i
-
iteratedExpression
IteratedExpression iteratedExpression
-
-
Class jakarta.servlet.jsp.jstl.core.LoopTagSupport extends TagSupport implements Serializable
-
Serialized Fields
-
begin
int begin
Starting index ('begin' attribute) -
beginSpecified
boolean beginSpecified
Boolean flag indicating whether 'begin' was specified. -
count
int count
-
deferredExpression
ValueExpression deferredExpression
The deferred expression if any -
end
int end
Ending index of the iteration ('end' attribute). A value of -1 internally indicates 'no end specified', although accessors for the core Jakarta Standard Tag Library tags do not allow this value to be supplied directly by the user. -
endSpecified
boolean endSpecified
Boolean flag indicating whether 'end' was specified. -
index
int index
-
item
Object item
-
itemId
String itemId
Attribute-exposing control -
iteratedExpression
IteratedExpression iteratedExpression
-
last
boolean last
-
oldMappedValue
ValueExpression oldMappedValue
A temporary used to hold the previous value (from the enclosing iteration tag) for the EL variable. -
status
LoopTagStatus status
-
statusId
String statusId
Attribute-exposing control -
step
int step
Iteration step ('step' attribute) -
stepSpecified
boolean stepSpecified
Boolean flag indicating whether 'step' was specified.
-
-
-
-
Package jakarta.servlet.jsp.tagext
-
Class jakarta.servlet.jsp.tagext.BodyTagSupport extends TagSupport implements Serializable
- serialVersionUID:
- -7235752615580319833L
-
Serialized Fields
-
bodyContent
BodyContent bodyContent
The current BodyContent for this BodyTag.
-
-
Class jakarta.servlet.jsp.tagext.TagSupport extends Object implements Serializable
- serialVersionUID:
- 3749116330508327592L
-
-
Package jakarta.transaction
-
Class jakarta.transaction.HeuristicCommitException extends Exception implements Serializable
- serialVersionUID:
- -3977609782149921760L
-
Class jakarta.transaction.HeuristicMixedException extends Exception implements Serializable
- serialVersionUID:
- 2345014349685956666L
-
Class jakarta.transaction.HeuristicRollbackException extends Exception implements Serializable
- serialVersionUID:
- -3483618944556408897L
-
Class jakarta.transaction.InvalidTransactionException extends RemoteException implements Serializable
- serialVersionUID:
- 3597320220337691496L
-
Class jakarta.transaction.NotSupportedException extends Exception implements Serializable
- serialVersionUID:
- 56870312332816390L
-
Class jakarta.transaction.RollbackException extends Exception implements Serializable
- serialVersionUID:
- 4151607774785285395L
-
Class jakarta.transaction.SystemException extends Exception implements Serializable
- serialVersionUID:
- 839699079412719325L
-
Serialized Fields
-
errorCode
int errorCode
The error code with which to create the SystemException.The error code for the exception
-
-
Class jakarta.transaction.TransactionalException extends RuntimeException implements Serializable
- serialVersionUID:
- -8196645329560986417L
-
Class jakarta.transaction.TransactionRequiredException extends RemoteException implements Serializable
- serialVersionUID:
- -1898806419937446439L
-
Class jakarta.transaction.TransactionRolledbackException extends RemoteException implements Serializable
- serialVersionUID:
- -3142798139623020577L
-
-
Package jakarta.validation
-
Class jakarta.validation.ConstraintDeclarationException extends ValidationException implements Serializable
-
Class jakarta.validation.ConstraintDefinitionException extends ValidationException implements Serializable
-
Class jakarta.validation.ConstraintViolationException extends ValidationException implements Serializable
-
Serialized Fields
-
constraintViolations
Set<ConstraintViolation<?>> constraintViolations
-
-
-
Class jakarta.validation.GroupDefinitionException extends ValidationException implements Serializable
-
Class jakarta.validation.NoProviderFoundException extends ValidationException implements Serializable
-
Class jakarta.validation.UnexpectedTypeException extends ConstraintDeclarationException implements Serializable
-
Class jakarta.validation.ValidationException extends RuntimeException implements Serializable
-
-
Package jakarta.validation.valueextraction
-
Class jakarta.validation.valueextraction.ValueExtractorDeclarationException extends ValidationException implements Serializable
-
Class jakarta.validation.valueextraction.ValueExtractorDefinitionException extends ValidationException implements Serializable
-
-
Package jakarta.websocket
-
Class jakarta.websocket.DecodeException extends Exception implements Serializable
- serialVersionUID:
- 6L
-
Serialized Fields
-
bb
ByteBuffer bb
-
encodedString
String encodedString
-
-
Class jakarta.websocket.DeploymentException extends Exception implements Serializable
- serialVersionUID:
- 7576860738144220015L
-
Class jakarta.websocket.EncodeException extends Exception implements Serializable
- serialVersionUID:
- 6L
-
Serialized Fields
-
object
Object object
-
-
Class jakarta.websocket.SessionException extends Exception implements Serializable
- serialVersionUID:
- 12L
-
Serialized Fields
-
session
Session session
-
-
-
Package jakarta.ws.rs
-
Class jakarta.ws.rs.BadRequestException extends ClientErrorException implements Serializable
- serialVersionUID:
- 7264647684649480265L
-
Class jakarta.ws.rs.ClientErrorException extends WebApplicationException implements Serializable
- serialVersionUID:
- -4101970664444907990L
-
Class jakarta.ws.rs.ForbiddenException extends ClientErrorException implements Serializable
- serialVersionUID:
- -2740045367479165061L
-
Class jakarta.ws.rs.InternalServerErrorException extends ServerErrorException implements Serializable
- serialVersionUID:
- -6515710697540553309L
-
Class jakarta.ws.rs.NotAcceptableException extends ClientErrorException implements Serializable
- serialVersionUID:
- -1476163816796529078L
-
Class jakarta.ws.rs.NotAllowedException extends ClientErrorException implements Serializable
- serialVersionUID:
- -586776054369626119L
-
Class jakarta.ws.rs.NotAuthorizedException extends ClientErrorException implements Serializable
- serialVersionUID:
- -3156040750581929702L
-
Class jakarta.ws.rs.NotFoundException extends ClientErrorException implements Serializable
- serialVersionUID:
- -6820866117511628388L
-
Class jakarta.ws.rs.NotSupportedException extends ClientErrorException implements Serializable
- serialVersionUID:
- -8286622745725405656L
-
Class jakarta.ws.rs.ProcessingException extends RuntimeException implements Serializable
- serialVersionUID:
- -4232431597816056514L
-
Class jakarta.ws.rs.RedirectionException extends WebApplicationException implements Serializable
- serialVersionUID:
- -2584325408291098012L
-
Class jakarta.ws.rs.ServerErrorException extends WebApplicationException implements Serializable
- serialVersionUID:
- 4730895276505569556L
-
Class jakarta.ws.rs.ServiceUnavailableException extends ServerErrorException implements Serializable
- serialVersionUID:
- 3821068205617492633L
-
Class jakarta.ws.rs.WebApplicationException extends RuntimeException implements Serializable
- serialVersionUID:
- 8273970399584007146L
-
-
Package jakarta.ws.rs.client
-
Class jakarta.ws.rs.client.ResponseProcessingException extends ProcessingException implements Serializable
- serialVersionUID:
- -4923161617935731839L
-
Serialized Fields
-
response
Response response
The response instance for which the processing failed.
-
-
-
Package jakarta.ws.rs.core
-
Class jakarta.ws.rs.core.AbstractMultivaluedMap extends Object implements Serializable
-
Class jakarta.ws.rs.core.MultivaluedHashMap extends AbstractMultivaluedMap<K,V> implements Serializable
- serialVersionUID:
- -6052320403766368902L
-
Class jakarta.ws.rs.core.NoContentException extends IOException implements Serializable
- serialVersionUID:
- -3082577759787473245L
-
Class jakarta.ws.rs.core.UriBuilderException extends RuntimeException implements Serializable
- serialVersionUID:
- 956255913370721193L
-
-
Package jakarta.xml.bind
-
Class jakarta.xml.bind.DataBindingException extends RuntimeException implements Serializable
-
Class jakarta.xml.bind.JAXBElement extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
declaredType
Class<T> declaredType
Java datatype binding for xml element declaration's type. -
name
QName name
xml element tag name -
nil
boolean nil
true iff the xml element instance has xsi:nil="true". -
scope
Class scope
Scope of xml element declaration representing this xml element instance. Can be one of the following values: -JAXBElement.GlobalScope
for global xml element declaration. - local element declaration has a scope set to the Java class representation of complex type defintion containing xml element declaration. -
value
T value
xml element value. Represents content model and attributes of an xml element instance.
-
-
Class jakarta.xml.bind.JAXBException extends Exception implements Serializable
- serialVersionUID:
- -5621384651494307979L
-
Class jakarta.xml.bind.JAXBPermission extends BasicPermission implements Serializable
- serialVersionUID:
- 1L
-
Class jakarta.xml.bind.MarshalException extends JAXBException implements Serializable
-
Class jakarta.xml.bind.PropertyException extends JAXBException implements Serializable
-
Class jakarta.xml.bind.TypeConstraintException extends RuntimeException implements Serializable
- serialVersionUID:
- -3059799699420143848L
-
Class jakarta.xml.bind.UnmarshalException extends JAXBException implements Serializable
-
Class jakarta.xml.bind.ValidationException extends JAXBException implements Serializable
-
-
Package jakarta.xml.soap
-
Class jakarta.xml.soap.SOAPException extends Exception implements Serializable
- serialVersionUID:
- -2347183911432431333L
-
Serialized Fields
-
cause
Throwable cause
The cause.
-
-
-
Package jakarta.xml.ws
-
Class jakarta.xml.ws.Holder extends Object implements Serializable
- serialVersionUID:
- 2623699057546497185L
-
Serialized Fields
-
value
T value
The value contained in the holder.
-
-
Class jakarta.xml.ws.ProtocolException extends WebServiceException implements Serializable
- serialVersionUID:
- -5162391758599890377L
-
Class jakarta.xml.ws.WebServiceException extends RuntimeException implements Serializable
- serialVersionUID:
- 6923454787998151997L
-
Class jakarta.xml.ws.WebServicePermission extends BasicPermission implements Serializable
- serialVersionUID:
- -146474640053770988L
-
-
Package jakarta.xml.ws.http
-
Class jakarta.xml.ws.http.HTTPException extends ProtocolException implements Serializable
- serialVersionUID:
- 508892871321531629L
-
Serialized Fields
-
statusCode
int statusCode
-
-
-
Package jakarta.xml.ws.soap
-
Class jakarta.xml.ws.soap.SOAPFaultException extends ProtocolException implements Serializable
- serialVersionUID:
- -5717334416389757052L
-
Serialized Fields
-
fault
SOAPFault fault
-
-
-
Package javax.wsdl
-
Class javax.wsdl.OperationType extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
private Object readResolve() throws ObjectStreamException
- Throws:
ObjectStreamException
-
-
Serialized Fields
-
id
String id
-
intId
int intId
-
-
Class javax.wsdl.WSDLException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
-
Package javax.wsdl.extensions
-
Class javax.wsdl.extensions.ExtensionRegistry extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
defaultDeser
ExtensionDeserializer defaultDeser
-
defaultSer
ExtensionSerializer defaultSer
-
deserializerReg
Map deserializerReg
-
extensionAttributeTypeReg
Map extensionAttributeTypeReg
-
extensionTypeReg
Map extensionTypeReg
-
serializerReg
Map serializerReg
-
-
Class javax.wsdl.extensions.UnknownExtensibilityElement extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class javax.wsdl.extensions.UnknownExtensionDeserializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class javax.wsdl.extensions.UnknownExtensionSerializer extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package javax.wsdl.extensions.http
-
Package javax.wsdl.extensions.mime
-
Package javax.wsdl.extensions.schema
-
Package javax.wsdl.extensions.soap
-
Package javax.wsdl.extensions.soap12
-
Package javax.xml.namespace
-
Class javax.xml.namespace.QName extends Object implements Serializable
- serialVersionUID:
- -9120448754896609940L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-
Serialized Fields
-
-
Package org.apache.activemq.artemis.api.core
-
Class org.apache.activemq.artemis.api.core.ActiveMQAddressDoesNotExistException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQAddressExistsException extends ActiveMQException implements Serializable
- serialVersionUID:
- 3032730450033992367L
-
Class org.apache.activemq.artemis.api.core.ActiveMQAddressFullException extends ActiveMQException implements Serializable
- serialVersionUID:
- 0L
-
Class org.apache.activemq.artemis.api.core.ActiveMQAlreadyReplicatingException extends ActiveMQException implements Serializable
- serialVersionUID:
- -7352538521961996152L
-
Class org.apache.activemq.artemis.api.core.ActiveMQClusterSecurityException extends ActiveMQException implements Serializable
- serialVersionUID:
- -5890578849781297933L
-
Class org.apache.activemq.artemis.api.core.ActiveMQConnectionTimedOutException extends ActiveMQException implements Serializable
- serialVersionUID:
- 3244233758084830372L
-
Class org.apache.activemq.artemis.api.core.ActiveMQDeleteAddressException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQDisconnectedException extends ActiveMQException implements Serializable
- serialVersionUID:
- 7414966383933311627L
-
Class org.apache.activemq.artemis.api.core.ActiveMQDivertDoesNotExistException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQDuplicateIdException extends ActiveMQException implements Serializable
- serialVersionUID:
- -4302979339865777119L
-
Class org.apache.activemq.artemis.api.core.ActiveMQDuplicateMetaDataException extends ActiveMQException implements Serializable
- serialVersionUID:
- 7877182872143004058L
-
Class org.apache.activemq.artemis.api.core.ActiveMQException extends Exception implements Serializable
- serialVersionUID:
- -4802014152804997417L
-
Serialized Fields
-
type
ActiveMQExceptionType type
-
-
Class org.apache.activemq.artemis.api.core.ActiveMQIllegalStateException extends ActiveMQException implements Serializable
- serialVersionUID:
- -4480125401057788511L
-
Class org.apache.activemq.artemis.api.core.ActiveMQIncompatibleClientServerException extends ActiveMQException implements Serializable
- serialVersionUID:
- -1662999230291452298L
-
Class org.apache.activemq.artemis.api.core.ActiveMQInterceptorRejectedPacketException extends ActiveMQException implements Serializable
- serialVersionUID:
- -5798841227645281815L
-
Class org.apache.activemq.artemis.api.core.ActiveMQInternalErrorException extends ActiveMQException implements Serializable
- serialVersionUID:
- -5987814047521530695L
-
Class org.apache.activemq.artemis.api.core.ActiveMQInterruptedException extends RuntimeException implements Serializable
- serialVersionUID:
- -5744690023549671221L
-
Class org.apache.activemq.artemis.api.core.ActiveMQInvalidBufferException extends RuntimeException implements Serializable
- serialVersionUID:
- 7048111433271717514L
-
Class org.apache.activemq.artemis.api.core.ActiveMQInvalidFilterExpressionException extends ActiveMQException implements Serializable
- serialVersionUID:
- 7188625553939665128L
-
Class org.apache.activemq.artemis.api.core.ActiveMQInvalidQueueConfiguration extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQInvalidTransientQueueUseException extends ActiveMQException implements Serializable
- serialVersionUID:
- -405552292451883063L
-
Class org.apache.activemq.artemis.api.core.ActiveMQIOErrorException extends ActiveMQException implements Serializable
- serialVersionUID:
- 797277117077787396L
-
Class org.apache.activemq.artemis.api.core.ActiveMQLargeMessageException extends ActiveMQException implements Serializable
- serialVersionUID:
- 1087867463974768491L
-
Class org.apache.activemq.artemis.api.core.ActiveMQLargeMessageInterruptedException extends ActiveMQException implements Serializable
- serialVersionUID:
- 0L
-
Class org.apache.activemq.artemis.api.core.ActiveMQNativeIOError extends ActiveMQException implements Serializable
- serialVersionUID:
- 2355120980683293085L
-
Class org.apache.activemq.artemis.api.core.ActiveMQNonExistentQueueException extends ActiveMQException implements Serializable
- serialVersionUID:
- -8199298881947523607L
-
Class org.apache.activemq.artemis.api.core.ActiveMQNotConnectedException extends ActiveMQException implements Serializable
- serialVersionUID:
- -3489189971813613325L
-
Class org.apache.activemq.artemis.api.core.ActiveMQNullRefException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQObjectClosedException extends ActiveMQException implements Serializable
- serialVersionUID:
- 809024052184914812L
-
Class org.apache.activemq.artemis.api.core.ActiveMQPropertyConversionException extends RuntimeException implements Serializable
- serialVersionUID:
- -3010008708334904332L
-
Class org.apache.activemq.artemis.api.core.ActiveMQQueueExistsException extends ActiveMQException implements Serializable
- serialVersionUID:
- -405552292451883063L
-
Class org.apache.activemq.artemis.api.core.ActiveMQQueueMaxConsumerLimitReached extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQRemoteDisconnectException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQReplicationTimeooutException extends ActiveMQException implements Serializable
- serialVersionUID:
- -4486139158452585899L
-
Class org.apache.activemq.artemis.api.core.ActiveMQRoutingException extends ActiveMQException implements Serializable
- serialVersionUID:
- 7414966383933311627L
-
Class org.apache.activemq.artemis.api.core.ActiveMQSecurityException extends ActiveMQException implements Serializable
- serialVersionUID:
- 3291210307590756881L
-
Class org.apache.activemq.artemis.api.core.ActiveMQSessionCreationException extends ActiveMQException implements Serializable
- serialVersionUID:
- -4486139158452585895L
-
Class org.apache.activemq.artemis.api.core.ActiveMQShutdownException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQTransactionOutcomeUnknownException extends ActiveMQException implements Serializable
- serialVersionUID:
- 7940794286427650558L
-
Class org.apache.activemq.artemis.api.core.ActiveMQTransactionRolledBackException extends ActiveMQException implements Serializable
- serialVersionUID:
- 5823412198677126300L
-
Class org.apache.activemq.artemis.api.core.ActiveMQTransactionTimeoutException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQUnBlockedException extends ActiveMQException implements Serializable
- serialVersionUID:
- -4507889261891160608L
-
Class org.apache.activemq.artemis.api.core.ActiveMQUnexpectedRoutingTypeForAddress extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.api.core.ActiveMQUnsupportedPacketException extends ActiveMQException implements Serializable
- serialVersionUID:
- -7074681529482463675L
-
Class org.apache.activemq.artemis.api.core.BroadcastGroupConfiguration extends Object implements Serializable
- serialVersionUID:
- 2335634694112319124L
-
Serialized Fields
-
broadcastPeriod
long broadcastPeriod
-
connectorInfos
List<String> connectorInfos
-
endpointFactory
BroadcastEndpointFactory endpointFactory
-
name
String name
-
-
Class org.apache.activemq.artemis.api.core.ChannelBroadcastEndpointFactory extends Object implements Serializable
-
Serialized Fields
-
channel
org.jgroups.JChannel channel
-
channelName
String channelName
-
manager
JChannelManager manager
-
-
-
Class org.apache.activemq.artemis.api.core.DiscoveryGroupConfiguration extends Object implements Serializable
- serialVersionUID:
- 8657206421727863400L
-
Serialized Fields
-
discoveryInitialWaitTimeout
long discoveryInitialWaitTimeout
-
endpointFactory
BroadcastEndpointFactory endpointFactory
-
name
String name
-
refreshTimeout
long refreshTimeout
-
-
Class org.apache.activemq.artemis.api.core.JGroupsFileBroadcastEndpointFactory extends Object implements Serializable
-
Serialized Fields
-
channelName
String channelName
-
file
String file
-
manager
JChannelManager manager
-
-
-
Class org.apache.activemq.artemis.api.core.ObjLongPair extends Object implements Serializable
- serialVersionUID:
- 7749478219139339853L
-
Serialized Fields
-
a
A a
-
b
long b
-
-
Class org.apache.activemq.artemis.api.core.Pair extends Object implements Serializable
- serialVersionUID:
- -2496357457812368127L
-
Class org.apache.activemq.artemis.api.core.QueueAttributes extends Object implements Serializable
-
Serialized Fields
-
autoDelete
Boolean autoDelete
Deprecated. -
autoDeleteDelay
Long autoDeleteDelay
Deprecated. -
autoDeleteMessageCount
Long autoDeleteMessageCount
Deprecated. -
consumerPriority
Integer consumerPriority
Deprecated. -
consumersBeforeDispatch
Integer consumersBeforeDispatch
Deprecated. -
delayBeforeDispatch
Long delayBeforeDispatch
Deprecated. -
durable
Boolean durable
Deprecated. -
enabled
Boolean enabled
Deprecated. -
exclusive
Boolean exclusive
Deprecated. -
filterString
SimpleString filterString
Deprecated. -
groupBuckets
Integer groupBuckets
Deprecated. -
groupFirstKey
SimpleString groupFirstKey
Deprecated. -
groupRebalance
Boolean groupRebalance
Deprecated. -
groupRebalancePauseDispatch
Boolean groupRebalancePauseDispatch
Deprecated. -
lastValue
Boolean lastValue
Deprecated. -
lastValueKey
SimpleString lastValueKey
Deprecated. -
maxConsumers
Integer maxConsumers
Deprecated. -
nonDestructive
Boolean nonDestructive
Deprecated. -
purgeOnNoConsumers
Boolean purgeOnNoConsumers
Deprecated. -
ringSize
Long ringSize
Deprecated. -
routingType
RoutingType routingType
Deprecated.
-
-
-
Class org.apache.activemq.artemis.api.core.QueueConfiguration extends Object implements Serializable
- serialVersionUID:
- 2601016432150225938L
-
Serialized Fields
-
_transient
Boolean _transient
-
address
SimpleString address
-
autoCreateAddress
Boolean autoCreateAddress
-
autoCreated
Boolean autoCreated
-
autoDelete
Boolean autoDelete
-
autoDeleteDelay
Long autoDeleteDelay
-
autoDeleteMessageCount
Long autoDeleteMessageCount
-
configurationManaged
Boolean configurationManaged
-
consumerPriority
Integer consumerPriority
-
consumersBeforeDispatch
Integer consumersBeforeDispatch
-
delayBeforeDispatch
Long delayBeforeDispatch
-
durable
Boolean durable
-
enabled
Boolean enabled
-
exclusive
Boolean exclusive
-
filterString
SimpleString filterString
-
groupBuckets
Integer groupBuckets
-
groupFirstKey
SimpleString groupFirstKey
-
groupRebalance
Boolean groupRebalance
-
groupRebalancePauseDispatch
Boolean groupRebalancePauseDispatch
-
id
Long id
-
internal
Boolean internal
-
lastValue
Boolean lastValue
-
lastValueKey
SimpleString lastValueKey
-
maxConsumers
Integer maxConsumers
-
name
SimpleString name
-
nonDestructive
Boolean nonDestructive
-
purgeOnNoConsumers
Boolean purgeOnNoConsumers
-
ringSize
Long ringSize
-
routingType
RoutingType routingType
-
temporary
Boolean temporary
-
user
SimpleString user
-
-
Class org.apache.activemq.artemis.api.core.SimpleString extends Object implements Serializable
- serialVersionUID:
- 4204223851422244307L
-
Serialized Fields
-
data
byte[] data
-
-
Class org.apache.activemq.artemis.api.core.TransportConfiguration extends Object implements Serializable
- serialVersionUID:
- -3994528421527392679L
-
Class org.apache.activemq.artemis.api.core.UDPBroadcastEndpointFactory extends Object implements Serializable
-
Serialized Fields
-
groupAddress
String groupAddress
-
groupPort
int groupPort
-
-
-
-
Package org.apache.activemq.artemis.api.core.client.loadbalance
-
Class org.apache.activemq.artemis.api.core.client.loadbalance.RoundRobinConnectionLoadBalancingPolicy extends Object implements Serializable
- serialVersionUID:
- 7511196010141439559L
-
Serialized Fields
-
pos
int pos
-
-
-
Package org.apache.activemq.artemis.cli
-
Class org.apache.activemq.artemis.cli.CLIException extends Exception implements Serializable
-
Class org.apache.activemq.artemis.cli.ConfigurationException extends Exception implements Serializable
-
-
Package org.apache.activemq.artemis.cli.commands
-
Class org.apache.activemq.artemis.cli.commands.InvalidOptionsError extends Exception implements Serializable
-
-
Package org.apache.activemq.artemis.cli.commands.check
-
Class org.apache.activemq.artemis.cli.commands.check.CheckException extends Exception implements Serializable
-
-
Package org.apache.activemq.artemis.cli.commands.messages.perf
-
Class org.apache.activemq.artemis.cli.commands.messages.perf.PaddingDecimalFormat extends DecimalFormat implements Serializable
-
Serialized Fields
-
minimumLength
int minimumLength
-
pad
StringBuilder pad
-
-
-
-
Package org.apache.activemq.artemis.core.client
-
Class org.apache.activemq.artemis.core.client.ActiveMQClientLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.core.client.ActiveMQClientMessageBundle_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.apache.activemq.artemis.core.config
-
Class org.apache.activemq.artemis.core.config.BridgeConfiguration extends Object implements Serializable
- serialVersionUID:
- -1057244274380572226L
-
Serialized Fields
-
callTimeout
long callTimeout
-
clientFailureCheckPeriod
long clientFailureCheckPeriod
-
concurrency
int concurrency
-
configurationManaged
boolean configurationManaged
-
confirmationWindowSize
int confirmationWindowSize
-
connectionTTL
long connectionTTL
-
discoveryGroupName
String discoveryGroupName
-
filterString
String filterString
-
forwardingAddress
String forwardingAddress
-
ha
boolean ha
-
initialConnectAttempts
int initialConnectAttempts
-
maxRetryInterval
long maxRetryInterval
-
minLargeMessageSize
int minLargeMessageSize
-
name
String name
-
parentName
String parentName
-
password
String password
-
producerWindowSize
int producerWindowSize
-
queueName
String queueName
-
reconnectAttempts
int reconnectAttempts
-
reconnectAttemptsOnSameNode
int reconnectAttemptsOnSameNode
-
retryInterval
long retryInterval
-
retryIntervalMultiplier
double retryIntervalMultiplier
-
routingType
ComponentConfigurationRoutingType routingType
-
staticConnectors
List<String> staticConnectors
-
transformerConfiguration
TransformerConfiguration transformerConfiguration
-
useDuplicateDetection
boolean useDuplicateDetection
-
user
String user
-
-
Class org.apache.activemq.artemis.core.config.ClusterConnectionConfiguration extends Object implements Serializable
- serialVersionUID:
- 8948303813427795935L
-
Serialized Fields
-
address
String address
-
allowDirectConnectionsOnly
boolean allowDirectConnectionsOnly
-
callFailoverTimeout
long callFailoverTimeout
-
callTimeout
long callTimeout
-
clientFailureCheckPeriod
long clientFailureCheckPeriod
-
clusterNotificationAttempts
int clusterNotificationAttempts
-
clusterNotificationInterval
long clusterNotificationInterval
-
compositeMembers
URISupport.CompositeData compositeMembers
-
confirmationWindowSize
int confirmationWindowSize
-
connectionTTL
long connectionTTL
-
connectorName
String connectorName
-
discoveryGroupName
String discoveryGroupName
-
duplicateDetection
boolean duplicateDetection
-
initialConnectAttempts
int initialConnectAttempts
-
maxHops
int maxHops
-
maxRetryInterval
long maxRetryInterval
-
messageLoadBalancingType
MessageLoadBalancingType messageLoadBalancingType
-
minLargeMessageSize
int minLargeMessageSize
-
name
String name
-
producerWindowSize
int producerWindowSize
-
reconnectAttempts
int reconnectAttempts
-
retryInterval
long retryInterval
-
retryIntervalMultiplier
double retryIntervalMultiplier
-
staticConnectors
List<String> staticConnectors
-
-
Class org.apache.activemq.artemis.core.config.ConnectorServiceConfiguration extends Object implements Serializable
- serialVersionUID:
- -641207073030767325L
-
Class org.apache.activemq.artemis.core.config.CoreAddressConfiguration extends Object implements Serializable
-
Serialized Fields
-
name
String name
-
queueConfigurations
List<QueueConfiguration> queueConfigurations
-
routingTypes
EnumSet<RoutingType> routingTypes
-
-
-
Class org.apache.activemq.artemis.core.config.CoreQueueConfiguration extends Object implements Serializable
- serialVersionUID:
- 650404974977490254L
-
Serialized Fields
-
address
String address
Deprecated. -
consumersBeforeDispatch
Integer consumersBeforeDispatch
Deprecated. -
delayBeforeDispatch
Long delayBeforeDispatch
Deprecated. -
durable
boolean durable
Deprecated. -
enabled
Boolean enabled
Deprecated. -
exclusive
Boolean exclusive
Deprecated. -
filterString
String filterString
Deprecated. -
groupBuckets
Integer groupBuckets
Deprecated. -
groupFirstKey
String groupFirstKey
Deprecated. -
groupRebalance
Boolean groupRebalance
Deprecated. -
lastValue
Boolean lastValue
Deprecated. -
lastValueKey
String lastValueKey
Deprecated. -
maxConsumers
Integer maxConsumers
Deprecated. -
name
String name
Deprecated. -
nonDestructive
Boolean nonDestructive
Deprecated. -
purgeOnNoConsumers
Boolean purgeOnNoConsumers
Deprecated. -
ringSize
Long ringSize
Deprecated. -
routingType
RoutingType routingType
Deprecated. -
user
String user
Deprecated.
-
-
Class org.apache.activemq.artemis.core.config.DivertConfiguration extends Object implements Serializable
- serialVersionUID:
- 6910543740464269629L
-
Serialized Fields
-
address
String address
-
exclusive
boolean exclusive
-
filterString
String filterString
-
forwardingAddress
String forwardingAddress
-
name
String name
-
routingName
String routingName
-
routingType
ComponentConfigurationRoutingType routingType
-
transformerConfiguration
TransformerConfiguration transformerConfiguration
-
-
Class org.apache.activemq.artemis.core.config.FederationConfiguration extends Object implements Serializable
-
Serialized Fields
-
credentials
FederationConfiguration.Credentials credentials
-
downstreamConfigurations
List<FederationDownstreamConfiguration> downstreamConfigurations
-
federationPolicyMap
Map<String,FederationPolicy> federationPolicyMap
-
name
String name
-
transformerConfigurationMap
Map<String,FederationTransformerConfiguration> transformerConfigurationMap
-
upstreamConfigurations
List<FederationUpstreamConfiguration> upstreamConfigurations
-
-
-
Class org.apache.activemq.artemis.core.config.FederationConfiguration.Credentials extends Object implements Serializable
-
Class org.apache.activemq.artemis.core.config.MetricsConfiguration extends Object implements Serializable
-
Serialized Fields
-
jvmGc
boolean jvmGc
-
jvmMemory
boolean jvmMemory
-
jvmThread
boolean jvmThread
-
nettyPool
boolean nettyPool
-
plugin
ActiveMQMetricsPlugin plugin
-
-
-
Class org.apache.activemq.artemis.core.config.ScaleDownConfiguration extends Object implements Serializable
-
Class org.apache.activemq.artemis.core.config.TransformerConfiguration extends Object implements Serializable
- serialVersionUID:
- -1057244274380572226L
-
Class org.apache.activemq.artemis.core.config.WildcardConfiguration extends Object implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.core.config.amqpBrokerConnectivity
-
Class org.apache.activemq.artemis.core.config.amqpBrokerConnectivity.AMQPBrokerConnectConfiguration extends BrokerConnectConfiguration implements Serializable
-
Serialized Fields
-
connectionElements
List<AMQPBrokerConnectionElement> connectionElements
-
transportConfigurations
List<TransportConfiguration> transportConfigurations
-
-
-
Class org.apache.activemq.artemis.core.config.amqpBrokerConnectivity.AMQPBrokerConnectionElement extends Object implements Serializable
-
Serialized Fields
-
matchAddress
SimpleString matchAddress
-
name
String name
-
parent
AMQPBrokerConnectConfiguration parent
-
queueName
SimpleString queueName
-
type
AMQPBrokerConnectionAddressType type
-
-
-
Class org.apache.activemq.artemis.core.config.amqpBrokerConnectivity.AMQPMirrorBrokerConnectionElement extends AMQPBrokerConnectionElement implements Serializable
-
Serialized Fields
-
addressFilter
String addressFilter
-
durable
boolean durable
-
messageAcknowledgements
boolean messageAcknowledgements
-
mirrorSNF
SimpleString mirrorSNF
-
queueCreation
boolean queueCreation
-
queueRemoval
boolean queueRemoval
-
-
-
-
Package org.apache.activemq.artemis.core.config.brokerConnectivity
-
Class org.apache.activemq.artemis.core.config.brokerConnectivity.BrokerConnectConfiguration extends Object implements Serializable
- serialVersionUID:
- 8026604526022462048L
-
-
Package org.apache.activemq.artemis.core.config.federation
-
Class org.apache.activemq.artemis.core.config.federation.FederationAddressPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
autoDelete
Boolean autoDelete
-
autoDeleteDelay
Long autoDeleteDelay
-
autoDeleteMessageCount
Long autoDeleteMessageCount
-
enableDivertBindings
boolean enableDivertBindings
-
excludes
Set<FederationAddressPolicyConfiguration.Matcher> excludes
-
includes
Set<FederationAddressPolicyConfiguration.Matcher> includes
-
maxHops
int maxHops
-
name
String name
-
transformerRef
String transformerRef
-
-
-
Class org.apache.activemq.artemis.core.config.federation.FederationAddressPolicyConfiguration.Matcher extends Object implements Serializable
-
Serialized Fields
-
addressMatch
String addressMatch
-
-
-
Class org.apache.activemq.artemis.core.config.federation.FederationConnectionConfiguration extends Object implements Serializable
-
Serialized Fields
-
callFailoverTimeout
long callFailoverTimeout
-
callTimeout
long callTimeout
-
circuitBreakerTimeout
long circuitBreakerTimeout
-
clientFailureCheckPeriod
long clientFailureCheckPeriod
-
connectionTTL
long connectionTTL
-
discoveryGroupName
String discoveryGroupName
-
initialConnectAttempts
int initialConnectAttempts
-
isHA
boolean isHA
-
maxRetryInterval
long maxRetryInterval
-
password
String password
-
priorityAdjustment
int priorityAdjustment
-
reconnectAttempts
int reconnectAttempts
-
retryInterval
long retryInterval
-
retryIntervalMultiplier
double retryIntervalMultiplier
-
shareConnection
boolean shareConnection
-
staticConnectors
List<String> staticConnectors
-
username
String username
-
-
-
Class org.apache.activemq.artemis.core.config.federation.FederationDownstreamConfiguration extends FederationStreamConfiguration<FederationDownstreamConfiguration> implements Serializable
-
Serialized Fields
-
upstreamConfiguration
TransportConfiguration upstreamConfiguration
-
upstreamConfigurationRef
String upstreamConfigurationRef
-
-
-
Class org.apache.activemq.artemis.core.config.federation.FederationPolicySet extends Object implements Serializable
-
Class org.apache.activemq.artemis.core.config.federation.FederationQueuePolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
excludes
Set<FederationQueuePolicyConfiguration.Matcher> excludes
-
includeFederated
boolean includeFederated
-
includes
Set<FederationQueuePolicyConfiguration.Matcher> includes
-
name
String name
-
priorityAdjustment
Integer priorityAdjustment
-
transformerRef
String transformerRef
-
-
-
Class org.apache.activemq.artemis.core.config.federation.FederationQueuePolicyConfiguration.Matcher extends Object implements Serializable
-
Class org.apache.activemq.artemis.core.config.federation.FederationStreamConfiguration extends Object implements Serializable
-
Serialized Fields
-
connectionConfiguration
FederationConnectionConfiguration connectionConfiguration
-
name
String name
-
policyRefs
Set<String> policyRefs
-
-
-
Class org.apache.activemq.artemis.core.config.federation.FederationTransformerConfiguration extends Object implements Serializable
-
Serialized Fields
-
name
String name
-
transformerConfiguration
TransformerConfiguration transformerConfiguration
-
-
-
Class org.apache.activemq.artemis.core.config.federation.FederationUpstreamConfiguration extends FederationStreamConfiguration<FederationUpstreamConfiguration> implements Serializable
-
-
Package org.apache.activemq.artemis.core.config.ha
-
Class org.apache.activemq.artemis.core.config.ha.ColocatedPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
backupConfig
HAPolicyConfiguration backupConfig
-
backupPortOffset
int backupPortOffset
-
backupRequestRetries
int backupRequestRetries
-
backupRequestRetryInterval
long backupRequestRetryInterval
-
excludedConnectors
List<String> excludedConnectors
-
liveConfig
HAPolicyConfiguration liveConfig
-
maxBackups
int maxBackups
-
portOffset
int portOffset
-
requestBackup
boolean requestBackup
-
-
-
Class org.apache.activemq.artemis.core.config.ha.DistributedPrimitiveManagerConfiguration extends Object implements Serializable
-
Class org.apache.activemq.artemis.core.config.ha.LiveOnlyPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
scaleDownConfiguration
ScaleDownConfiguration scaleDownConfiguration
-
-
-
Class org.apache.activemq.artemis.core.config.ha.ReplicaPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
allowFailBack
boolean allowFailBack
-
clusterName
String clusterName
-
groupName
String groupName
-
initialReplicationSyncTimeout
long initialReplicationSyncTimeout
-
maxSavedReplicatedJournalsSize
int maxSavedReplicatedJournalsSize
-
quorumSize
int quorumSize
-
quorumVoteWait
int quorumVoteWait
-
restartBackup
boolean restartBackup
-
retryReplicationWait
long retryReplicationWait
-
scaleDownConfiguration
ScaleDownConfiguration scaleDownConfiguration
-
voteOnReplicationFailure
boolean voteOnReplicationFailure
-
voteRetries
int voteRetries
-
voteRetryWait
long voteRetryWait
-
-
-
Class org.apache.activemq.artemis.core.config.ha.ReplicatedPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
checkForLiveServer
boolean checkForLiveServer
-
clusterName
String clusterName
-
groupName
String groupName
-
initialReplicationSyncTimeout
long initialReplicationSyncTimeout
-
quorumSize
int quorumSize
-
quorumVoteWait
int quorumVoteWait
-
retryReplicationWait
Long retryReplicationWait
-
voteOnReplicationFailure
boolean voteOnReplicationFailure
-
voteRetries
int voteRetries
-
voteRetryWait
long voteRetryWait
-
-
-
Class org.apache.activemq.artemis.core.config.ha.ReplicationBackupPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
allowFailBack
boolean allowFailBack
-
clusterName
String clusterName
-
distributedManagerConfiguration
DistributedPrimitiveManagerConfiguration distributedManagerConfiguration
-
groupName
String groupName
-
initialReplicationSyncTimeout
long initialReplicationSyncTimeout
-
maxSavedReplicatedJournalsSize
int maxSavedReplicatedJournalsSize
-
retryReplicationWait
long retryReplicationWait
-
-
-
Class org.apache.activemq.artemis.core.config.ha.ReplicationPrimaryPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
clusterName
String clusterName
-
coordinationId
String coordinationId
-
distributedManagerConfiguration
DistributedPrimitiveManagerConfiguration distributedManagerConfiguration
-
groupName
String groupName
-
initialReplicationSyncTimeout
long initialReplicationSyncTimeout
-
retryReplicationWait
Long retryReplicationWait
-
-
-
Class org.apache.activemq.artemis.core.config.ha.SharedStoreMasterPolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
failoverOnServerShutdown
boolean failoverOnServerShutdown
-
waitForActivation
boolean waitForActivation
-
-
-
Class org.apache.activemq.artemis.core.config.ha.SharedStoreSlavePolicyConfiguration extends Object implements Serializable
-
Serialized Fields
-
allowFailBack
boolean allowFailBack
-
failoverOnServerShutdown
boolean failoverOnServerShutdown
-
restartBackup
boolean restartBackup
-
scaleDownConfiguration
ScaleDownConfiguration scaleDownConfiguration
-
-
-
-
Package org.apache.activemq.artemis.core.config.impl
-
Class org.apache.activemq.artemis.core.config.impl.ConfigurationImpl extends Object implements Serializable
- serialVersionUID:
- 4077088945050267843L
-
Serialized Fields
-
acceptorConfigs
Set<TransportConfiguration> acceptorConfigs
-
addressConfigurations
List<CoreAddressConfiguration> addressConfigurations
-
addressQueueScanPeriod
long addressQueueScanPeriod
-
addressSettings
Map<String,AddressSettings> addressSettings
-
amqpBrokerConnectConfigurations
List<AMQPBrokerConnectConfiguration> amqpBrokerConnectConfigurations
-
amqpUseCoreSubscriptionNaming
boolean amqpUseCoreSubscriptionNaming
-
artemisInstance
File artemisInstance
Parent folder for all data folders. -
asyncConnectionExecutionEnabled
boolean asyncConnectionExecutionEnabled
-
authenticationCacheSize
long authenticationCacheSize
-
authorizationCacheSize
long authorizationCacheSize
-
bindingsDirectory
String bindingsDirectory
-
bridgeConfigurations
List<BridgeConfiguration> bridgeConfigurations
-
brokerAddressPlugins
List<ActiveMQServerAddressPlugin> brokerAddressPlugins
-
brokerBindingPlugins
List<ActiveMQServerBindingPlugin> brokerBindingPlugins
-
brokerBridgePlugins
List<ActiveMQServerBridgePlugin> brokerBridgePlugins
-
brokerConnectionPlugins
List<ActiveMQServerConnectionPlugin> brokerConnectionPlugins
-
brokerConsumerPlugins
List<ActiveMQServerConsumerPlugin> brokerConsumerPlugins
-
brokerCriticalPlugins
List<ActiveMQServerCriticalPlugin> brokerCriticalPlugins
-
brokerFederationPlugins
List<ActiveMQServerFederationPlugin> brokerFederationPlugins
-
brokerMessagePlugins
List<ActiveMQServerMessagePlugin> brokerMessagePlugins
-
brokerPlugins
List<ActiveMQServerBasePlugin> brokerPlugins
-
brokerPropertiesKeySurround
String brokerPropertiesKeySurround
-
brokerQueuePlugins
List<ActiveMQServerQueuePlugin> brokerQueuePlugins
-
brokerResourcePlugins
List<ActiveMQServerResourcePlugin> brokerResourcePlugins
-
brokerSessionPlugins
List<ActiveMQServerSessionPlugin> brokerSessionPlugins
-
clusterConfigurations
List<ClusterConnectionConfiguration> clusterConfigurations
-
clusterPassword
String clusterPassword
-
clusterUser
String clusterUser
-
configurationFileRefreshPeriod
long configurationFileRefreshPeriod
-
configurationUrl
URL configurationUrl
-
connectionRouters
List<ConnectionRouterConfiguration> connectionRouters
-
connectionTtlCheckInterval
long connectionTtlCheckInterval
-
connectionTTLOverride
long connectionTTLOverride
-
connectorConfigs
Map<String,TransportConfiguration> connectorConfigs
-
connectorServiceConfigurations
List<ConnectorServiceConfiguration> connectorServiceConfigurations
-
coreQueueConfigurations
List<CoreQueueConfiguration> coreQueueConfigurations
Deprecated. -
createBindingsDir
boolean createBindingsDir
-
createJournalDir
boolean createJournalDir
-
criticalAnalyzer
boolean criticalAnalyzer
-
criticalAnalyzerCheckPeriod
long criticalAnalyzerCheckPeriod
-
criticalAnalyzerPolicy
CriticalAnalyzerPolicy criticalAnalyzerPolicy
-
criticalAnalyzerTimeout
long criticalAnalyzerTimeout
-
deviceBlockSize
Integer deviceBlockSize
-
diskScanPeriod
int diskScanPeriod
-
divertConfigurations
List<DivertConfiguration> divertConfigurations
-
failoverOnServerShutdown
boolean failoverOnServerShutdown
-
federationConfigurations
List<FederationConfiguration> federationConfigurations
-
fileDeploymentScanPeriod
long fileDeploymentScanPeriod
-
globalMaxMessages
Long globalMaxMessages
-
globalMaxSize
Long globalMaxSize
-
gracefulShutdownEnabled
boolean gracefulShutdownEnabled
-
gracefulShutdownTimeout
long gracefulShutdownTimeout
-
groupingHandlerConfiguration
GroupingHandlerConfiguration groupingHandlerConfiguration
-
haPolicyConfiguration
HAPolicyConfiguration haPolicyConfiguration
-
idCacheSize
int idCacheSize
-
incomingInterceptorClassNames
List<String> incomingInterceptorClassNames
-
internalNamingPrefix
String internalNamingPrefix
-
jmxDomain
String jmxDomain
-
jmxManagementEnabled
boolean jmxManagementEnabled
-
jmxUseBrokerName
boolean jmxUseBrokerName
-
journalBufferSize_AIO
int journalBufferSize_AIO
-
journalBufferSize_NIO
int journalBufferSize_NIO
-
journalBufferTimeout_AIO
int journalBufferTimeout_AIO
-
journalBufferTimeout_NIO
int journalBufferTimeout_NIO
-
journalCompactMinFiles
int journalCompactMinFiles
-
journalCompactPercentage
int journalCompactPercentage
-
journalDatasync
boolean journalDatasync
-
journalDirectory
String journalDirectory
-
journalFileOpenTimeout
int journalFileOpenTimeout
-
journalFileSize
int journalFileSize
-
journalLockAcquisitionTimeout
long journalLockAcquisitionTimeout
-
journalMaxAtticFilesFiles
int journalMaxAtticFilesFiles
-
journalMaxIO_AIO
int journalMaxIO_AIO
-
journalMaxIO_NIO
int journalMaxIO_NIO
-
journalMinFiles
int journalMinFiles
-
journalPoolFiles
int journalPoolFiles
-
journalRetentionDirectory
String journalRetentionDirectory
-
journalRetentionMaxBytes
long journalRetentionMaxBytes
-
journalRetentionPeriod
long journalRetentionPeriod
-
journalSyncNonTransactional
boolean journalSyncNonTransactional
-
journalSyncTransactional
boolean journalSyncTransactional
-
journalType
JournalType journalType
-
largeMessagesDirectory
String largeMessagesDirectory
-
logJournalWriteRate
boolean logJournalWriteRate
-
managementAddress
SimpleString managementAddress
-
managementNotificationAddress
SimpleString managementNotificationAddress
-
maskPassword
Boolean maskPassword
-
maxConcurrentPageIO
int maxConcurrentPageIO
-
maxDiskUsage
int maxDiskUsage
-
memoryMeasureInterval
long memoryMeasureInterval
-
memoryWarningThreshold
int memoryWarningThreshold
-
messageCounterEnabled
boolean messageCounterEnabled
-
messageCounterMaxDayHistory
int messageCounterMaxDayHistory
-
messageCounterSamplePeriod
long messageCounterSamplePeriod
-
messageExpiryScanPeriod
long messageExpiryScanPeriod
-
messageExpiryThreadPriority
int messageExpiryThreadPriority
-
metricsConfiguration
MetricsConfiguration metricsConfiguration
-
mqttSessionScanInterval
long mqttSessionScanInterval
-
name
String name
-
networkCheckList
String networkCheckList
-
networkCheckNIC
String networkCheckNIC
-
networkCheckPeriod
long networkCheckPeriod
-
networkCheckPing6Command
String networkCheckPing6Command
-
networkCheckPingCommand
String networkCheckPingCommand
-
networkCheckTimeout
int networkCheckTimeout
-
networkURLList
String networkURLList
-
nodeManagerLockDirectory
String nodeManagerLockDirectory
-
outgoingInterceptorClassNames
List<String> outgoingInterceptorClassNames
-
pageSyncTimeout
int pageSyncTimeout
-
pagingDirectory
String pagingDirectory
-
persistDeliveryCountBeforeDelivery
boolean persistDeliveryCountBeforeDelivery
-
persistenceEnabled
boolean persistenceEnabled
-
persistIDCache
boolean persistIDCache
-
populateValidatedUser
boolean populateValidatedUser
-
readWholePage
boolean readWholePage
-
rejectEmptyValidatedUser
boolean rejectEmptyValidatedUser
-
resolveProtocols
boolean resolveProtocols
-
resourceLimitSettings
Map<String,ResourceLimitSettings> resourceLimitSettings
-
scheduledThreadPoolMaxSize
int scheduledThreadPoolMaxSize
-
securityEnabled
boolean securityEnabled
-
securityInvalidationInterval
long securityInvalidationInterval
-
securityRoleNameMappings
Map<String,Set<String>> securityRoleNameMappings
-
securitySettingPlugins
List<SecuritySettingPlugin> securitySettingPlugins
-
securitySettings
Map<String,Set<Role>> securitySettings
-
serverDumpInterval
long serverDumpInterval
-
storeConfiguration
StoreConfiguration storeConfiguration
-
suppressSessionNotifications
boolean suppressSessionNotifications
-
systemPropertyPrefix
String systemPropertyPrefix
-
temporaryQueueNamespace
String temporaryQueueNamespace
-
threadPoolMaxSize
int threadPoolMaxSize
-
transactionTimeout
long transactionTimeout
-
transactionTimeoutScanPeriod
long transactionTimeoutScanPeriod
-
wildcardConfiguration
WildcardConfiguration wildcardConfiguration
-
-
Class org.apache.activemq.artemis.core.config.impl.FileConfiguration extends ConfigurationImpl implements Serializable
- serialVersionUID:
- -4766689627675039596L
-
Serialized Fields
-
parsed
boolean parsed
-
-
Class org.apache.activemq.artemis.core.config.impl.RoleSet extends HashSet<Role> implements Serializable
-
Serialized Fields
-
name
String name
-
-
-
-
Package org.apache.activemq.artemis.core.config.routing
-
Class org.apache.activemq.artemis.core.config.routing.CacheConfiguration extends Object implements Serializable
-
Serialized Fields
-
persisted
boolean persisted
-
timeout
int timeout
-
-
-
Class org.apache.activemq.artemis.core.config.routing.ConnectionRouterConfiguration extends Object implements Serializable
-
Serialized Fields
-
cacheConfiguration
CacheConfiguration cacheConfiguration
-
keyFilter
String keyFilter
-
keyType
KeyType keyType
-
localTargetFilter
String localTargetFilter
-
name
String name
-
policyConfiguration
NamedPropertyConfiguration policyConfiguration
-
poolConfiguration
PoolConfiguration poolConfiguration
-
-
-
Class org.apache.activemq.artemis.core.config.routing.NamedPropertyConfiguration extends Object implements Serializable
-
Class org.apache.activemq.artemis.core.config.routing.PoolConfiguration extends Object implements Serializable
-
Serialized Fields
-
checkPeriod
int checkPeriod
-
clusterConnection
String clusterConnection
-
discoveryGroupName
String discoveryGroupName
-
localTargetEnabled
boolean localTargetEnabled
-
password
String password
-
quorumSize
int quorumSize
-
quorumTimeout
int quorumTimeout
-
staticConnectors
List<String> staticConnectors
-
username
String username
-
-
-
-
Package org.apache.activemq.artemis.core.config.storage
-
Class org.apache.activemq.artemis.core.config.storage.DatabaseStorageConfiguration extends Object implements Serializable
-
Serialized Fields
-
bindingsTableName
String bindingsTableName
-
connectionProvider
JDBCConnectionProvider connectionProvider
-
dataSource
DataSource dataSource
-
dataSourceClassName
String dataSourceClassName
-
dataSourceProperties
Map<String,Object> dataSourceProperties
-
jdbcConnectionUrl
String jdbcConnectionUrl
-
jdbcDriverClassName
String jdbcDriverClassName
-
jdbcJournalSyncPeriodMillis
long jdbcJournalSyncPeriodMillis
-
jdbcLockAcquisitionTimeoutMillis
long jdbcLockAcquisitionTimeoutMillis
-
jdbcLockExpirationMillis
long jdbcLockExpirationMillis
-
jdbcLockRenewPeriodMillis
long jdbcLockRenewPeriodMillis
-
jdbcNetworkTimeout
int jdbcNetworkTimeout
-
jdbcPassword
String jdbcPassword
-
jdbcUser
String jdbcUser
-
largeMessagesTableName
String largeMessagesTableName
-
messageTableName
String messageTableName
-
nodeManagerStoreTableName
String nodeManagerStoreTableName
-
pageStoreTableName
String pageStoreTableName
-
sqlProviderFactory
SQLProvider.Factory sqlProviderFactory
-
-
-
Class org.apache.activemq.artemis.core.config.storage.FileStorageConfiguration extends Object implements Serializable
-
-
Package org.apache.activemq.artemis.core.exception
-
Class org.apache.activemq.artemis.core.exception.ActiveMQXAException extends XAException implements Serializable
- serialVersionUID:
- 6535914602965015803L
-
-
Package org.apache.activemq.artemis.core.paging.cursor
-
Class org.apache.activemq.artemis.core.paging.cursor.NonExistentPage extends RuntimeException implements Serializable
-
-
Package org.apache.activemq.artemis.core.postoffice
-
Class org.apache.activemq.artemis.core.postoffice.QueueInfo extends Object implements Serializable
- serialVersionUID:
- 3451892849198803182L
-
Serialized Fields
-
address
SimpleString address
-
clusterName
SimpleString clusterName
-
consumersCount
int consumersCount
-
distance
int distance
-
filterString
SimpleString filterString
-
filterStrings
List<SimpleString> filterStrings
-
id
long id
-
routingName
SimpleString routingName
-
-
-
Package org.apache.activemq.artemis.core.protocol
-
Class org.apache.activemq.artemis.core.protocol.ClientPacketDecoder extends PacketDecoder implements Serializable
- serialVersionUID:
- 6952614096979334582L
-
Serialized Fields
-
coreMessageObjectPools
CoreMessageObjectPools coreMessageObjectPools
-
-
Class org.apache.activemq.artemis.core.protocol.ServerPacketDecoder extends ClientPacketDecoder implements Serializable
- serialVersionUID:
- 3348673114388400766L
-
Serialized Fields
-
storageManager
StorageManager storageManager
-
-
-
Package org.apache.activemq.artemis.core.protocol.core.impl
-
Class org.apache.activemq.artemis.core.protocol.core.impl.PacketDecoder extends Object implements Serializable
-
-
Package org.apache.activemq.artemis.core.security
-
Class org.apache.activemq.artemis.core.security.Role extends Object implements Serializable
- serialVersionUID:
- 3560097227776448872L
-
Serialized Fields
-
browse
boolean browse
-
consume
boolean consume
-
createAddress
boolean createAddress
-
createDurableQueue
boolean createDurableQueue
-
createNonDurableQueue
boolean createNonDurableQueue
-
deleteAddress
boolean deleteAddress
-
deleteDurableQueue
boolean deleteDurableQueue
-
deleteNonDurableQueue
boolean deleteNonDurableQueue
-
manage
boolean manage
-
name
String name
-
send
boolean send
-
-
-
Package org.apache.activemq.artemis.core.server
-
Class org.apache.activemq.artemis.core.server.ActiveMQLockAcquisitionTimeoutException extends ActiveMQException implements Serializable
-
Class org.apache.activemq.artemis.core.server.ActiveMQMessageBundle_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.apache.activemq.artemis.core.server.ActiveMQServerLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.core.server.NodeManager.NodeManagerException extends RuntimeException implements Serializable
-
-
Package org.apache.activemq.artemis.core.server.federation.address
-
Class org.apache.activemq.artemis.core.server.federation.address.FederatedAddress extends FederatedAbstract implements Serializable
-
Serialized Fields
-
config
FederationAddressPolicyConfiguration config
-
excludes
Set<FederatedAddress.Matcher> excludes
-
filterString
SimpleString filterString
-
includes
Set<FederatedAddress.Matcher> includes
-
matchingDiverts
Map<DivertBinding,Set<SimpleString>> matchingDiverts
-
queueNameFormat
SimpleString queueNameFormat
-
-
-
-
Package org.apache.activemq.artemis.core.server.federation.queue
-
Class org.apache.activemq.artemis.core.server.federation.queue.FederatedQueue extends FederatedAbstract implements Serializable
-
Serialized Fields
-
config
FederationQueuePolicyConfiguration config
-
excludes
Set<FederatedQueue.Matcher> excludes
-
includes
Set<FederatedQueue.Matcher> includes
-
metaDataFilter
Filter metaDataFilter
-
priorityAdjustment
int priorityAdjustment
-
-
-
-
Package org.apache.activemq.artemis.core.server.group.impl
-
Class org.apache.activemq.artemis.core.server.group.impl.GroupingHandlerConfiguration extends Object implements Serializable
- serialVersionUID:
- -4600283023652477326L
-
Serialized Fields
-
address
SimpleString address
-
groupTimeout
long groupTimeout
-
name
SimpleString name
-
reaperPeriod
long reaperPeriod
-
timeout
long timeout
-
type
GroupingHandlerConfiguration.TYPE type
-
-
-
Package org.apache.activemq.artemis.core.server.impl
-
Class org.apache.activemq.artemis.core.server.impl.LegacyLDAPSecuritySettingPlugin extends Object implements Serializable
- serialVersionUID:
- 4793109879399750045L
-
Serialized Fields
-
adminPermissionValue
String adminPermissionValue
-
allowQueueAdminOnRead
boolean allowQueueAdminOnRead
-
authentication
String authentication
-
connectionPassword
String connectionPassword
-
connectionProtocol
String connectionProtocol
-
connectionURL
String connectionURL
-
connectionUsername
String connectionUsername
-
context
DirContext context
-
destinationBase
String destinationBase
-
enableListener
boolean enableListener
-
eventContext
EventDirContext eventContext
-
filter
String filter
-
initialContextFactory
String initialContextFactory
-
mapAdminToManage
boolean mapAdminToManage
-
readPermissionValue
String readPermissionValue
-
roleAttribute
String roleAttribute
-
securityRepository
HierarchicalRepository<Set<Role>> securityRepository
-
securityRoles
Map<String,Set<Role>> securityRoles
-
writePermissionValue
String writePermissionValue
-
-
-
Package org.apache.activemq.artemis.core.server.metrics
-
Package org.apache.activemq.artemis.core.server.metrics.plugins
-
Class org.apache.activemq.artemis.core.server.metrics.plugins.LoggingMetricsPlugin extends Object implements Serializable
-
Class org.apache.activemq.artemis.core.server.metrics.plugins.SimpleMetricsPlugin extends Object implements Serializable
-
-
Package org.apache.activemq.artemis.core.server.plugin.impl
-
Class org.apache.activemq.artemis.core.server.plugin.impl.LoggingActiveMQServerPlugin extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
logAll
boolean logAll
-
logConnectionEvents
boolean logConnectionEvents
-
logConsumerEvents
boolean logConsumerEvents
-
logDeliveringEvents
boolean logDeliveringEvents
-
logInternalEvents
boolean logInternalEvents
-
logSendingEvents
boolean logSendingEvents
-
logSessionEvents
boolean logSessionEvents
-
-
Class org.apache.activemq.artemis.core.server.plugin.impl.LoggingActiveMQServerPluginLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.core.settings.impl
-
Class org.apache.activemq.artemis.core.settings.impl.AddressSettings extends Object implements Serializable
- serialVersionUID:
- 1607502280582336366L
-
Serialized Fields
-
addressFullMessagePolicy
AddressFullMessagePolicy addressFullMessagePolicy
-
autoCreateAddresses
Boolean autoCreateAddresses
-
autoCreateDeadLetterResources
Boolean autoCreateDeadLetterResources
-
autoCreateExpiryResources
Boolean autoCreateExpiryResources
-
autoCreateJmsQueues
Boolean autoCreateJmsQueues
Deprecated. -
autoCreateJmsTopics
Boolean autoCreateJmsTopics
Deprecated. -
autoCreateQueues
Boolean autoCreateQueues
-
autoDeleteAddresses
Boolean autoDeleteAddresses
-
autoDeleteAddressesDelay
Long autoDeleteAddressesDelay
-
autoDeleteAddressesSkipUsageCheck
Boolean autoDeleteAddressesSkipUsageCheck
-
autoDeleteCreatedQueues
Boolean autoDeleteCreatedQueues
-
autoDeleteJmsQueues
Boolean autoDeleteJmsQueues
Deprecated. -
autoDeleteJmsTopics
Boolean autoDeleteJmsTopics
Deprecated. -
autoDeleteQueues
Boolean autoDeleteQueues
-
autoDeleteQueuesDelay
Long autoDeleteQueuesDelay
-
autoDeleteQueuesMessageCount
Long autoDeleteQueuesMessageCount
-
autoDeleteQueuesSkipUsageCheck
Boolean autoDeleteQueuesSkipUsageCheck
-
configDeleteAddresses
DeletionPolicy configDeleteAddresses
-
configDeleteDiverts
DeletionPolicy configDeleteDiverts
-
configDeleteQueues
DeletionPolicy configDeleteQueues
-
deadLetterAddress
SimpleString deadLetterAddress
-
deadLetterQueuePrefix
SimpleString deadLetterQueuePrefix
-
deadLetterQueueSuffix
SimpleString deadLetterQueueSuffix
-
defaultAddressRoutingType
RoutingType defaultAddressRoutingType
-
defaultConsumersBeforeDispatch
Integer defaultConsumersBeforeDispatch
-
defaultConsumerWindowSize
Integer defaultConsumerWindowSize
-
defaultDelayBeforeDispatch
Long defaultDelayBeforeDispatch
-
defaultExclusiveQueue
Boolean defaultExclusiveQueue
-
defaultGroupBuckets
Integer defaultGroupBuckets
-
defaultGroupFirstKey
SimpleString defaultGroupFirstKey
-
defaultGroupRebalance
Boolean defaultGroupRebalance
-
defaultGroupRebalancePauseDispatch
Boolean defaultGroupRebalancePauseDispatch
-
defaultLastValueKey
SimpleString defaultLastValueKey
-
defaultLastValueQueue
Boolean defaultLastValueQueue
-
defaultMaxConsumers
Integer defaultMaxConsumers
-
defaultNonDestructive
Boolean defaultNonDestructive
-
defaultPurgeOnNoConsumers
Boolean defaultPurgeOnNoConsumers
-
defaultQueueRoutingType
RoutingType defaultQueueRoutingType
-
defaultRingSize
Long defaultRingSize
-
dropMessagesWhenFull
Boolean dropMessagesWhenFull
-
enableIngressTimestamp
Boolean enableIngressTimestamp
-
enableMetrics
Boolean enableMetrics
-
expiryAddress
SimpleString expiryAddress
-
expiryDelay
Long expiryDelay
-
expiryQueuePrefix
SimpleString expiryQueuePrefix
-
expiryQueueSuffix
SimpleString expiryQueueSuffix
-
managementBrowsePageSize
Integer managementBrowsePageSize
-
managementMessageAttributeSizeLimit
Integer managementMessageAttributeSizeLimit
-
maxDeliveryAttempts
Integer maxDeliveryAttempts
-
maxExpiryDelay
Long maxExpiryDelay
-
maxRedeliveryDelay
Long maxRedeliveryDelay
-
maxSizeBytes
Long maxSizeBytes
-
maxSizeBytesRejectThreshold
Long maxSizeBytesRejectThreshold
-
maxSizeMessages
Long maxSizeMessages
-
messageCounterHistoryDayLimit
Integer messageCounterHistoryDayLimit
-
minExpiryDelay
Long minExpiryDelay
-
pageMaxCache
Integer pageMaxCache
-
pageSizeBytes
Integer pageSizeBytes
-
redeliveryCollisionAvoidanceFactor
Double redeliveryCollisionAvoidanceFactor
-
redeliveryDelay
Long redeliveryDelay
-
redeliveryMultiplier
Double redeliveryMultiplier
-
redistributionDelay
Long redistributionDelay
-
retroactiveMessageCount
Long retroactiveMessageCount
-
sendToDLAOnNoRoute
Boolean sendToDLAOnNoRoute
-
slowConsumerCheckPeriod
Long slowConsumerCheckPeriod
-
slowConsumerPolicy
SlowConsumerPolicy slowConsumerPolicy
-
slowConsumerThreshold
Long slowConsumerThreshold
-
slowConsumerThresholdMeasurementUnit
SlowConsumerThresholdMeasurementUnit slowConsumerThresholdMeasurementUnit
-
-
Class org.apache.activemq.artemis.core.settings.impl.ResourceLimitSettings extends Object implements Serializable
- serialVersionUID:
- -110638321333856932L
-
Serialized Fields
-
match
SimpleString match
-
maxConnections
Integer maxConnections
-
maxQueues
Integer maxQueues
-
-
-
Package org.apache.activemq.artemis.core.transaction.impl
-
Class org.apache.activemq.artemis.core.transaction.impl.XidImpl extends Object implements Serializable
- serialVersionUID:
- 407053232840068514L
-
Serialized Fields
-
branchQualifier
byte[] branchQualifier
-
formatId
int formatId
-
globalTransactionId
byte[] globalTransactionId
-
hash
int hash
-
hashCalculated
boolean hashCalculated
-
-
-
Package org.apache.activemq.artemis.core.version.impl
-
Class org.apache.activemq.artemis.core.version.impl.VersionImpl extends Object implements Serializable
- serialVersionUID:
- -5271227256591080403L
-
Serialized Fields
-
compatibleVersionList
int[] compatibleVersionList
-
incrementingVersion
int incrementingVersion
-
majorVersion
int majorVersion
-
microVersion
int microVersion
-
minorVersion
int minorVersion
-
versionName
String versionName
-
-
-
Package org.apache.activemq.artemis.integration.bootstrap
-
Class org.apache.activemq.artemis.integration.bootstrap.ActiveMQBootstrapBundle_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.apache.activemq.artemis.integration.bootstrap.ActiveMQBootstrapLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.jms.bridge
-
Class org.apache.activemq.artemis.jms.bridge.ActiveMQJMSBridgeLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.jms.client
-
Class org.apache.activemq.artemis.jms.client.ActiveMQConnectionFactory extends JNDIStorable implements Serializable
- serialVersionUID:
- 6730844785641767519L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQDestination extends JNDIStorable implements Serializable
- serialVersionUID:
- 5027962425462382883L
-
Serialized Fields
-
address
String address
Deprecated.Needed for serialization backwards compatibility. -
name
String name
-
queue
boolean queue
-
queueConfiguration
QueueConfiguration queueConfiguration
-
simpleAddress
SimpleString simpleAddress
The core address -
temporary
boolean temporary
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQJMSClientBundle_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQJMSClientLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.jms.client.ActiveMQJMSConnectionFactory extends ActiveMQConnectionFactory implements Serializable
- serialVersionUID:
- -2810634789345348326L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQQueue extends ActiveMQDestination implements Serializable
- serialVersionUID:
- -1106092883162295462L
-
Class org.apache.activemq.artemis.jms.client.ActiveMQQueueConnectionFactory extends ActiveMQConnectionFactory implements Serializable
- serialVersionUID:
- 5312455021322463546L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQTemporaryQueue extends ActiveMQQueue implements Serializable
- serialVersionUID:
- -4624930377557954624L
-
Class org.apache.activemq.artemis.jms.client.ActiveMQTemporaryTopic extends ActiveMQTopic implements Serializable
- serialVersionUID:
- 845450764835635266L
-
Class org.apache.activemq.artemis.jms.client.ActiveMQTopic extends ActiveMQDestination implements Serializable
- serialVersionUID:
- 7873614001276404156L
-
Class org.apache.activemq.artemis.jms.client.ActiveMQTopicConnectionFactory extends ActiveMQConnectionFactory implements Serializable
- serialVersionUID:
- 7317051989866548455L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQXAConnectionFactory extends ActiveMQConnectionFactory implements Serializable
- serialVersionUID:
- 743611571839154115L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQXAQueueConnectionFactory extends ActiveMQConnectionFactory implements Serializable
- serialVersionUID:
- 8612457847251087454L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
Class org.apache.activemq.artemis.jms.client.ActiveMQXATopicConnectionFactory extends ActiveMQConnectionFactory implements Serializable
- serialVersionUID:
- -7018290426884419693L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
Package org.apache.activemq.artemis.jms.server
-
Class org.apache.activemq.artemis.jms.server.ActiveMQJMSServerBundle_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.apache.activemq.artemis.jms.server.ActiveMQJMSServerLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.jndi
-
Class org.apache.activemq.artemis.jndi.LazyCreateContext extends ReadOnlyContext implements Serializable
-
Class org.apache.activemq.artemis.jndi.ReadOnlyContext extends Object implements Serializable
- serialVersionUID:
- -5754338187296859149L
-
-
Package org.apache.activemq.artemis.journal
-
Class org.apache.activemq.artemis.journal.ActiveMQJournalBundle_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.apache.activemq.artemis.journal.ActiveMQJournalLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.logs
-
Class org.apache.activemq.artemis.logs.ActiveMQUtilBundle_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.apache.activemq.artemis.logs.ActiveMQUtilLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.logs.AuditLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.nativo.jlibaio
-
Class org.apache.activemq.artemis.nativo.jlibaio.NativeLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.selector.filter
-
Class org.apache.activemq.artemis.selector.filter.FilterException extends Exception implements Serializable
- serialVersionUID:
- -6892363158919485507L
-
-
Package org.apache.activemq.artemis.selector.hyphenated
-
Class org.apache.activemq.artemis.selector.hyphenated.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. -
eol
String eol
The end of line string for this machine. -
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.
-
-
Class org.apache.activemq.artemis.selector.hyphenated.Token extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
beginColumn
int beginColumn
The column number of the first character of this Token. -
beginLine
int beginLine
The line number of the first character of this Token. -
endColumn
int endColumn
The column number of the last character of this Token. -
endLine
int endLine
The line number of the last character of this Token. -
image
String image
The string image of the token. -
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. -
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.apache.activemq.artemis.selector.hyphenated.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.apache.activemq.artemis.selector.impl
-
Class org.apache.activemq.artemis.selector.impl.LRUCache extends LinkedHashMap<K,V> implements Serializable
- serialVersionUID:
- -342098639681884413L
-
Serialized Fields
-
maxCacheSize
int maxCacheSize
-
-
-
Package org.apache.activemq.artemis.selector.strict
-
Class org.apache.activemq.artemis.selector.strict.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. -
eol
String eol
The end of line string for this machine. -
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.
-
-
Class org.apache.activemq.artemis.selector.strict.Token extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
beginColumn
int beginColumn
The column number of the first character of this Token. -
beginLine
int beginLine
The line number of the first character of this Token. -
endColumn
int endColumn
The column number of the last character of this Token. -
endLine
int endLine
The line number of the last character of this Token. -
image
String image
The string image of the token. -
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. -
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.apache.activemq.artemis.selector.strict.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.apache.activemq.artemis.service.extensions
-
Class org.apache.activemq.artemis.service.extensions.ActiveMQServiceExtensionLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.service.extensions.xa.recovery
-
Class org.apache.activemq.artemis.service.extensions.xa.recovery.ActiveMQXARecoveryLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.spi.core.security.jaas
-
Class org.apache.activemq.artemis.spi.core.security.jaas.NoCacheLoginException extends RuntimeException implements Serializable
-
-
Package org.apache.activemq.artemis.spi.core.security.scram
-
Class org.apache.activemq.artemis.spi.core.security.scram.ScramException extends Exception implements Serializable
-
Class org.apache.activemq.artemis.spi.core.security.scram.StringPrep.StringPrepError extends Exception implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.spi.core.security.scram.StringPrep.StringPrepProhibitedCharacter extends StringPrep.StringPrepError implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.spi.core.security.scram.StringPrep.StringPrepRTLError extends StringPrep.StringPrepError implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.spi.core.security.scram.StringPrep.StringPrepRTLErrorBothRALandL extends StringPrep.StringPrepRTLError implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.spi.core.security.scram.StringPrep.StringPrepRTLErrorRALWithoutPrefix extends StringPrep.StringPrepRTLError implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.spi.core.security.scram.StringPrep.StringPrepRTLErrorRALWithoutSuffix extends StringPrep.StringPrepRTLError implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.activemq.artemis.spi.core.security.scram.StringPrep.StringPrepUnassignedCodepoint extends StringPrep.StringPrepProhibitedCharacter implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.activemq.artemis.utils
-
Class org.apache.activemq.artemis.utils.AbstractLatch.CountSync extends AbstractQueuedSynchronizer implements Serializable
-
-
Package org.apache.activemq.artemis.utils.collections
-
Class org.apache.activemq.artemis.utils.collections.LongHashSet extends AbstractSet<Long> implements Serializable
-
Serialized Fields
-
containsMissingValue
boolean containsMissingValue
-
loadFactor
float loadFactor
-
resizeThreshold
int resizeThreshold
-
sizeOfArrayValues
int sizeOfArrayValues
-
values
long[] values
-
-
-
Class org.apache.activemq.artemis.utils.collections.LongHashSet.LongIterator extends Object implements Serializable
-
Serialized Fields
-
isPositionValid
boolean isPositionValid
-
positionCounter
int positionCounter
-
remaining
int remaining
-
stopCounter
int stopCounter
-
-
-
Class org.apache.activemq.artemis.utils.collections.MaxSizeMap extends LinkedHashMap<K,V> implements Serializable
-
Serialized Fields
-
maxSize
int maxSize
-
-
-
-
Package org.apache.commons.logging
-
Class org.apache.commons.logging.LogConfigurationException extends RuntimeException implements Serializable
- serialVersionUID:
- 8486587136871052495L
-
Serialized Fields
-
cause
Throwable cause
The underlying cause of this exception.
-
-
-
Package org.apache.commons.logging.impl
-
Class org.apache.commons.logging.impl.Jdk13LumberjackLogger extends Object implements Serializable
- serialVersionUID:
- -8649807923527610591L
-
Class org.apache.commons.logging.impl.Jdk14Logger extends Object implements Serializable
- serialVersionUID:
- 4784713551416303804L
-
Serialized Fields
-
name
String name
-
-
Class org.apache.commons.logging.impl.Log4JLogger extends Object implements Serializable
- serialVersionUID:
- 5160705895411730424L
-
Serialized Fields
-
name
String name
-
-
Class org.apache.commons.logging.impl.LogKitLogger extends Object implements Serializable
- serialVersionUID:
- 3768538055836059519L
-
Serialized Fields
-
name
String name
-
-
Class org.apache.commons.logging.impl.NoOpLog extends Object implements Serializable
- serialVersionUID:
- 561423906191706148L
-
Class org.apache.commons.logging.impl.SimpleLog extends Object implements Serializable
- serialVersionUID:
- 136942970684951178L
-
Class org.apache.commons.logging.impl.SLF4JLocationAwareLog extends Object implements Serializable
- serialVersionUID:
- -2379157579039314822L
-
Serialization Methods
-
readResolve
protected Object readResolve() throws ObjectStreamException
- Throws:
ObjectStreamException
-
-
Serialized Fields
-
name
String name
-
-
Class org.apache.commons.logging.impl.SLF4JLog extends Object implements Serializable
- serialVersionUID:
- 680728617011167209L
-
Serialization Methods
-
readResolve
protected Object readResolve() throws ObjectStreamException
- Throws:
ObjectStreamException
-
-
Serialized Fields
-
name
String name
-
-
Class org.apache.commons.logging.impl.WeakHashtable extends Hashtable implements Serializable
- serialVersionUID:
- -1546036869799732453L
-
Serialized Fields
-
changeCount
int changeCount
-
queue
ReferenceQueue queue
-
-
-
Package org.apache.cxf
-
Class org.apache.cxf.BusException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.cxf.attachment
-
Class org.apache.cxf.attachment.HeaderSizeExceededException extends RuntimeException implements Serializable
- serialVersionUID:
- -8976580055837650080L
-
-
Package org.apache.cxf.bus.extension
-
Class org.apache.cxf.bus.extension.ExtensionException extends UncheckedException implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.cxf.common.i18n
-
Class org.apache.cxf.common.i18n.Exception extends Exception implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
message
Message message
-
-
Class org.apache.cxf.common.i18n.Message extends Object implements Serializable
- serialVersionUID:
- 42L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Class org.apache.cxf.common.i18n.UncheckedException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
message
Message message
-
-
-
Package org.apache.cxf.common.security
-
Class org.apache.cxf.common.security.SimpleGroup extends SimplePrincipal implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.cxf.common.security.SimplePrincipal extends Object implements Serializable
- serialVersionUID:
- -5171549568204891853L
-
Serialized Fields
-
name
String name
-
-
-
Package org.apache.cxf.common.util
-
Class org.apache.cxf.common.util.Base64Exception extends Exception implements Serializable
- serialVersionUID:
- -4692237798562339250L
-
Class org.apache.cxf.common.util.ModCountCopyOnWriteArrayList extends CopyOnWriteArrayList<T> implements Serializable
- serialVersionUID:
- 1783937035760941219L
-
Serialized Fields
-
modCount
AtomicInteger modCount
-
-
-
Package org.apache.cxf.common.xmlschema
-
Class org.apache.cxf.common.xmlschema.InvalidXmlSchemaReferenceException extends RuntimeException implements Serializable
- serialVersionUID:
- -2053958361555768873L
-
Class org.apache.cxf.common.xmlschema.XmlSchemaInvalidOperation extends RuntimeException implements Serializable
- serialVersionUID:
- 7007258111909011558L
-
-
Package org.apache.cxf.configuration
-
Class org.apache.cxf.configuration.ConfigurationException extends UncheckedException implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.cxf.continuations
-
Class org.apache.cxf.continuations.SuspendedInvocationException extends RuntimeException implements Serializable
- serialVersionUID:
- 6889545463301144757L
-
-
Package org.apache.cxf.endpoint
-
Class org.apache.cxf.endpoint.ClientImpl.EchoContext extends ConcurrentHashMap<String,Object> implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.cxf.endpoint.ClientImpl.IllegalEmptyResponseException extends IllegalStateException implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.cxf.endpoint.EndpointException extends Exception implements Serializable
- serialVersionUID:
- 2718396758999944442L
-
Class org.apache.cxf.endpoint.EndpointImpl extends AbstractAttributedInterceptorProvider implements Serializable
- serialVersionUID:
- -7660560719050162091L
-
Serialized Fields
-
activeFeatures
List<Feature> activeFeatures
-
binding
Binding binding
-
bus
Bus bus
-
cleanupHooks
List<Closeable> cleanupHooks
-
endpointInfo
EndpointInfo endpointInfo
-
executor
Executor executor
-
inFaultObserver
MessageObserver inFaultObserver
-
outFaultObserver
MessageObserver outFaultObserver
-
service
Service service
-
-
Class org.apache.cxf.endpoint.ListenerRegistrationException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.cxf.interceptor
-
Class org.apache.cxf.interceptor.AbstractAttributedInterceptorProvider extends ConcurrentHashMap<String,Object> implements Serializable
- serialVersionUID:
- -1915876045710441978L
-
Serialized Fields
-
in
List<Interceptor<? extends Message>> in
-
inFault
List<Interceptor<? extends Message>> inFault
-
out
List<Interceptor<? extends Message>> out
-
outFault
List<Interceptor<? extends Message>> outFault
-
-
Class org.apache.cxf.interceptor.Fault extends UncheckedException implements Serializable
- serialVersionUID:
- -1583932965031558864L
-
-
Package org.apache.cxf.interceptor.security
-
Class org.apache.cxf.interceptor.security.AccessDeniedException extends SecurityException implements Serializable
- serialVersionUID:
- 9169091575394965388L
-
Class org.apache.cxf.interceptor.security.AuthenticationException extends SecurityException implements Serializable
- serialVersionUID:
- -823479120896894071L
-
-
Package org.apache.cxf.io
-
Class org.apache.cxf.io.CacheSizeExceededException extends RuntimeException implements Serializable
- serialVersionUID:
- -8976580055837650080L
-
-
Package org.apache.cxf.message
-
Class org.apache.cxf.message.ExchangeImpl extends ConcurrentHashMap<String,Object> implements Serializable
- serialVersionUID:
- -3112077559217623594L
-
Serialized Fields
-
binding
Binding binding
-
bindingOp
BindingOperationInfo bindingOp
-
bus
Bus bus
-
destination
Destination destination
-
endpoint
Endpoint endpoint
-
inFaultMessage
Message inFaultMessage
-
inMessage
Message inMessage
-
oneWay
boolean oneWay
-
outFaultMessage
Message outFaultMessage
-
outMessage
Message outMessage
-
service
Service service
-
session
Session session
-
synchronous
boolean synchronous
-
-
Class org.apache.cxf.message.MessageContentsList extends ArrayList<Object> implements Serializable
- serialVersionUID:
- -5780720048950696258L
-
Class org.apache.cxf.message.MessageImpl extends StringMapImpl implements Serializable
- serialVersionUID:
- -3020763696429459865L
-
Class org.apache.cxf.message.StringMapImpl extends HashMap<String,Object> implements Serializable
- serialVersionUID:
- -4590903451121887L
-
-
Package org.apache.cxf.service
-
Class org.apache.cxf.service.ServiceImpl extends AbstractAttributedInterceptorProvider implements Serializable
- serialVersionUID:
- -3920605127948701230L
-
Serialized Fields
-
dataBinding
DataBinding dataBinding
-
endpoints
Map<QName,Endpoint> endpoints
-
executor
Executor executor
-
invoker
Invoker invoker
-
serviceInfos
List<ServiceInfo> serviceInfos
-
-
-
Package org.apache.cxf.service.factory
-
Class org.apache.cxf.service.factory.ServiceConstructionException extends UncheckedException implements Serializable
- serialVersionUID:
- -4242545895784708313L
-
-
Package org.apache.cxf.staxutils
-
Class org.apache.cxf.staxutils.DepthExceededStaxException extends RuntimeException implements Serializable
- serialVersionUID:
- 4750070687283463619L
-
Class org.apache.cxf.staxutils.FastStack extends ArrayList<T> implements Serializable
- serialVersionUID:
- -6459503295618120689L
-
-
Package org.apache.cxf.sts.cache
-
Class org.apache.cxf.sts.cache.EHCacheIdentityValue extends Object implements Serializable
-
-
Package org.apache.cxf.sts.claims
-
Class org.apache.cxf.sts.claims.ProcessedClaim extends org.apache.cxf.rt.security.claims.Claim implements Serializable
- serialVersionUID:
- -336574019841442184L
-
Class org.apache.cxf.sts.claims.ProcessedClaimCollection extends ArrayList<ProcessedClaim> implements Serializable
- serialVersionUID:
- -4630183900697336428L
-
-
Package org.apache.cxf.validation
-
Class org.apache.cxf.validation.ResponseConstraintViolationException extends ConstraintViolationException implements Serializable
-
-
Package org.apache.cxf.ws.addressing
-
Class org.apache.cxf.ws.addressing.EndpointUtilsException extends Exception implements Serializable
- serialVersionUID:
- -7816054333019642525L
-
-
Package org.apache.cxf.ws.security.policy.interceptors
-
Class org.apache.cxf.ws.security.policy.interceptors.HttpsTokenInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- -13951002554477036L
-
Class org.apache.cxf.ws.security.policy.interceptors.IssuedTokenInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- -6936475570762840527L
-
Class org.apache.cxf.ws.security.policy.interceptors.KerberosTokenInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- 5922028830873137490L
-
Class org.apache.cxf.ws.security.policy.interceptors.SamlTokenInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- -2270910622513357794L
-
Class org.apache.cxf.ws.security.policy.interceptors.SecureConversationTokenInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- 8739057200687855383L
-
Class org.apache.cxf.ws.security.policy.interceptors.SpnegoTokenInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- -3412111025613191505L
-
Class org.apache.cxf.ws.security.policy.interceptors.UsernameTokenInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- -1507727324874727254L
-
Class org.apache.cxf.ws.security.policy.interceptors.WSSecurityInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- -6222118542914666817L
-
Class org.apache.cxf.ws.security.policy.interceptors.WSSecurityPolicyInterceptorProvider extends org.apache.cxf.ws.policy.AbstractPolicyInterceptorProvider implements Serializable
- serialVersionUID:
- 2092269997296804632L
-
-
Package org.apache.cxf.ws.security.sts.provider
-
Class org.apache.cxf.ws.security.sts.provider.STSException extends RuntimeException implements Serializable
- serialVersionUID:
- 2186924985128534490L
-
Serialized Fields
-
faultCode
QName faultCode
-
-
-
Package org.apache.cxf.ws.security.tokenstore
-
Class org.apache.cxf.ws.security.tokenstore.SecurityToken extends Object implements Serializable
- serialVersionUID:
- -8220267049304000696L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException, XMLStreamException
-
writeObject
private void writeObject(ObjectOutputStream stream) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
created
Instant created
Created time -
encrKeySha1Value
String encrKeySha1Value
If an encrypted key, this contains the sha1 for the key -
expires
Instant expires
Expiration time -
id
String id
Token identifier -
issuerAddress
String issuerAddress
Issuer end point address -
principal
Principal principal
The principal of this SecurityToken -
properties
Map<String,Object> properties
A bag to hold any other properties -
tokenHash
int tokenHash
A hash code associated with this token. -
tokenStr
String tokenStr
The String representation of the token (The token can't be serialized as it's a DOM Element) -
tokenType
String tokenType
The tokenType -
transformedTokenIdentifier
String transformedTokenIdentifier
This holds the identifier of another SecurityToken which represents a transformed version of this token. -
wsuId
String wsuId
WSU Identifier of the token -
x509cert
X509Certificate x509cert
-
-
Class org.apache.cxf.ws.security.tokenstore.TokenStoreException extends Exception implements Serializable
-
-
Package org.apache.cxf.ws.security.trust
-
Class org.apache.cxf.ws.security.trust.TrustException extends UncheckedException implements Serializable
- serialVersionUID:
- -2957463932630164766L
-
-
Package org.apache.logging.log4j
-
Class org.apache.logging.log4j.Level extends Object implements Serializable
- serialVersionUID:
- 1581082L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Serialized Fields
-
intLevel
int intLevel
-
name
String name
-
standardLevel
StandardLevel standardLevel
-
-
Class org.apache.logging.log4j.LoggingException extends RuntimeException implements Serializable
- serialVersionUID:
- 6366395965071580537L
-
Class org.apache.logging.log4j.MarkerManager.Log4jMarker extends Object implements Serializable
- serialVersionUID:
- 100L
-
-
Package org.apache.logging.log4j.message
-
Class org.apache.logging.log4j.message.AbstractMessageFactory extends Object implements Serializable
- serialVersionUID:
- -1307891137684031187L
-
Class org.apache.logging.log4j.message.DefaultFlowMessageFactory extends Object implements Serializable
- serialVersionUID:
- 8578655591131397576L
-
Class org.apache.logging.log4j.message.FormattedMessage extends Object implements Serializable
- serialVersionUID:
- -665975803997290697L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
Class org.apache.logging.log4j.message.FormattedMessageFactory extends AbstractMessageFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.logging.log4j.message.LocalizedMessage extends Object implements Serializable
- serialVersionUID:
- 3893703791567290742L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
Class org.apache.logging.log4j.message.LocalizedMessageFactory extends AbstractMessageFactory implements Serializable
- serialVersionUID:
- -1996295808703146741L
-
Serialized Fields
-
baseName
String baseName
-
-
Class org.apache.logging.log4j.message.MapMessage extends Object implements Serializable
- serialVersionUID:
- -5031471831131487120L
-
Serialized Fields
-
data
IndexedStringMap data
-
-
Class org.apache.logging.log4j.message.MessageFormatMessage extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException
- Throws:
IOException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
Class org.apache.logging.log4j.message.MessageFormatMessageFactory extends AbstractMessageFactory implements Serializable
- serialVersionUID:
- 3584821740584192453L
-
Class org.apache.logging.log4j.message.ObjectArrayMessage extends Object implements Serializable
- serialVersionUID:
- -5903272448334166185L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Class org.apache.logging.log4j.message.ObjectMessage extends Object implements Serializable
- serialVersionUID:
- -5903272448334166185L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Class org.apache.logging.log4j.message.ParameterizedMessage extends Object implements Serializable
- serialVersionUID:
- -665975803997290697L
-
Class org.apache.logging.log4j.message.ParameterizedMessageFactory extends AbstractMessageFactory implements Serializable
- serialVersionUID:
- -8970940216592525651L
-
Class org.apache.logging.log4j.message.ParameterizedNoReferenceMessageFactory extends AbstractMessageFactory implements Serializable
- serialVersionUID:
- 5027639245636870500L
-
Class org.apache.logging.log4j.message.ReusableMessageFactory extends Object implements Serializable
- serialVersionUID:
- -8970940216592525651L
-
Class org.apache.logging.log4j.message.ReusableObjectMessage extends Object implements Serializable
- serialVersionUID:
- 6922476812535519960L
-
Class org.apache.logging.log4j.message.ReusableParameterizedMessage extends Object implements Serializable
- serialVersionUID:
- 7800075879295123856L
-
Serialized Fields
-
argCount
int argCount
-
indices
int[] indices
-
messagePattern
String messagePattern
-
usedCount
int usedCount
-
-
Class org.apache.logging.log4j.message.ReusableSimpleMessage extends Object implements Serializable
- serialVersionUID:
- -9199974506498249809L
-
Serialized Fields
-
charSequence
CharSequence charSequence
-
-
Class org.apache.logging.log4j.message.SimpleMessage extends Object implements Serializable
- serialVersionUID:
- -8398002534962715992L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
message
String message
-
-
Class org.apache.logging.log4j.message.SimpleMessageFactory extends AbstractMessageFactory implements Serializable
- serialVersionUID:
- 4418995198790088516L
-
Class org.apache.logging.log4j.message.StringFormattedMessage extends Object implements Serializable
- serialVersionUID:
- -665975803997290697L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream out) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
Class org.apache.logging.log4j.message.StringFormatterMessageFactory extends AbstractMessageFactory implements Serializable
- serialVersionUID:
- -1626332412176965642L
-
Class org.apache.logging.log4j.message.StringMapMessage extends MapMessage<StringMapMessage,String> implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.logging.log4j.message.StructuredDataCollectionMessage extends Object implements Serializable
- serialVersionUID:
- 5725337076388822924L
-
Serialized Fields
-
structuredDataMessageList
List<StructuredDataMessage> structuredDataMessageList
-
-
Class org.apache.logging.log4j.message.StructuredDataId extends Object implements Serializable
- serialVersionUID:
- -8252896346202183738L
-
Class org.apache.logging.log4j.message.StructuredDataMessage extends MapMessage<StructuredDataMessage,String> implements Serializable
- serialVersionUID:
- 1703221292892071920L
-
Serialized Fields
-
id
StructuredDataId id
-
maxLength
int maxLength
-
message
String message
-
type
String type
-
-
Class org.apache.logging.log4j.message.ThreadDumpMessage extends Object implements Serializable
- serialVersionUID:
- -1103400781608841088L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream stream) throws InvalidObjectException
- Throws:
InvalidObjectException
-
writeReplace
protected Object writeReplace()
Creates a ThreadDumpMessageProxy that can be serialized.
-
-
Serialized Fields
-
formattedMessage
String formattedMessage
-
threads
Map<ThreadInformation,StackTraceElement[]> threads
-
title
String title
-
-
-
Package org.apache.logging.log4j.simple
-
Class org.apache.logging.log4j.simple.SimpleLogger extends AbstractLogger implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
dateFormatter
DateFormat dateFormatter
Used to format times.Note that DateFormat is not Thread-safe.
-
level
Level level
-
logName
String logName
-
showContextMap
boolean showContextMap
-
showDateTime
boolean showDateTime
-
stream
PrintStream stream
-
-
-
Package org.apache.logging.log4j.spi
-
Class org.apache.logging.log4j.spi.AbstractLogger extends Object implements Serializable
- serialVersionUID:
- 2L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws ClassNotFoundException, IOException
- Throws:
ClassNotFoundException
IOException
-
-
Serialized Fields
-
flowMessageFactory
FlowMessageFactory flowMessageFactory
-
messageFactory
MessageFactory2 messageFactory
-
name
String name
-
-
Class org.apache.logging.log4j.spi.DefaultThreadContextMap extends Object implements Serializable
- serialVersionUID:
- 8218007901108944053L
-
Serialized Fields
-
localMap
ThreadLocal<Map<String,String>> localMap
-
useMap
boolean useMap
-
-
Class org.apache.logging.log4j.spi.DefaultThreadContextStack extends Object implements Serializable
- serialVersionUID:
- 5050501L
-
Serialized Fields
-
useStack
boolean useStack
-
-
Class org.apache.logging.log4j.spi.ExtendedLoggerWrapper extends AbstractLogger implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
logger
ExtendedLogger logger
The wrapped Logger.
-
-
Class org.apache.logging.log4j.spi.MutableThreadContextStack extends Object implements Serializable
- serialVersionUID:
- 50505011L
-
-
Package org.apache.logging.log4j.status
-
Class org.apache.logging.log4j.status.StatusData extends Object implements Serializable
- serialVersionUID:
- -4341916115118014017L
-
Serialized Fields
-
caller
StackTraceElement caller
-
level
Level level
-
msg
Message msg
-
threadName
String threadName
-
throwable
Throwable throwable
-
timestamp
long timestamp
-
-
Class org.apache.logging.log4j.status.StatusLogger extends AbstractLogger implements Serializable
- serialVersionUID:
- 2L
-
Serialized Fields
-
listeners
Collection<StatusListener> listeners
-
listenersLevel
int listenersLevel
-
listenersLock
ReadWriteLock listenersLock
-
logger
SimpleLogger logger
-
messages
Queue<StatusData> messages
-
msgLock
Lock msgLock
-
-
-
Package org.apache.logging.log4j.util
-
Class org.apache.logging.log4j.util.PropertySource.Comparator extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class org.apache.logging.log4j.util.SortedArrayStringMap extends Object implements Serializable
- serialVersionUID:
- -5748905872274478116L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reconstitute theSortedArrayStringMap
instance from a stream (i.e., deserialize it).- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream s) throws IOException
Save the state of theSortedArrayStringMap
instance to a stream (i.e., serialize it).- Serial Data:
- The capacity of the SortedArrayStringMap (the length of the bucket array) is emitted (int), followed by the size (an int, the number of key-value mappings), followed by the key (Object) and value (Object) for each key-value mapping. The key-value mappings are emitted in no particular order.
- Throws:
IOException
-
-
Serialized Fields
-
immutable
boolean immutable
-
threshold
int threshold
The next size value at which to resize (capacity * load factor).
-
-
Class org.apache.logging.log4j.util.Timer extends Object implements Serializable
- serialVersionUID:
- 9175191792439630013L
-
Serialized Fields
-
elapsedTime
long elapsedTime
-
iterations
int iterations
-
name
String name
-
startTime
ThreadLocal<Long> startTime
-
status
Timer.Status status
-
-
-
Package org.apache.taglibs.standard.extra.spath
-
Class org.apache.taglibs.standard.extra.spath.ParseException extends Exception implements Serializable
-
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. -
eol
String eol
The end of line string for this machine. -
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. -
specialConstructor
boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below). -
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.
-
-
-
Class org.apache.taglibs.standard.extra.spath.SPathTag extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.extra.spath.TokenMgrError extends Error implements Serializable
-
Serialized Fields
-
errorCode
int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.
-
-
-
-
Package org.apache.taglibs.standard.lang.jstl
-
Class org.apache.taglibs.standard.lang.jstl.ELException extends Exception implements Serializable
-
Serialized Fields
-
mRootCause
Throwable mRootCause
-
-
-
-
Package org.apache.taglibs.standard.lang.jstl.parser
-
Class org.apache.taglibs.standard.lang.jstl.parser.ParseException extends Exception implements Serializable
-
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. -
eol
String eol
The end of line string for this machine. -
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. -
specialConstructor
boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below). -
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.
-
-
-
Class org.apache.taglibs.standard.lang.jstl.parser.TokenMgrError extends Error implements Serializable
-
Serialized Fields
-
errorCode
int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.
-
-
-
-
Package org.apache.taglibs.standard.tag.common.core
-
Class org.apache.taglibs.standard.tag.common.core.CatchTag extends TagSupport implements Serializable
-
Serialized Fields
-
caught
boolean caught
-
var
String var
-
-
-
Class org.apache.taglibs.standard.tag.common.core.ChooseTag extends TagSupport implements Serializable
-
Serialized Fields
-
subtagGateClosed
boolean subtagGateClosed
-
-
-
Class org.apache.taglibs.standard.tag.common.core.DeclareTag extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.ForEachSupport extends LoopTagSupport implements Serializable
-
Serialized Fields
-
items
ForEachSupport.ForEachIterator items
-
rawItems
Object rawItems
-
-
-
Class org.apache.taglibs.standard.tag.common.core.ForTokensSupport extends LoopTagSupport implements Serializable
-
Serialized Fields
-
delims
String delims
-
items
Object items
-
st
StringTokenizer st
-
-
-
Class org.apache.taglibs.standard.tag.common.core.ImportSupport extends BodyTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.NullAttributeException extends JspTagException implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.OtherwiseTag extends WhenTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.OutSupport extends BodyTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.ParamSupport extends BodyTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.RedirectSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
context
String context
-
params
ParamSupport.ParamManager params
-
scope
int scope
-
url
String url
-
var
String var
-
-
-
Class org.apache.taglibs.standard.tag.common.core.RemoveTag extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.SetSupport extends BodyTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.core.UrlSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
context
String context
-
params
ParamSupport.ParamManager params
-
scope
int scope
-
value
String value
-
var
String var
-
-
-
Class org.apache.taglibs.standard.tag.common.core.WhenTagSupport extends ConditionalTagSupport implements Serializable
-
-
Package org.apache.taglibs.standard.tag.common.fmt
-
Class org.apache.taglibs.standard.tag.common.fmt.BundleSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
basename
String basename
-
locCtxt
LocalizationContext locCtxt
-
prefix
String prefix
-
-
-
Class org.apache.taglibs.standard.tag.common.fmt.FormatDateSupport extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.fmt.FormatNumberSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
currencyCode
String currencyCode
-
currencySymbol
String currencySymbol
-
groupingUsedSpecified
boolean groupingUsedSpecified
-
isGroupingUsed
boolean isGroupingUsed
-
maxFractionDigits
int maxFractionDigits
-
maxFractionDigitsSpecified
boolean maxFractionDigitsSpecified
-
maxIntegerDigits
int maxIntegerDigits
-
maxIntegerDigitsSpecified
boolean maxIntegerDigitsSpecified
-
minFractionDigits
int minFractionDigits
-
minFractionDigitsSpecified
boolean minFractionDigitsSpecified
-
minIntegerDigits
int minIntegerDigits
-
minIntegerDigitsSpecified
boolean minIntegerDigitsSpecified
-
pattern
String pattern
-
scope
int scope
-
type
String type
-
value
Object value
-
valueSpecified
boolean valueSpecified
-
var
String var
-
-
-
Class org.apache.taglibs.standard.tag.common.fmt.MessageSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
bundleAttrValue
LocalizationContext bundleAttrValue
-
bundleSpecified
boolean bundleSpecified
-
keyAttrValue
String keyAttrValue
-
keySpecified
boolean keySpecified
-
params
List<Object> params
-
scope
int scope
-
var
String var
-
-
-
Class org.apache.taglibs.standard.tag.common.fmt.ParamSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
value
Object value
-
valueSpecified
boolean valueSpecified
-
-
-
Class org.apache.taglibs.standard.tag.common.fmt.ParseDateSupport extends BodyTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.fmt.ParseNumberSupport extends BodyTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.fmt.RequestEncodingSupport extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.fmt.SetBundleSupport extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.fmt.SetLocaleSupport extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.fmt.SetTimeZoneSupport extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.fmt.TimeZoneSupport extends BodyTagSupport implements Serializable
-
-
Package org.apache.taglibs.standard.tag.common.sql
-
Class org.apache.taglibs.standard.tag.common.sql.DateParamTagSupport extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.sql.DriverTag extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.sql.ParamTagSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
value
Object value
-
-
-
Class org.apache.taglibs.standard.tag.common.sql.QueryTagSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
conn
Connection conn
-
dataSourceSpecified
boolean dataSourceSpecified
-
isPartOfTransaction
boolean isPartOfTransaction
-
maxRows
int maxRows
-
maxRowsSpecified
boolean maxRowsSpecified
-
parameters
List<Object> parameters
-
rawDataSource
Object rawDataSource
-
scope
int scope
-
sql
String sql
-
startRow
int startRow
-
var
String var
-
-
-
Class org.apache.taglibs.standard.tag.common.sql.SetDataSourceTagSupport extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.sql.TransactionTagSupport extends TagSupport implements Serializable
-
Serialized Fields
-
conn
Connection conn
-
dataSourceSpecified
boolean dataSourceSpecified
-
isolation
int isolation
-
origIsolation
int origIsolation
-
rawDataSource
Object rawDataSource
-
-
-
Class org.apache.taglibs.standard.tag.common.sql.UpdateTagSupport extends BodyTagSupport implements Serializable
-
-
Package org.apache.taglibs.standard.tag.common.xml
-
Class org.apache.taglibs.standard.tag.common.xml.ExprSupport extends TagSupport implements Serializable
-
Serialized Fields
-
escapeXml
boolean escapeXml
-
select
String select
-
-
-
Class org.apache.taglibs.standard.tag.common.xml.ForEachTag extends LoopTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.xml.IfTag extends ConditionalTagSupport implements Serializable
-
Serialized Fields
-
select
String select
-
-
-
Class org.apache.taglibs.standard.tag.common.xml.ParamSupport extends BodyTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.xml.ParseSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
db
DocumentBuilder db
-
dbf
DocumentBuilderFactory dbf
-
filter
XMLFilter filter
-
scope
int scope
-
scopeDom
int scopeDom
-
systemId
String systemId
-
tf
TransformerFactory tf
-
th
TransformerHandler th
-
var
String var
-
varDom
String varDom
-
xml
Object xml
-
-
-
Class org.apache.taglibs.standard.tag.common.xml.SetTag extends TagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.common.xml.TransformSupport extends BodyTagSupport implements Serializable
-
Serialized Fields
-
db
DocumentBuilder db
-
dbf
DocumentBuilderFactory dbf
-
result
Result result
-
scope
int scope
-
t
Transformer t
-
tf
TransformerFactory tf
-
var
String var
-
xml
Object xml
-
xmlSystemId
String xmlSystemId
-
xslt
Object xslt
-
xsltSystemId
String xsltSystemId
-
-
-
Class org.apache.taglibs.standard.tag.common.xml.UnresolvableException extends XPathException implements Serializable
-
Class org.apache.taglibs.standard.tag.common.xml.WhenTag extends WhenTagSupport implements Serializable
-
Serialized Fields
-
select
String select
-
-
-
-
Package org.apache.taglibs.standard.tag.el.core
-
Class org.apache.taglibs.standard.tag.el.core.ForEachTag extends ForEachSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.ForTokensTag extends ForTokensSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.IfTag extends ConditionalTagSupport implements Serializable
-
Serialized Fields
-
test
String test
-
-
-
Class org.apache.taglibs.standard.tag.el.core.ImportTag extends ImportSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.OutTag extends OutSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.ParamTag extends ParamSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.RedirectTag extends RedirectSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.SetTag extends SetSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.UrlTag extends UrlSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.core.WhenTag extends WhenTagSupport implements Serializable
-
Serialized Fields
-
test
String test
-
-
-
-
Package org.apache.taglibs.standard.tag.el.fmt
-
Class org.apache.taglibs.standard.tag.el.fmt.BundleTag extends BundleSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.fmt.FormatDateTag extends FormatDateSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.fmt.FormatNumberTag extends FormatNumberSupport implements Serializable
-
Serialized Fields
-
currencyCode_
String currencyCode_
-
currencySymbol_
String currencySymbol_
-
groupingUsed_
String groupingUsed_
-
maxFractionDigits_
String maxFractionDigits_
-
maxIntegerDigits_
String maxIntegerDigits_
-
minFractionDigits_
String minFractionDigits_
-
minIntegerDigits_
String minIntegerDigits_
-
pattern_
String pattern_
-
type_
String type_
-
value_
String value_
-
-
-
Class org.apache.taglibs.standard.tag.el.fmt.MessageTag extends MessageSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.fmt.ParamTag extends ParamSupport implements Serializable
-
Serialized Fields
-
value_
String value_
-
-
-
Class org.apache.taglibs.standard.tag.el.fmt.ParseDateTag extends ParseDateSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.fmt.ParseNumberTag extends ParseNumberSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.fmt.RequestEncodingTag extends RequestEncodingSupport implements Serializable
-
Serialized Fields
-
value_
String value_
-
-
-
Class org.apache.taglibs.standard.tag.el.fmt.SetBundleTag extends SetBundleSupport implements Serializable
-
Serialized Fields
-
basename_
String basename_
-
-
-
Class org.apache.taglibs.standard.tag.el.fmt.SetLocaleTag extends SetLocaleSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.fmt.SetTimeZoneTag extends SetTimeZoneSupport implements Serializable
-
Serialized Fields
-
value_
String value_
-
-
-
Class org.apache.taglibs.standard.tag.el.fmt.TimeZoneTag extends TimeZoneSupport implements Serializable
-
Serialized Fields
-
value_
String value_
-
-
-
-
Package org.apache.taglibs.standard.tag.el.sql
-
Class org.apache.taglibs.standard.tag.el.sql.DateParamTag extends DateParamTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.sql.ParamTag extends ParamTagSupport implements Serializable
-
Serialized Fields
-
valueEL
String valueEL
-
-
-
Class org.apache.taglibs.standard.tag.el.sql.QueryTag extends QueryTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.sql.SetDataSourceTag extends SetDataSourceTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.sql.TransactionTag extends TransactionTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.sql.UpdateTag extends UpdateTagSupport implements Serializable
-
-
Package org.apache.taglibs.standard.tag.el.xml
-
Class org.apache.taglibs.standard.tag.el.xml.ExprTag extends ExprSupport implements Serializable
-
Serialized Fields
-
escapeXml_
String escapeXml_
-
-
-
Class org.apache.taglibs.standard.tag.el.xml.ParamTag extends ParamSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.xml.ParseTag extends ParseSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.el.xml.TransformTag extends TransformSupport implements Serializable
-
-
Package org.apache.taglibs.standard.tag.rt.core
-
Class org.apache.taglibs.standard.tag.rt.core.ForEachTag extends ForEachSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.ForTokensTag extends ForTokensSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.IfTag extends ConditionalTagSupport implements Serializable
-
Serialized Fields
-
test
boolean test
-
-
-
Class org.apache.taglibs.standard.tag.rt.core.ImportTag extends ImportSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.OutTag extends OutSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.ParamTag extends ParamSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.RedirectTag extends RedirectSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.SetTag extends SetSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.UrlTag extends UrlSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.core.WhenTag extends WhenTagSupport implements Serializable
-
Serialized Fields
-
test
boolean test
-
-
-
-
Package org.apache.taglibs.standard.tag.rt.fmt
-
Class org.apache.taglibs.standard.tag.rt.fmt.BundleTag extends BundleSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.FormatDateTag extends FormatDateSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.FormatNumberTag extends FormatNumberSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.MessageTag extends MessageSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.ParamTag extends ParamSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.ParseDateTag extends ParseDateSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.ParseNumberTag extends ParseNumberSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.RequestEncodingTag extends RequestEncodingSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.SetBundleTag extends SetBundleSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.SetLocaleTag extends SetLocaleSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.SetTimeZoneTag extends SetTimeZoneSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.fmt.TimeZoneTag extends TimeZoneSupport implements Serializable
-
-
Package org.apache.taglibs.standard.tag.rt.sql
-
Class org.apache.taglibs.standard.tag.rt.sql.DateParamTag extends DateParamTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.sql.ParamTag extends ParamTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.sql.QueryTag extends QueryTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.sql.SetDataSourceTag extends SetDataSourceTagSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.sql.TransactionTag extends TransactionTagSupport implements Serializable
-
Serialized Fields
-
isolationRT
String isolationRT
-
-
-
Class org.apache.taglibs.standard.tag.rt.sql.UpdateTag extends UpdateTagSupport implements Serializable
-
-
Package org.apache.taglibs.standard.tag.rt.xml
-
Class org.apache.taglibs.standard.tag.rt.xml.ExprTag extends ExprSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.xml.ParamTag extends ParamSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.xml.ParseTag extends ParseSupport implements Serializable
-
Class org.apache.taglibs.standard.tag.rt.xml.TransformTag extends TransformSupport implements Serializable
-
-
Package org.apache.wss4j.common
-
Class org.apache.wss4j.common.WSSPolicyException extends Exception implements Serializable
- serialVersionUID:
- 5904800255533588133L
-
-
Package org.apache.wss4j.common.cache
-
Class org.apache.wss4j.common.cache.EHCacheValue extends Object implements Serializable
-
-
Package org.apache.wss4j.common.crypto
-
Class org.apache.wss4j.common.crypto.ThreadLocalSecurityProvider extends Provider implements Serializable
- serialVersionUID:
- 3556396671069994931L
-
-
Package org.apache.wss4j.common.ext
-
Class org.apache.wss4j.common.ext.WSSecurityException extends org.apache.xml.security.exceptions.XMLSecurityException implements Serializable
- serialVersionUID:
- 4703352039717763655L
-
Serialized Fields
-
errorCode
WSSecurityException.ErrorCode errorCode
-
-
-
Package org.apache.wss4j.common.kerberos
-
Class org.apache.wss4j.common.kerberos.KerberosTokenDecoderException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.apache.wss4j.common.principal
-
Class org.apache.wss4j.common.principal.CustomTokenPrincipal extends Object implements Serializable
- serialVersionUID:
- -7439821246832337774L
-
Class org.apache.wss4j.common.principal.PublicKeyPrincipalImpl extends Object implements Serializable
- serialVersionUID:
- -7662669773454821344L
-
Serialized Fields
-
publicKey
PublicKey publicKey
-
-
Class org.apache.wss4j.common.principal.SAMLTokenPrincipalImpl extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
String name
-
samlAssertion
SamlAssertionWrapper samlAssertion
-
-
Class org.apache.wss4j.common.principal.WSDerivedKeyTokenPrincipal extends Object implements Serializable
- serialVersionUID:
- -8576876885462234466L
-
Class org.apache.wss4j.common.principal.WSUsernameTokenPrincipalImpl extends Object implements Serializable
- serialVersionUID:
- 5608648208455259722L
-
-
Package org.apache.wss4j.common.util
-
Class org.apache.wss4j.common.util.Mapping extends Object implements Serializable
- serialVersionUID:
- 4598721541118599293L
-
-
Package org.apache.wss4j.dom
-
Class org.apache.wss4j.dom.SOAP11Constants extends Object implements Serializable
- serialVersionUID:
- 3809268485386395322L
-
Class org.apache.wss4j.dom.SOAP12Constants extends Object implements Serializable
- serialVersionUID:
- 3784866613259361834L
-
-
Package org.apache.wss4j.dom.engine
-
Class org.apache.wss4j.dom.engine.WSSecurityEngineResult extends HashMap<String,Object> implements Serializable
- serialVersionUID:
- 8877354445092724300L
-
-
Package org.apache.wss4j.dom.transform
-
Class org.apache.wss4j.dom.transform.AttachmentCompleteSignatureTransformProvider extends Provider implements Serializable
- serialVersionUID:
- -9148982936620100249L
-
Class org.apache.wss4j.dom.transform.AttachmentContentSignatureTransformProvider extends Provider implements Serializable
- serialVersionUID:
- -9148982936620100249L
-
Class org.apache.wss4j.dom.transform.STRTransformProvider extends Provider implements Serializable
- serialVersionUID:
- -9148982936620100249L
-
-
Package org.apache.wss4j.policy.stax
-
Class org.apache.wss4j.policy.stax.PolicyViolationException extends WSSPolicyException implements Serializable
- serialVersionUID:
- 4162351775688661849L
-
-
Package org.apache.wss4j.stax.ext
-
Class org.apache.wss4j.stax.ext.WSSConfigurationException extends WSSecurityException implements Serializable
- serialVersionUID:
- 689628294822027113L
-
-
Package org.eclipse.angus.activation
-
Class org.eclipse.angus.activation.MailcapParseException extends Exception implements Serializable
- serialVersionUID:
- -1445946122972156790L
-
-
Package org.eclipse.parsson
-
Class org.eclipse.parsson.JsonPointerImpl extends Object implements Serializable
- serialVersionUID:
- -8123110179640843141L
-
-
Package org.glassfish.expressly
-
Class org.glassfish.expressly.MethodExpressionImpl extends MethodExpression implements Serializable
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
Class org.glassfish.expressly.MethodExpressionLiteral extends MethodExpression implements Serializable
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
Class org.glassfish.expressly.ValueExpressionImpl extends ValueExpression implements Serializable
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
Class org.glassfish.expressly.ValueExpressionLiteral extends ValueExpression implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
Package org.glassfish.expressly.lang
-
Class org.glassfish.expressly.lang.FunctionMapperImpl extends FunctionMapper implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
Class org.glassfish.expressly.lang.FunctionMapperImpl.Function extends Object implements Serializable
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
Class org.glassfish.expressly.lang.VariableMapperImpl extends VariableMapper implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
Package org.glassfish.expressly.parser
-
Class org.glassfish.expressly.parser.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. -
eol
String eol
The end of line string for this machine. -
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. -
specialConstructor
boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below). -
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.
-
-
Class org.glassfish.expressly.parser.Token extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
beginColumn
int beginColumn
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token. -
beginLine
int beginLine
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token. -
endColumn
int endColumn
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token. -
endLine
int endLine
beginLine and beginColumn describe the position of the first character of this token; endLine and endColumn describe the position of the last character of this token. -
image
String image
The string image of the token. -
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. -
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.glassfish.expressly.parser.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.glassfish.jaxb.core.v2.runtime
-
Class org.glassfish.jaxb.core.v2.runtime.IllegalAnnotationException extends JAXBException implements Serializable
- serialVersionUID:
- 407680563506515709L
-
-
Package org.glassfish.jaxb.runtime.api
-
Class org.glassfish.jaxb.runtime.api.AccessorException extends Exception implements Serializable
- serialVersionUID:
- 3825830567556994999L
-
-
Package org.glassfish.jaxb.runtime.v2.runtime
-
Class org.glassfish.jaxb.runtime.v2.runtime.IllegalAnnotationsException extends JAXBException implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.glassfish.jaxb.runtime.v2.runtime.reflect
-
Class org.glassfish.jaxb.runtime.v2.runtime.reflect.Lister.Pack extends ArrayList<ItemT> implements Serializable
- serialVersionUID:
- 8543908122652908717L
-
-
Package org.glassfish.jaxb.runtime.v2.util
-
Class org.glassfish.jaxb.runtime.v2.util.StackRecorder extends Throwable implements Serializable
- serialVersionUID:
- 1296878485146023581L
-
-
Package org.hibernate.envers
-
Class org.hibernate.envers.DefaultRevisionEntity extends Object implements Serializable
- serialVersionUID:
- 8530213963961662300L
-
Serialized Fields
-
id
int id
-
timestamp
long timestamp
-
-
Class org.hibernate.envers.DefaultTrackingModifiedEntitiesRevisionEntity extends DefaultRevisionEntity implements Serializable
-
-
Package org.hibernate.envers.boot
-
Class org.hibernate.envers.boot.EnversBootLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.hibernate.envers.boot.EnversMappingException extends org.hibernate.boot.MappingException implements Serializable
-
-
Package org.hibernate.envers.boot.internal
-
Class org.hibernate.envers.boot.internal.EnversServiceImpl extends Object implements Serializable
-
Serialized Fields
-
auditProcessManager
AuditProcessManager auditProcessManager
-
classLoaderService
org.hibernate.boot.registry.classloading.spi.ClassLoaderService classLoaderService
-
configuration
Configuration configuration
-
entitiesConfigurations
EntitiesConfigurations entitiesConfigurations
-
initialized
boolean initialized
-
integrationEnabled
boolean integrationEnabled
-
serviceRegistry
org.hibernate.service.ServiceRegistry serviceRegistry
-
-
-
-
Package org.hibernate.envers.configuration.internal.metadata
-
Class org.hibernate.envers.configuration.internal.metadata.FormulaNotSupportedException extends org.hibernate.HibernateException implements Serializable
-
-
Package org.hibernate.envers.enhanced
-
Class org.hibernate.envers.enhanced.OrderedSequenceGenerator extends org.hibernate.id.enhanced.SequenceStyleGenerator implements Serializable
-
Class org.hibernate.envers.enhanced.SequenceIdRevisionEntity extends Object implements Serializable
- serialVersionUID:
- 4159156677698841902L
-
Serialized Fields
-
id
int id
-
timestamp
long timestamp
-
-
Class org.hibernate.envers.enhanced.SequenceIdTrackingModifiedEntitiesRevisionEntity extends SequenceIdRevisionEntity implements Serializable
-
-
Package org.hibernate.envers.exception
-
Class org.hibernate.envers.exception.AuditException extends org.hibernate.HibernateException implements Serializable
- serialVersionUID:
- 4306480965630972168L
-
Class org.hibernate.envers.exception.NotAuditedException extends AuditException implements Serializable
- serialVersionUID:
- 4809674577449455510L
-
Serialized Fields
-
entityName
String entityName
-
-
Class org.hibernate.envers.exception.RevisionDoesNotExistException extends AuditException implements Serializable
- serialVersionUID:
- -6417768274074962282L
-
Serialized Fields
-
date
Date date
-
localDateTime
LocalDateTime localDateTime
-
revision
Number revision
-
-
-
Package org.hibernate.envers.internal
-
Class org.hibernate.envers.internal.EnversMessageLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.hibernate.envers.internal.entities
-
Class org.hibernate.envers.internal.entities.RevisionTypeType extends Object implements Serializable
- serialVersionUID:
- -1053201518229282688L
-
-
Package org.hibernate.envers.internal.entities.mapper.relation.lazy
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.AbstractDelegateSessionImplementor extends org.hibernate.engine.spi.SessionDelegatorBaseImpl implements Serializable
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.ToOneDelegateSessionImplementor extends AbstractDelegateSessionImplementor implements Serializable
- serialVersionUID:
- 4770438372940785488L
-
Serialized Fields
-
entityClass
Class<?> entityClass
-
entityId
Object entityId
-
enversService
EnversService enversService
-
removed
boolean removed
-
revision
Number revision
-
versionsReader
AuditReaderImplementor versionsReader
-
-
-
Package org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.CollectionProxy extends Object implements Serializable
- serialVersionUID:
- 8698249863871832402L
-
Serialized Fields
-
delegate
T extends Collection<U> delegate
-
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.ListProxy extends CollectionProxy<U,List<U>> implements Serializable
- serialVersionUID:
- -5479232938279790987L
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.MapProxy extends Object implements Serializable
- serialVersionUID:
- 8418037541773074646L
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.SetProxy extends CollectionProxy<U,Set<U>> implements Serializable
- serialVersionUID:
- 131464133074137701L
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.SortedMapProxy extends Object implements Serializable
- serialVersionUID:
- 2645817952901452375L
-
Class org.hibernate.envers.internal.entities.mapper.relation.lazy.proxy.SortedSetProxy extends CollectionProxy<U,SortedSet<U>> implements Serializable
- serialVersionUID:
- 2092884107178125905L
-
-
Package org.hibernate.envers.internal.synchronization.work
-
Class org.hibernate.envers.internal.synchronization.work.PersistentCollectionChangeWorkUnit.PersistentCollectionChangeWorkUnitId extends Object implements Serializable
- serialVersionUID:
- -8007831518629167537L
-
-
Package org.hibernate.search.backend.elasticsearch.gson.impl
-
Class org.hibernate.search.backend.elasticsearch.gson.impl.UnexpectedJsonElementTypeException extends AssertionFailure implements Serializable
-
-
Package org.hibernate.search.backend.elasticsearch.logging.impl
-
Class org.hibernate.search.backend.elasticsearch.logging.impl.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.hibernate.search.backend.elasticsearch.reporting.impl
-
Class org.hibernate.search.backend.elasticsearch.reporting.impl.ElasticsearchEventContextMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.hibernate.search.backend.elasticsearch.reporting.impl.ElasticsearchSearchHints_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.hibernate.search.backend.elasticsearch.reporting.impl.ElasticsearchValidationMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.search.backend.lucene.logging.impl
-
Class org.hibernate.search.backend.lucene.logging.impl.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.hibernate.search.backend.lucene.lowlevel.writer.impl
-
Class org.hibernate.search.backend.lucene.lowlevel.writer.impl.IndexWriterSettings extends Object implements Serializable
-
-
Package org.hibernate.search.backend.lucene.reporting.impl
-
Class org.hibernate.search.backend.lucene.reporting.impl.LuceneSearchHints_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.search.engine.backend.reporting.spi
-
Class org.hibernate.search.engine.backend.reporting.spi.BackendMappingHints_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.hibernate.search.engine.backend.reporting.spi.BackendSearchHints_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.search.engine.environment.bean.spi
-
Class org.hibernate.search.engine.environment.bean.spi.BeanNotFoundException extends SearchException implements Serializable
-
-
Package org.hibernate.search.engine.environment.classpath.spi
-
Class org.hibernate.search.engine.environment.classpath.spi.ClassLoadingException extends SearchException implements Serializable
-
-
Package org.hibernate.search.engine.logging.impl
-
Class org.hibernate.search.engine.logging.impl.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.hibernate.search.engine.mapper.mapping.building.spi
-
Class org.hibernate.search.engine.mapper.mapping.building.spi.MappingAbortedException extends Exception implements Serializable
-
-
Package org.hibernate.search.engine.reporting.impl
-
Class org.hibernate.search.engine.reporting.impl.EngineEventContextMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.search.mapper.orm.bootstrap.impl
-
Class org.hibernate.search.mapper.orm.bootstrap.impl.HibernateSearchPreIntegrationService extends Object implements Serializable
-
Serialized Fields
-
coordinationStrategyConfiguration
CoordinationConfigurationContextImpl coordinationStrategyConfiguration
-
propertyChecker
ConfigurationPropertyChecker propertyChecker
-
rawPropertySource
ConfigurationPropertySource rawPropertySource
-
-
-
-
Package org.hibernate.search.mapper.orm.logging.impl
-
Class org.hibernate.search.mapper.orm.logging.impl.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.hibernate.search.mapper.orm.mapping.impl
-
Class org.hibernate.search.mapper.orm.mapping.impl.HibernateSearchContextProviderService extends Object implements Serializable
-
Serialized Fields
-
mapping
HibernateOrmMapping mapping
-
-
-
-
Package org.hibernate.search.mapper.orm.reporting.impl
-
Class org.hibernate.search.mapper.orm.reporting.impl.HibernateOrmEventContextMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.hibernate.search.mapper.orm.reporting.impl.HibernateOrmMappingHints_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.search.mapper.orm.session.impl
-
Class org.hibernate.search.mapper.orm.session.impl.HibernateOrmSearchSessionHolder extends Object implements Serializable
-
-
Package org.hibernate.search.mapper.orm.spi
-
Package org.hibernate.search.mapper.pojo.common.annotation.impl
-
Class org.hibernate.search.mapper.pojo.common.annotation.impl.SearchProcessingWithContextException extends SearchException implements Serializable
-
-
Package org.hibernate.search.mapper.pojo.logging.impl
-
Class org.hibernate.search.mapper.pojo.logging.impl.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.hibernate.search.mapper.pojo.massindexing.impl
-
Class org.hibernate.search.mapper.pojo.massindexing.impl.MassIndexingOperationHandledFailureException extends SearchException implements Serializable
-
-
Package org.hibernate.search.mapper.pojo.reporting.impl
-
Class org.hibernate.search.mapper.pojo.reporting.impl.PojoConstructorProjectionDefinitionMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
Class org.hibernate.search.mapper.pojo.reporting.impl.PojoEventContextMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.search.mapper.pojo.route
-
Class org.hibernate.search.mapper.pojo.route.DocumentRouteDescriptor extends Object implements Serializable
-
Serialized Fields
-
routingKey
String routingKey
-
-
-
Class org.hibernate.search.mapper.pojo.route.DocumentRoutesDescriptor extends Object implements Serializable
-
Serialized Fields
-
currentRoute
DocumentRouteDescriptor currentRoute
-
previousRoutes
Collection<DocumentRouteDescriptor> previousRoutes
-
-
-
-
Package org.hibernate.search.mapper.pojo.search.definition.impl
-
Class org.hibernate.search.mapper.pojo.search.definition.impl.ConstructorProjectionApplicationException extends SearchException implements Serializable
-
Serialized Fields
-
projectionConstructorPath
ProjectionConstructorPath projectionConstructorPath
-
-
-
-
Package org.hibernate.search.mapper.pojo.work.spi
-
Class org.hibernate.search.mapper.pojo.work.spi.DirtinessDescriptor extends Object implements Serializable
-
Class org.hibernate.search.mapper.pojo.work.spi.PojoIndexingQueueEventPayload extends Object implements Serializable
-
Serialized Fields
-
dirtiness
DirtinessDescriptor dirtiness
-
routes
DocumentRoutesDescriptor routes
-
-
-
-
Package org.hibernate.search.util.common
-
Class org.hibernate.search.util.common.AssertionFailure extends RuntimeException implements Serializable
-
Class org.hibernate.search.util.common.SearchException extends RuntimeException implements Serializable
-
Serialized Fields
-
context
EventContext context
-
messageWithoutContext
String messageWithoutContext
-
-
-
Class org.hibernate.search.util.common.SearchTimeoutException extends SearchException implements Serializable
-
-
Package org.hibernate.search.util.common.logging.impl
-
Class org.hibernate.search.util.common.logging.impl.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.hibernate.search.util.common.reporting.impl
-
Class org.hibernate.search.util.common.reporting.impl.CommonEventContextMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.validator
-
Class org.hibernate.validator.HibernateValidatorPermission extends BasicPermission implements Serializable
-
-
Package org.hibernate.validator.cdi.internal.interceptor
-
Class org.hibernate.validator.cdi.internal.interceptor.ValidationInterceptor extends Object implements Serializable
- serialVersionUID:
- 604440259030722151L
-
Serialized Fields
-
validator
Validator validator
The validator to be used for method validation.Although the concrete validator is not necessarily serializable (and HV's implementation indeed isn't) it is still alright to have it as non-transient field here. Upon passivation not the validator itself will be serialized, but the proxy injected here, which in turn is serializable.
-
-
-
Package org.hibernate.validator.internal.engine
-
Class org.hibernate.validator.internal.engine.ConstraintViolationImpl extends Object implements Serializable
- serialVersionUID:
- -4970067626703103139L
-
Serialized Fields
-
constraintDescriptor
ConstraintDescriptor<?> constraintDescriptor
-
dynamicPayload
Object dynamicPayload
-
executableParameters
Object[] executableParameters
-
executableReturnValue
Object executableReturnValue
-
expressionVariables
Map<String,Object> expressionVariables
-
hashCode
int hashCode
-
interpolatedMessage
String interpolatedMessage
-
leafBeanInstance
Object leafBeanInstance
-
messageParameters
Map<String,Object> messageParameters
-
messageTemplate
String messageTemplate
-
propertyPath
Path propertyPath
-
rootBean
T rootBean
-
rootBeanClass
Class<T> rootBeanClass
-
value
Object value
-
-
Class org.hibernate.validator.internal.engine.DefaultPropertyNodeNameProvider extends Object implements Serializable
-
-
Package org.hibernate.validator.internal.engine.messageinterpolation.el
-
Class org.hibernate.validator.internal.engine.messageinterpolation.el.DisabledFeatureELException extends ELException implements Serializable
-
-
Package org.hibernate.validator.internal.engine.messageinterpolation.parser
-
Class org.hibernate.validator.internal.engine.messageinterpolation.parser.MessageDescriptorFormatException extends ValidationException implements Serializable
-
-
Package org.hibernate.validator.internal.engine.path
-
Class org.hibernate.validator.internal.engine.path.NodeImpl extends Object implements Serializable
- serialVersionUID:
- 2075466571633860499L
-
Serialized Fields
-
asString
String asString
-
containerClass
Class<?> containerClass
-
hashCode
int hashCode
-
index
Integer index
-
isIterable
boolean isIterable
-
key
Object key
-
kind
ElementKind kind
-
name
String name
-
parameterIndex
Integer parameterIndex
-
parameterTypes
Class<?>[] parameterTypes
-
parent
NodeImpl parent
-
typeArgumentIndex
Integer typeArgumentIndex
-
value
Object value
-
-
Class org.hibernate.validator.internal.engine.path.PathImpl extends Object implements Serializable
- serialVersionUID:
- 7564511574909882392L
-
-
Package org.hibernate.validator.internal.metadata.descriptor
-
Class org.hibernate.validator.internal.metadata.descriptor.BeanDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Serialized Fields
-
constrainedConstructors
Map<Signature,ConstructorDescriptor> constrainedConstructors
-
constrainedMethods
Map<Signature,ExecutableDescriptorImpl> constrainedMethods
-
constrainedProperties
Map<String,PropertyDescriptor> constrainedProperties
-
-
-
Class org.hibernate.validator.internal.metadata.descriptor.ClassDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Class org.hibernate.validator.internal.metadata.descriptor.ConstraintDescriptorImpl extends Object implements Serializable
- serialVersionUID:
- -2563102960314069246L
-
Serialized Fields
-
annotationDescriptor
ConstraintAnnotationDescriptor<T extends Annotation> annotationDescriptor
The annotation descriptor - accessing the annotation information has a cost so we do it only once. -
composingConstraints
Set<ConstraintDescriptorImpl<?>> composingConstraints
The composing constraints for this constraint. -
compositionType
CompositionType compositionType
Type indicating how composing constraints should be combined. By default this is set toConstraintComposition.CompositionType.AND
. -
constraintLocationKind
ConstraintLocation.ConstraintLocationKind constraintLocationKind
Describes on which level (TYPE
,METHOD
,FIELD
...) the constraint was defined on. -
constraintType
ConstraintDescriptorImpl.ConstraintType constraintType
The type of this constraint. -
constraintValidatorClasses
List<Class<? extends ConstraintValidator<T extends Annotation,?>>> constraintValidatorClasses
The set of classes implementing the validation for this constraint. See alsoConstraintValidator
resolution algorithm. -
definedOn
ConstraintOrigin definedOn
The origin of the constraint. Defined on the actual root class or somewhere in the class hierarchy -
groups
Set<Class<?>> groups
The groups for which to apply this constraint. -
hashCode
int hashCode
-
isReportAsSingleInvalidConstraint
boolean isReportAsSingleInvalidConstraint
Flag indicating if in case of a composing constraint a single error or multiple errors should be raised. -
payloads
Set<Class<? extends Payload>> payloads
The specified payload of the constraint. -
validationAppliesTo
ConstraintTarget validationAppliesTo
The target of the constraint. -
valueUnwrapping
ValidateUnwrappedValue valueUnwrapping
The unwrapping behavior defined on the constraint.
-
-
Class org.hibernate.validator.internal.metadata.descriptor.ContainerElementTypeDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Serialized Fields
-
cascaded
boolean cascaded
-
constrainedContainerElementTypes
Set<ContainerElementTypeDescriptor> constrainedContainerElementTypes
-
containerClass
Class<?> containerClass
-
groupConversions
Set<GroupConversionDescriptor> groupConversions
-
typeArgumentIndex
Integer typeArgumentIndex
-
-
-
Class org.hibernate.validator.internal.metadata.descriptor.CrossParameterDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Class org.hibernate.validator.internal.metadata.descriptor.ElementDescriptorImpl extends Object implements Serializable
-
Serialized Fields
-
constraintDescriptors
Set<ConstraintDescriptorImpl<?>> constraintDescriptors
-
defaultGroupSequence
List<Class<?>> defaultGroupSequence
-
defaultGroupSequenceRedefined
boolean defaultGroupSequenceRedefined
-
type
Class<?> type
The type of the element
-
-
-
Class org.hibernate.validator.internal.metadata.descriptor.ExecutableDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Serialized Fields
-
crossParameterDescriptor
CrossParameterDescriptor crossParameterDescriptor
-
isGetter
boolean isGetter
-
name
String name
-
parameters
List<ParameterDescriptor> parameters
-
returnValueDescriptor
ReturnValueDescriptor returnValueDescriptor
-
-
-
Class org.hibernate.validator.internal.metadata.descriptor.ParameterDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Serialized Fields
-
cascaded
boolean cascaded
-
constrainedContainerElementTypes
Set<ContainerElementTypeDescriptor> constrainedContainerElementTypes
-
groupConversions
Set<GroupConversionDescriptor> groupConversions
-
index
int index
-
name
String name
-
-
-
Class org.hibernate.validator.internal.metadata.descriptor.PropertyDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Serialized Fields
-
cascaded
boolean cascaded
-
constrainedContainerElementTypes
Set<ContainerElementTypeDescriptor> constrainedContainerElementTypes
-
groupConversions
Set<GroupConversionDescriptor> groupConversions
-
propertyName
String propertyName
-
-
-
Class org.hibernate.validator.internal.metadata.descriptor.ReturnValueDescriptorImpl extends ElementDescriptorImpl implements Serializable
-
Serialized Fields
-
cascaded
boolean cascaded
-
constrainedContainerElementTypes
Set<ContainerElementTypeDescriptor> constrainedContainerElementTypes
-
groupConversions
Set<GroupConversionDescriptor> groupConversions
-
-
-
-
Package org.hibernate.validator.internal.util
-
Class org.hibernate.validator.internal.util.ConcurrentReferenceHashMap extends AbstractMap<K,V> implements Serializable
- serialVersionUID:
- 7249069246763182397L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reconstitute theConcurrentReferenceHashMap
instance from a stream (i.e., deserialize it).- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if the class of a serialized object could not be found
-
writeObject
private void writeObject(ObjectOutputStream s) throws IOException
Save the state of theConcurrentReferenceHashMap
instance to a stream (i.e., serialize it).- Serial Data:
- the key (Object) and value (Object) for each key-value mapping, followed by a null pair. The key-value mappings are emitted in no particular order.
- Throws:
IOException
- if an I/O error occurs
-
-
Serialized Fields
-
identityComparisons
boolean identityComparisons
-
segmentMask
int segmentMask
Mask value for indexing into segments. The upper bits of a key's hash code are used to choose the segment. -
segments
org.hibernate.validator.internal.util.ConcurrentReferenceHashMap.Segment<K,V>[] segments
The segments, each of which is a specialized hash table -
segmentShift
int segmentShift
Shift value for indexing within segments.
-
-
-
Package org.hibernate.validator.internal.util.annotation
-
Class org.hibernate.validator.internal.util.annotation.AnnotationDescriptor extends Object implements Serializable
-
Serialized Fields
-
annotation
A extends Annotation annotation
-
attributes
Map<String,Object> attributes
-
hashCode
int hashCode
-
type
Class<A extends Annotation> type
-
-
-
Class org.hibernate.validator.internal.util.annotation.ConstraintAnnotationDescriptor extends AnnotationDescriptor<A extends Annotation> implements Serializable
-
-
Package org.hibernate.validator.internal.util.logging
-
Class org.hibernate.validator.internal.util.logging.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.hibernate.validator.internal.util.logging.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.hibernate.validator.spi.scripting
-
Class org.hibernate.validator.spi.scripting.ScriptEvaluationException extends ValidationException implements Serializable
-
Class org.hibernate.validator.spi.scripting.ScriptEvaluatorNotFoundException extends ValidationException implements Serializable
-
-
Package org.infinispan.cdi.common.util
-
Class org.infinispan.cdi.common.util.AnyLiteral extends AnnotationLiteral<Any> implements Serializable
- serialVersionUID:
- -6858406907917381581L
-
Class org.infinispan.cdi.common.util.DefaultLiteral extends AnnotationLiteral<Default> implements Serializable
- serialVersionUID:
- -8137340248362361317L
-
Class org.infinispan.cdi.common.util.Synthetic.SyntheticLiteral extends AnnotationLiteral<Synthetic> implements Serializable
-
-
Package org.infinispan.cdi.common.util.logging
-
Class org.infinispan.cdi.common.util.logging.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.cdi.embedded.util.logging
-
Class org.infinispan.cdi.embedded.util.logging.EmbeddedLog_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.cdi.remote.logging
-
Class org.infinispan.cdi.remote.logging.RemoteLog_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.client.hotrod.event
-
Class org.infinispan.client.hotrod.event.IncorrectClientListenerException extends HotRodClientException implements Serializable
-
-
Package org.infinispan.client.hotrod.exceptions
-
Class org.infinispan.client.hotrod.exceptions.CacheNotTransactionalException extends HotRodClientException implements Serializable
-
Class org.infinispan.client.hotrod.exceptions.HotRodClientException extends RuntimeException implements Serializable
-
Serialized Fields
-
errorStatusCode
int errorStatusCode
-
messageId
long messageId
-
-
-
Class org.infinispan.client.hotrod.exceptions.HotRodTimeoutException extends HotRodClientException implements Serializable
-
Class org.infinispan.client.hotrod.exceptions.InvalidResponseException extends HotRodClientException implements Serializable
-
Class org.infinispan.client.hotrod.exceptions.ParallelOperationException extends HotRodClientException implements Serializable
-
Class org.infinispan.client.hotrod.exceptions.RemoteCacheManagerNotStartedException extends HotRodClientException implements Serializable
-
Class org.infinispan.client.hotrod.exceptions.RemoteIllegalLifecycleStateException extends HotRodClientException implements Serializable
-
Serialized Fields
-
serverAddress
SocketAddress serverAddress
-
-
-
Class org.infinispan.client.hotrod.exceptions.RemoteNodeSuspectException extends HotRodClientException implements Serializable
-
Class org.infinispan.client.hotrod.exceptions.TransportException extends HotRodClientException implements Serializable
-
Serialized Fields
-
serverAddress
SocketAddress serverAddress
-
-
-
-
Package org.infinispan.client.hotrod.logging
-
Class org.infinispan.client.hotrod.logging.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.commons
-
Class org.infinispan.commons.CacheConfigurationException extends CacheException implements Serializable
- serialVersionUID:
- -7103679310393205388L
-
Class org.infinispan.commons.CacheException extends RuntimeException implements Serializable
- serialVersionUID:
- -5704354545244956536L
-
Class org.infinispan.commons.CacheListenerException extends CacheException implements Serializable
-
Class org.infinispan.commons.IllegalLifecycleStateException extends CacheException implements Serializable
-
-
Package org.infinispan.commons.configuration.io
-
Class org.infinispan.commons.configuration.io.ConfigurationReaderException extends RuntimeException implements Serializable
-
Serialized Fields
-
location
Location location
-
-
-
Class org.infinispan.commons.configuration.io.ConfigurationWriterException extends RuntimeException implements Serializable
-
-
Package org.infinispan.commons.configuration.io.xml
-
Class org.infinispan.commons.configuration.io.xml.XmlPullParserException extends RuntimeException implements Serializable
-
Serialized Fields
-
column
int column
-
detail
Throwable detail
-
row
int row
-
-
-
-
Package org.infinispan.commons.dataconversion
-
Class org.infinispan.commons.dataconversion.EncodingException extends CacheException implements Serializable
-
Class org.infinispan.commons.dataconversion.MediaType.MediaTypeExternalizer extends Object implements Serializable
-
Serialization Methods
-
readObject
public MediaType readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, MediaType mediaType) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
-
Package org.infinispan.commons.dataconversion.internal
-
Class org.infinispan.commons.dataconversion.internal.Json extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
column
int column
-
enclosing
Json enclosing
-
line
int line
-
-
Class org.infinispan.commons.dataconversion.internal.Json.MalformedJsonException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
column
int column
-
row
int row
-
-
-
Package org.infinispan.commons.hash
-
Class org.infinispan.commons.hash.MurmurHash3.Externalizer extends NoStateExternalizer<MurmurHash3> implements Serializable
-
Serialization Methods
-
readObject
public MurmurHash3 readObject(ObjectInput input)
-
-
-
-
Package org.infinispan.commons.io
-
Class org.infinispan.commons.io.ByteBufferImpl.Externalizer extends AbstractExternalizer<ByteBufferImpl> implements Serializable
- serialVersionUID:
- -5291318076267612501L
-
Serialization Methods
-
readObject
public ByteBufferImpl readObject(ObjectInput input) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
writeObject
public void writeObject(ObjectOutput output, ByteBufferImpl b) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
Package org.infinispan.commons.logging
-
Class org.infinispan.commons.logging.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.commons.marshall
-
Class org.infinispan.commons.marshall.AbstractExternalizer extends Object implements Serializable
-
Class org.infinispan.commons.marshall.AdminFlagExternalizer extends AbstractExternalizer<CacheContainerAdmin.AdminFlag> implements Serializable
-
Serialization Methods
-
readObject
public CacheContainerAdmin.AdminFlag readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, CacheContainerAdmin.AdminFlag flag) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
Class org.infinispan.commons.marshall.InstanceReusingAdvancedExternalizer extends AbstractExternalizer<T> implements Serializable
-
Serialization Methods
-
readObject
public final T readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public final void writeObject(ObjectOutput output, T object) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
Serialized Fields
-
hasChildren
boolean hasChildren
This boolean controls whether or not it makes sense to actually create the context or not. In the case of classes that don't expect to have children that support this they shouldn't do the creation
-
-
-
Class org.infinispan.commons.marshall.MarshallingException extends CacheException implements Serializable
-
Class org.infinispan.commons.marshall.NotSerializableException extends CacheException implements Serializable
- serialVersionUID:
- 8217398736102723887L
-
Class org.infinispan.commons.marshall.SingletonExternalizer extends Object implements Serializable
-
Serialization Methods
-
readObject
public T readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, T object) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
Serialized Fields
-
-
Class org.infinispan.commons.marshall.SuppliedExternalizer extends Object implements Serializable
-
Serialization Methods
-
readObject
public T readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, T object) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
Serialized Fields
-
-
Class org.infinispan.commons.marshall.WrappedByteArray.Externalizer extends AbstractExternalizer<WrappedByteArray> implements Serializable
-
Serialization Methods
-
readObject
public WrappedByteArray readObject(ObjectInput input) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
writeObject
public void writeObject(ObjectOutput output, WrappedByteArray object) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
-
Package org.infinispan.commons.marshall.exts
-
Class org.infinispan.commons.marshall.exts.NoStateExternalizer extends AbstractExternalizer<T> implements Serializable
-
Serialization Methods
-
writeObject
public void writeObject(ObjectOutput output, T object) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
-
Package org.infinispan.commons.util
-
Class org.infinispan.commons.util.FastCopyHashMap extends AbstractMap<K,V> implements Serializable
- serialVersionUID:
- 10929568968762L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream s) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
loadFactor
float loadFactor
The user defined load factor which defines when to resize
-
-
Class org.infinispan.commons.util.ImmutableListCopy.Externalizer extends Object implements Serializable
-
Serialization Methods
-
readObject
public ImmutableListCopy readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, ImmutableListCopy object) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
Class org.infinispan.commons.util.Immutables.ImmutableMapWrapperExternalizer extends AbstractExternalizer<Map> implements Serializable
-
Serialization Methods
-
readObject
public Map readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, Map map) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
Class org.infinispan.commons.util.Immutables.ImmutableSetWrapperExternalizer extends AbstractExternalizer<Set> implements Serializable
-
Serialization Methods
-
readObject
public Set readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, Set set) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
Class org.infinispan.commons.util.KeyValueWithPrevious extends Object implements Serializable
- serialVersionUID:
- -7875910676423622104L
-
Class org.infinispan.commons.util.NullValue extends Object implements Serializable
- serialVersionUID:
- 2860710533033240004L
-
Serialization Methods
-
readResolve
private Object readResolve()
-
-
Class org.infinispan.commons.util.SimpleImmutableEntry extends Object implements Serializable
- serialVersionUID:
- -6092752114794052323L
-
Class org.infinispan.commons.util.TypedProperties extends Properties implements Serializable
- serialVersionUID:
- 3799321248100686287L
-
-
Package org.infinispan.commons.util.concurrent
-
Class org.infinispan.commons.util.concurrent.CacheBackpressureFullException extends CacheException implements Serializable
-
-
Package org.infinispan.commons.util.logging
-
Class org.infinispan.commons.util.logging.TraceException extends Exception implements Serializable
-
-
Package org.infinispan.counter.exception
-
Class org.infinispan.counter.exception.CounterConfigurationException extends CounterException implements Serializable
-
Class org.infinispan.counter.exception.CounterException extends RuntimeException implements Serializable
-
Class org.infinispan.counter.exception.CounterNotFoundException extends CounterException implements Serializable
-
Class org.infinispan.counter.exception.CounterOutOfBoundsException extends CounterException implements Serializable
-
-
Package org.infinispan.counter.logging
-
Class org.infinispan.counter.logging.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.lock.exception
-
Class org.infinispan.lock.exception.ClusteredLockException extends RuntimeException implements Serializable
-
-
Package org.infinispan.lock.impl.lock
-
Class org.infinispan.lock.impl.lock.ClusteredLockFilter.Externalizer extends AbstractExternalizer<ClusteredLockFilter> implements Serializable
-
Serialization Methods
-
readObject
public ClusteredLockFilter readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, ClusteredLockFilter object) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
-
Package org.infinispan.lock.logging
-
Class org.infinispan.lock.logging.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.protostream
-
Class org.infinispan.protostream.AnnotationParserException extends RuntimeException implements Serializable
-
Class org.infinispan.protostream.DescriptorParserException extends RuntimeException implements Serializable
-
Class org.infinispan.protostream.MalformedProtobufException extends IOException implements Serializable
-
-
Package org.infinispan.protostream.annotations
-
Class org.infinispan.protostream.annotations.ProtoSchemaBuilderException extends RuntimeException implements Serializable
-
Serialized Fields
-
element
XElement element
-
-
-
-
Package org.infinispan.protostream.exception
-
Class org.infinispan.protostream.exception.ProtoStreamException extends RuntimeException implements Serializable
-
-
Package org.infinispan.protostream.impl
-
Class org.infinispan.protostream.impl.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.infinispan.protostream.impl.UnknownFieldSetImpl extends Object implements Serializable
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException
- Throws:
IOException
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
- Throws:
IOException
-
-
-
-
Package org.infinispan.query
-
Class org.infinispan.query.SearchTimeoutException extends RuntimeException implements Serializable
-
-
Package org.infinispan.query.dsl.impl.logging
-
Class org.infinispan.query.dsl.impl.logging.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.infinispan.query.remote.client.impl
-
Class org.infinispan.query.remote.client.impl.Externalizers.NamedParameterExternalizer extends Object implements Serializable
-
Serialization Methods
-
readObject
public QueryRequest.NamedParameter readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, QueryRequest.NamedParameter namedParameter) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
Class org.infinispan.query.remote.client.impl.Externalizers.QueryRequestExternalizer extends Object implements Serializable
-
Serialization Methods
-
readObject
public QueryRequest readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, QueryRequest queryRequest) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
Class org.infinispan.query.remote.client.impl.Externalizers.QueryResponseExternalizer extends Object implements Serializable
-
Serialization Methods
-
readObject
public QueryResponse readObject(ObjectInput input) throws IOException, ClassNotFoundException
- Throws:
IOException
- if an I/O error occursClassNotFoundException
- if a class could not be found
-
writeObject
public void writeObject(ObjectOutput output, QueryResponse queryResponse) throws IOException
- Throws:
IOException
- if an I/O error occurs
-
-
-
-
Package org.jboss.as.controller.client.helpers
-
Class org.jboss.as.controller.client.helpers.MeasurementUnit.MeasurementConversionException extends RuntimeException implements Serializable
-
-
Package org.jboss.as.controller.client.helpers.domain
-
Class org.jboss.as.controller.client.helpers.domain.DuplicateDeploymentNameException extends Exception implements Serializable
- serialVersionUID:
- -7207529184499737454L
-
Serialized Fields
-
name
String name
-
-
Class org.jboss.as.controller.client.helpers.domain.IncompleteDeploymentReplaceException extends InvalidDeploymentPlanException implements Serializable
- serialVersionUID:
- -8322852398826927588L
-
Class org.jboss.as.controller.client.helpers.domain.InvalidDeploymentPlanException extends Exception implements Serializable
- serialVersionUID:
- 6442943555765667251L
-
Class org.jboss.as.controller.client.helpers.domain.RollbackCancelledException extends UpdateFailedException implements Serializable
- serialVersionUID:
- -1706640796845639910L
-
Class org.jboss.as.controller.client.helpers.domain.ServerGroupDeploymentPlan extends Object implements Serializable
- serialVersionUID:
- 4868990805217024722L
-
Serialized Fields
-
maxFailurePercentage
int maxFailurePercentage
-
maxFailures
int maxFailures
-
rollback
boolean rollback
-
rollingToServers
boolean rollingToServers
-
serverGroupName
String serverGroupName
-
-
Class org.jboss.as.controller.client.helpers.domain.ServerIdentity extends Object implements Serializable
- serialVersionUID:
- -5853735093238463353L
-
Class org.jboss.as.controller.client.helpers.domain.UpdateFailedException extends Exception implements Serializable
- serialVersionUID:
- 3601180802244470103L
-
-
Package org.jboss.as.controller.client.helpers.domain.impl
-
Class org.jboss.as.controller.client.helpers.domain.impl.BasicDomainUpdateResult extends Object implements Serializable
- serialVersionUID:
- -3525117172870002485L
-
Serialized Fields
-
cancelled
boolean cancelled
-
domainFailure
UpdateFailedException domainFailure
-
hostFailures
Map<String,UpdateFailedException> hostFailures
-
rolledBack
boolean rolledBack
-
-
Class org.jboss.as.controller.client.helpers.domain.impl.DeploymentActionImpl extends Object implements Serializable
- serialVersionUID:
- 613098200977026475L
-
Serialized Fields
-
deploymentUnitName
String deploymentUnitName
-
newContentFileName
String newContentFileName
-
newContentHash
byte[] newContentHash
-
oldDeploymentUnitName
String oldDeploymentUnitName
-
type
DeploymentAction.Type type
-
uuid
UUID uuid
-
-
Class org.jboss.as.controller.client.helpers.domain.impl.DeploymentPlanImpl extends Object implements Serializable
- serialVersionUID:
- -7652253540766375101L
-
Serialized Fields
-
delegate
DeploymentSetPlanImpl delegate
-
rollbackAcrossGroups
boolean rollbackAcrossGroups
-
-
Class org.jboss.as.controller.client.helpers.domain.impl.DeploymentSetPlanImpl extends Object implements Serializable
- serialVersionUID:
- -7652253540766375101L
-
Serialized Fields
-
deploymentActions
List<DeploymentAction> deploymentActions
-
gracefulShutdownPeriod
long gracefulShutdownPeriod
-
rollback
boolean rollback
-
serverGroupPlans
List<Set<ServerGroupDeploymentPlan>> serverGroupPlans
-
shutdown
boolean shutdown
-
uuid
UUID uuid
-
-
Class org.jboss.as.controller.client.helpers.domain.impl.UpdateResultHandlerResponse extends Object implements Serializable
- serialVersionUID:
- -5250735019112151634L
-
Serialized Fields
-
cancelled
boolean cancelled
-
failureResult
Throwable failureResult
-
restarted
boolean restarted
-
rollbackCancelled
boolean rollbackCancelled
-
rollbackFailure
Throwable rollbackFailure
-
rollbackTimedOut
boolean rollbackTimedOut
-
rolledBack
boolean rolledBack
-
successResult
ModelNode successResult
-
timedOut
boolean timedOut
-
-
-
Package org.jboss.as.controller.client.helpers.standalone
-
Class org.jboss.as.controller.client.helpers.standalone.AbstractServerUpdateActionResult extends Object implements Serializable
- serialVersionUID:
- -4692787126053225682L
-
Serialized Fields
-
deploymentException
Throwable deploymentException
-
id
UUID id
-
result
ServerUpdateActionResult.Result result
-
rollbackResult
T extends ServerUpdateActionResult rollbackResult
-
-
Class org.jboss.as.controller.client.helpers.standalone.DuplicateDeploymentNameException extends Exception implements Serializable
- serialVersionUID:
- -7207529184499737454L
-
Serialized Fields
-
name
String name
-
-
Class org.jboss.as.controller.client.helpers.standalone.ServerDeploymentHelper.ServerDeploymentException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
actionResult
ServerDeploymentActionResult actionResult
-
-
Class org.jboss.as.controller.client.helpers.standalone.SimpleServerDeploymentActionResult extends AbstractServerUpdateActionResult<ServerDeploymentActionResult> implements Serializable
- serialVersionUID:
- 1075795087623522316L
-
Class org.jboss.as.controller.client.helpers.standalone.SimpleServerUpdateActionResult extends AbstractServerUpdateActionResult<ServerUpdateActionResult> implements Serializable
- serialVersionUID:
- 6337992911667021814L
-
-
Package org.jboss.as.controller.client.helpers.standalone.impl
-
Class org.jboss.as.controller.client.helpers.standalone.impl.DeploymentActionImpl extends Object implements Serializable
- serialVersionUID:
- 613098200977026475L
-
Serialized Fields
-
contents
Map<String,InputStream> contents
-
contentStream
InputStream contentStream
-
deploymentUnitName
String deploymentUnitName
-
files
Map<String,Path> files
-
internalStream
boolean internalStream
-
newContentFileName
String newContentFileName
-
oldDeploymentUnitName
String oldDeploymentUnitName
-
type
DeploymentAction.Type type
-
uuid
UUID uuid
-
-
Class org.jboss.as.controller.client.helpers.standalone.impl.DeploymentPlanImpl extends Object implements Serializable
- serialVersionUID:
- -119621318892470668L
-
Serialized Fields
-
deploymentActions
List<DeploymentActionImpl> deploymentActions
-
globalRollback
boolean globalRollback
-
gracefulShutdownPeriod
long gracefulShutdownPeriod
-
shutdown
boolean shutdown
-
uuid
UUID uuid
-
-
Class org.jboss.as.controller.client.helpers.standalone.impl.DeploymentPlanResultImpl extends Object implements Serializable
- serialVersionUID:
- -2473360314683299361L
-
Serialized Fields
-
actionResults
Map<UUID,ServerDeploymentActionResult> actionResults
-
planId
UUID planId
-
-
-
Package org.jboss.as.naming
-
Class org.jboss.as.naming.ImmediateManagedReference extends Object implements Serializable
-
Serialized Fields
-
instance
Object instance
-
-
-
Class org.jboss.as.naming.NamingPermission extends BasicPermission implements Serializable
-
Class org.jboss.as.naming.RequireResolveException extends NamingException implements Serializable
-
Serialized Fields
-
resolve
Name resolve
-
-
-
Class org.jboss.as.naming.ValueManagedReferenceFactory.ValueManagedReference extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
instance
Object instance
-
-
-
Package org.jboss.as.naming.context
-
Class org.jboss.as.naming.context.ModularReference extends Reference implements Serializable
- serialVersionUID:
- -4805781394834948096L
-
Serialized Fields
-
moduleIdentifier
org.jboss.modules.ModuleIdentifier moduleIdentifier
-
-
-
Package org.jboss.as.naming.deployment
-
Class org.jboss.as.naming.deployment.DuplicateBindingException extends Exception implements Serializable
- serialVersionUID:
- 131033218044790395L
-
Class org.jboss.as.naming.deployment.JndiName extends Object implements Serializable
- serialVersionUID:
- 3748117883355718029L
-
-
Package org.jboss.as.naming.logging
-
Class org.jboss.as.naming.logging.NamingLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_de extends NamingLogger_$logger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_es extends NamingLogger_$logger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_es_ES extends NamingLogger_$logger_es implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_fr extends NamingLogger_$logger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_ja extends NamingLogger_$logger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_pt extends NamingLogger_$logger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_pt_BR extends NamingLogger_$logger_pt implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_zh extends NamingLogger_$logger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.as.naming.logging.NamingLogger_$logger_zh_CN extends NamingLogger_$logger_zh implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.jboss.as.naming.util
-
Class org.jboss.as.naming.util.FastCopyHashMap extends AbstractMap<K,V> implements Serializable
- serialVersionUID:
- 10929568968762L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream s) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
loadFactor
float loadFactor
The user defined load factor which defines when to resize
-
-
-
Package org.jboss.dmr
-
Class org.jboss.dmr.ModelNode extends Object implements Serializable
- serialVersionUID:
- 2030456323088551487L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException
Read this node's content in binary format from the given source.- Throws:
IOException
- if an I/O error occurs
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
Write this node's content in binary format to the given target.- Throws:
IOException
- if an I/O error occurs
-
-
Class org.jboss.dmr.ValueExpression extends Object implements Serializable
- serialVersionUID:
- -277358532170444708L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException
Deserialize this instance.- Throws:
IOException
- if a serialization error occurs
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
Serialize this instance.- Throws:
IOException
- if a serialization error occurs
-
-
-
Package org.jboss.dmr._private
-
Class org.jboss.dmr._private.JBossDmrLogger_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.jboss.dmr.stream
-
Class org.jboss.dmr.stream.ModelException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.jboss.ejb._private
-
Class org.jboss.ejb._private.Logs_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.jboss.ejb.client
-
Class org.jboss.ejb.client.AbstractEJBMetaData extends Object implements Serializable
- serialVersionUID:
- -5391231161942555933L
-
Class org.jboss.ejb.client.Affinity extends Object implements Serializable
- serialVersionUID:
- -2985180758368879373L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-
Class org.jboss.ejb.client.BasicSessionID extends SessionID implements Serializable
- serialVersionUID:
- -7306257085240447972L
-
Class org.jboss.ejb.client.ClusterAffinity extends Affinity implements Serializable
- serialVersionUID:
- -8078602613739377911L
-
Serialized Fields
-
clusterName
String clusterName
-
-
Class org.jboss.ejb.client.EJBClientPermission extends AbstractNameSetOnlyPermission<EJBClientPermission> implements Serializable
- serialVersionUID:
- 8406360684253911321L
-
Class org.jboss.ejb.client.EJBHandle extends Object implements Serializable
- serialVersionUID:
- -4870688692508067759L
-
Serialized Fields
-
locator
EJBLocator<T extends EJBObject> locator
-
-
Class org.jboss.ejb.client.EJBHomeHandle extends Object implements Serializable
- serialVersionUID:
- -4870688692508067759L
-
Serialized Fields
-
locator
EJBHomeLocator<T extends EJBHome> locator
-
-
Class org.jboss.ejb.client.EJBHomeLocator extends EJBLocator<T extends EJBHome> implements Serializable
- serialVersionUID:
- -3040039191221970094L
-
Class org.jboss.ejb.client.EJBIdentifier extends Object implements Serializable
- serialVersionUID:
- 7065644117552778408L
-
Serialized Fields
-
beanName
String beanName
-
moduleIdentifier
EJBModuleIdentifier moduleIdentifier
-
-
Class org.jboss.ejb.client.EJBLocator extends Object implements Serializable
- serialVersionUID:
- -7306257085240447972L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws ClassNotFoundException, IOException
- Throws:
ClassNotFoundException
IOException
-
writeObject
private void writeObject(ObjectOutputStream oos) throws IOException
- Throws:
IOException
-
-
Class org.jboss.ejb.client.EJBMetaDataImpl extends Object implements Serializable
- serialVersionUID:
- 100581743643837404L
-
Class org.jboss.ejb.client.EJBMethodLocator extends Object implements Serializable
- serialVersionUID:
- -1387266421025030533L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-
Serialized Fields
-
Class org.jboss.ejb.client.EJBModuleIdentifier extends Object implements Serializable
- serialVersionUID:
- 6743739852843753760L
-
Class org.jboss.ejb.client.EntityEJBLocator extends EJBLocator<T extends EJBObject> implements Serializable
- serialVersionUID:
- 6674116259124568398L
-
Serialized Fields
-
primaryKey
Object primaryKey
-
-
Class org.jboss.ejb.client.EntityEJBMetaData extends AbstractEJBMetaData<T extends EJBObject,H extends EJBHome> implements Serializable
- serialVersionUID:
- 5985601714593841885L
-
Serialized Fields
-
primaryKeyClass
Class<?> primaryKeyClass
-
-
Class org.jboss.ejb.client.NodeAffinity extends Affinity implements Serializable
- serialVersionUID:
- -1241023739831847480L
-
Serialized Fields
-
nodeName
String nodeName
-
-
Class org.jboss.ejb.client.RemoteEJBPermission extends AbstractBooleanPermission<RemoteEJBPermission> implements Serializable
-
Class org.jboss.ejb.client.RequestSendFailedException extends EJBException implements Serializable
- serialVersionUID:
- 4880994720537464175L
-
Serialized Fields
-
canBeRetried
boolean canBeRetried
-
-
Class org.jboss.ejb.client.SerializedEJBInvocationHandler extends Object implements Serializable
- serialVersionUID:
- -2370168183054746652L
-
Serialization Methods
-
readExternal
public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException
Read this object from the input stream.- Throws:
IOException
- if a read error occursClassNotFoundException
- if a class cannot be resolved
-
writeExternal
public void writeExternal(ObjectOutput out) throws IOException
Write this object to the output stream.- Throws:
IOException
- if a write error occurs
-
-
Class org.jboss.ejb.client.SessionID extends Object implements Serializable
- serialVersionUID:
- 3872192729805797520L
-
Serialization Methods
-
writeReplace
protected final Object writeReplace()
Substitute this session ID with a serialized representation.
-
-
Serialized Fields
-
encodedForm
byte[] encodedForm
-
-
Class org.jboss.ejb.client.SessionID.Serialized extends Object implements Serializable
- serialVersionUID:
- -6014782612354158572L
-
Serialization Methods
-
readResolve
protected Object readResolve()
Reconstitute the session ID from this serialized representation.
-
-
Serialized Fields
-
id
byte[] id
The bytes of the session ID.
-
-
Class org.jboss.ejb.client.StatefulEJBLocator extends EJBLocator<T> implements Serializable
- serialVersionUID:
- 8229686118358785586L
-
Serialized Fields
-
sessionId
SessionID sessionId
-
-
Class org.jboss.ejb.client.StatefulEJBMetaData extends AbstractEJBMetaData<T extends EJBObject,H extends EJBHome> implements Serializable
- serialVersionUID:
- 8596216068022888027L
-
Class org.jboss.ejb.client.StatelessEJBLocator extends EJBLocator<T> implements Serializable
- serialVersionUID:
- -3040039191221970094L
-
Class org.jboss.ejb.client.StatelessEJBMetaData extends AbstractEJBMetaData<T extends EJBObject,H extends EJBHome> implements Serializable
- serialVersionUID:
- 8596216068022888027L
-
Class org.jboss.ejb.client.TransactionID extends Object implements Serializable
- serialVersionUID:
- 7711835471353644411L
-
Serialization Methods
-
writeReplace
protected final Object writeReplace()
Deprecated.Substitute this transaction ID with a serialized representation.
-
-
Serialized Fields
-
encodedForm
byte[] encodedForm
Deprecated.
-
-
Class org.jboss.ejb.client.TransactionID.Serialized extends Object implements Serializable
- serialVersionUID:
- -8146407206244018476L
-
Serialization Methods
-
readResolve
protected Object readResolve()
Reconstitute the transaction ID from this serialized representation.
-
-
Serialized Fields
-
id
byte[] id
The bytes of the transaction ID.
-
-
Class org.jboss.ejb.client.UnknownSessionID extends SessionID implements Serializable
- serialVersionUID:
- 8565847732676192265L
-
Class org.jboss.ejb.client.URIAffinity extends Affinity implements Serializable
- serialVersionUID:
- -8437624625197058354L
-
Class org.jboss.ejb.client.UserTransactionID extends TransactionID implements Serializable
- serialVersionUID:
- -791647046784989955L
-
Serialized Fields
-
id
int id
Deprecated. -
nodeName
String nodeName
Deprecated.
-
-
Class org.jboss.ejb.client.UUIDSessionID extends SessionID implements Serializable
- serialVersionUID:
- -7306257085240447972L
-
Serialized Fields
-
uuid
UUID uuid
-
-
Class org.jboss.ejb.client.XidTransactionID extends TransactionID implements Serializable
- serialVersionUID:
- -1895745528459825578L
-
Serialized Fields
-
xid
Xid xid
Deprecated.
-
-
-
Package org.jboss.jaxb.intros
-
Class org.jboss.jaxb.intros.ConfigurationException extends RuntimeException implements Serializable
- serialVersionUID:
- -1332063136124847578L
-
-
Package org.jboss.logging
-
Class org.jboss.logging.DelegatingBasicLogger extends Object implements Serializable
- serialVersionUID:
- -5774903162389601853L
-
Serialized Fields
-
log
Logger log
The delegate logger.
-
-
Class org.jboss.logging.Logger extends Object implements Serializable
- serialVersionUID:
- 4232175575988879434L
-
-
Package org.jboss.logmanager
-
Class org.jboss.logmanager.ExtLogRecord extends LogRecord implements Serializable
- serialVersionUID:
- -9174374711278052369L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream oos) throws IOException
- Throws:
IOException
-
-
Serialized Fields
-
formatStyle
ExtLogRecord.FormatStyle formatStyle
-
formattedMessage
String formattedMessage
-
hostName
String hostName
-
mdcCopy
org.jboss.logmanager.FastCopyHashMap<String,Object> mdcCopy
-
ndc
String ndc
-
processId
long processId
-
processName
String processName
-
resourceKey
String resourceKey
-
sourceFileName
String sourceFileName
-
sourceLineNumber
int sourceLineNumber
-
sourceModuleName
String sourceModuleName
-
sourceModuleVersion
String sourceModuleVersion
-
threadName
String threadName
-
-
Class org.jboss.logmanager.Level extends Level implements Serializable
- serialVersionUID:
- 491981186783136939L
-
Class org.jboss.logmanager.Logger extends Logger implements Serializable
- serialVersionUID:
- 5093333069125075416L
-
Serialization Methods
-
writeReplace
protected final Object writeReplace() throws ObjectStreamException
- Throws:
ObjectStreamException
-
-
Serialized Fields
-
loggerNode
org.jboss.logmanager.LoggerNode loggerNode
The named logger tree node.
-
-
Class org.jboss.logmanager.SerializedLogger extends Object implements Serializable
- serialVersionUID:
- 8266206989821750874L
-
Serialization Methods
-
readResolve
public Object readResolve()
Get the actual logger for this marker.- See Also:
- Serialization spec, 3.7
-
-
Serialized Fields
-
name
String name
-
-
-
Package org.jboss.msc.inject
-
Class org.jboss.msc.inject.InjectionException extends RuntimeException implements Serializable
- serialVersionUID:
- 6413200398685740543L
-
-
Package org.jboss.msc.service
-
Class org.jboss.msc.service.CircularDependencyException extends ServiceRegistryException implements Serializable
- serialVersionUID:
- -4826336558749601678L
-
Serialized Fields
-
cycle
ServiceName[] cycle
-
-
Class org.jboss.msc.service.DuplicateServiceException extends ServiceRegistryException implements Serializable
- serialVersionUID:
- 6000994512503219841L
-
Class org.jboss.msc.service.ServiceLogger_$logger extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
log
Logger log
-
-
Class org.jboss.msc.service.ServiceName extends Object implements Serializable
- serialVersionUID:
- 2336190201880964151L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws ClassNotFoundException, IOException
- Throws:
ClassNotFoundException
IOException
-
-
Serialized Fields
-
canonicalName
String canonicalName
-
name
String name
-
parent
ServiceName parent
-
-
Class org.jboss.msc.service.ServiceNotFoundException extends ServiceRegistryException implements Serializable
- serialVersionUID:
- -3145569397301460220L
-
Class org.jboss.msc.service.ServiceRegistryException extends RuntimeException implements Serializable
- serialVersionUID:
- -8431095020967798064L
-
Class org.jboss.msc.service.StartException extends Exception implements Serializable
- serialVersionUID:
- 239274385917008839L
-
Serialized Fields
-
serviceName
ServiceName serviceName
-
-
-
Package org.jboss.msc.service.management
-
Class org.jboss.msc.service.management.ServiceStatus extends Object implements Serializable
- serialVersionUID:
- 6538576441150451665L
-
Serialized Fields
-
aliases
String[] aliases
-
dependencies
String[] dependencies
-
dependencyFailed
boolean dependencyFailed
-
dependencyUnavailable
boolean dependencyUnavailable
-
exception
String exception
-
modeName
String modeName
-
parentName
String parentName
-
serviceClassName
String serviceClassName
-
serviceName
String serviceName
-
stateName
String stateName
-
substateName
String substateName
-
-
-
Package org.jboss.resteasy.api.validation
-
Class org.jboss.resteasy.api.validation.ResteasyConstraintViolation extends Object implements Serializable
- serialVersionUID:
- -5441628046215135260L
-
Serialized Fields
-
constraintType
ConstraintType.Type constraintType
-
message
String message
-
path
String path
-
value
String value
-
-
Class org.jboss.resteasy.api.validation.ResteasyViolationException extends ConstraintViolationException implements Serializable
- serialVersionUID:
- 2623733139912277260L
-
Serialized Fields
-
accept
List<org.jboss.resteasy.api.validation.ResteasyViolationException.CloneableMediaType> accept
-
allViolations
List<ResteasyConstraintViolation> allViolations
-
classViolations
List<ResteasyConstraintViolation> classViolations
-
exception
Exception exception
-
parameterViolations
List<ResteasyConstraintViolation> parameterViolations
-
propertyViolations
List<ResteasyConstraintViolation> propertyViolations
-
returnValueViolations
List<ResteasyConstraintViolation> returnValueViolations
-
suppressPath
boolean suppressPath
-
violationLists
List<List<ResteasyConstraintViolation>> violationLists
-
-
Class org.jboss.resteasy.api.validation.SimpleViolationsContainer extends Object implements Serializable
- serialVersionUID:
- -7895854137980651540L
-
Serialized Fields
-
exception
Exception exception
-
fieldsValidated
boolean fieldsValidated
-
target
Object target
-
violations
Set<ConstraintViolation<Object>> violations
-
-
-
Package org.jboss.resteasy.client.exception
-
Class org.jboss.resteasy.client.exception.ResteasyBadRequestException extends BadRequestException implements Serializable
- serialVersionUID:
- -6250430572164780061L
-
Serialized Fields
-
wrapped
BadRequestException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyClientErrorException extends ClientErrorException implements Serializable
- serialVersionUID:
- 6839671465938091898L
-
Serialized Fields
-
wrapped
ClientErrorException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyForbiddenException extends ForbiddenException implements Serializable
- serialVersionUID:
- -581285336820307590L
-
Serialized Fields
-
wrapped
ForbiddenException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyInternalServerErrorException extends InternalServerErrorException implements Serializable
- serialVersionUID:
- 5293921582428847923L
-
Serialized Fields
-
wrapped
InternalServerErrorException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyNotAcceptableException extends NotAcceptableException implements Serializable
- serialVersionUID:
- 5369100091818187044L
-
Serialized Fields
-
wrapped
NotAcceptableException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyNotAllowedException extends NotAllowedException implements Serializable
- serialVersionUID:
- -6319306078354018353L
-
Serialized Fields
-
wrapped
NotAllowedException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyNotAuthorizedException extends NotAuthorizedException implements Serializable
- serialVersionUID:
- 7034604450379314101L
-
Serialized Fields
-
wrapped
NotAuthorizedException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyNotFoundException extends NotFoundException implements Serializable
- serialVersionUID:
- 8915809730318765630L
-
Serialized Fields
-
wrapped
NotFoundException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyNotSupportedException extends NotSupportedException implements Serializable
- serialVersionUID:
- 6195843283913647466L
-
Serialized Fields
-
wrapped
NotSupportedException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyRedirectionException extends RedirectionException implements Serializable
- serialVersionUID:
- 8815768802777099877L
-
Serialized Fields
-
wrapped
RedirectionException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyServerErrorException extends ServerErrorException implements Serializable
- serialVersionUID:
- 8591476266091129117L
-
Serialized Fields
-
wrapped
ServerErrorException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyServiceUnavailableException extends ServiceUnavailableException implements Serializable
- serialVersionUID:
- -4477873328299557209L
-
Serialized Fields
-
wrapped
ServiceUnavailableException wrapped
-
-
Class org.jboss.resteasy.client.exception.ResteasyWebApplicationException extends WebApplicationException implements Serializable
- serialVersionUID:
- -8805699073882024461L
-
Serialized Fields
-
wrapped
WebApplicationException wrapped
-
-
-
Package org.jboss.resteasy.client.jaxrs.cache
-
Class org.jboss.resteasy.client.jaxrs.cache.BrowserCache.Header extends Object implements Serializable
- serialVersionUID:
- 4145981086454860081L
-
Class org.jboss.resteasy.client.jaxrs.cache.CacheEntry extends Object implements Serializable
- serialVersionUID:
- -1922521972113619372L
-
Serialized Fields
-
cached
byte[] cached
-
expires
int expires
-
extendedProperties
Map<Serializable,Serializable> extendedProperties
-
headers
MultivaluedMap<String,String> headers
-
key
String key
-
mediaType
String mediaType
-
timestamp
long timestamp
-
validationHeaders
BrowserCache.Header[] validationHeaders
-
-
-
Package org.jboss.resteasy.client.jaxrs.i18n
-
Class org.jboss.resteasy.client.jaxrs.i18n.LogMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.resteasy.client.jaxrs.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.resteasy.client.jaxrs.spi
-
Class org.jboss.resteasy.client.jaxrs.spi.ClientConfigException extends RuntimeException implements Serializable
-
-
Package org.jboss.resteasy.core
-
Class org.jboss.resteasy.core.ExceptionAdapter extends RuntimeException implements Serializable
- serialVersionUID:
- 6628087350457915908L
-
Class org.jboss.resteasy.core.Headers extends CaseInsensitiveMap<V> implements Serializable
-
Class org.jboss.resteasy.core.NoMessageBodyWriterFoundFailure extends LoggableFailure implements Serializable
-
-
Package org.jboss.resteasy.core.request
-
Class org.jboss.resteasy.core.request.QualityValue extends Number implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
WEIGHT
int WEIGHT
-
-
-
Package org.jboss.resteasy.jsapi
-
Class org.jboss.resteasy.jsapi.JSAPIServlet extends HttpServlet implements Serializable
- serialVersionUID:
- -1985015444704126795L
-
Serialized Fields
-
apiWriter
JSAPIWriter apiWriter
-
services
Map<String,ServiceRegistry> services
-
-
-
Package org.jboss.resteasy.jsapi.i18n
-
Class org.jboss.resteasy.jsapi.i18n.LogMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.resteasy.jsapi.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.resteasy.plugins.delegates
-
Class org.jboss.resteasy.plugins.delegates.ServerCookie extends Object implements Serializable
-
-
Package org.jboss.resteasy.plugins.providers
-
Class org.jboss.resteasy.plugins.providers.FileRangeException extends WebApplicationException implements Serializable
- serialVersionUID:
- -5615796352743435769L
-
-
Package org.jboss.resteasy.plugins.providers.atom.app
-
Class org.jboss.resteasy.plugins.providers.atom.app.AppAccept extends AppCommonAttributes implements Serializable
- serialVersionUID:
- 8792589507058023990L
-
Serialized Fields
-
content
String content
-
-
Class org.jboss.resteasy.plugins.providers.atom.app.AppCategories extends AppCommonAttributes implements Serializable
- serialVersionUID:
- 7978145545675525082L
-
Class org.jboss.resteasy.plugins.providers.atom.app.AppCollection extends AppCommonAttributes implements Serializable
- serialVersionUID:
- 3466473348035916400L
-
Class org.jboss.resteasy.plugins.providers.atom.app.AppCommonAttributes extends Object implements Serializable
- serialVersionUID:
- -6132753912772236190L
-
Class org.jboss.resteasy.plugins.providers.atom.app.AppService extends AppCommonAttributes implements Serializable
- serialVersionUID:
- 1090747778031855442L
-
Serialized Fields
-
workspace
List<AppWorkspace> workspace
-
-
Class org.jboss.resteasy.plugins.providers.atom.app.AppWorkspace extends AppCommonAttributes implements Serializable
- serialVersionUID:
- -2595744438212041512L
-
Serialized Fields
-
any
List<Object> any
-
collection
List<AppCollection> collection
-
title
String title
-
-
-
Package org.jboss.resteasy.plugins.providers.jaxb
-
Class org.jboss.resteasy.plugins.providers.jaxb.JAXBMarshalException extends WriterException implements Serializable
-
Class org.jboss.resteasy.plugins.providers.jaxb.JAXBUnmarshalException extends ReaderException implements Serializable
-
-
Package org.jboss.resteasy.plugins.providers.jaxb.i18n
-
Class org.jboss.resteasy.plugins.providers.jaxb.i18n.LogMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.resteasy.plugins.providers.jaxb.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.resteasy.plugins.providers.multipart.i18n
-
Class org.jboss.resteasy.plugins.providers.multipart.i18n.LogMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.resteasy.plugins.providers.multipart.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.resteasy.plugins.providers.resteasy_atom.i18n
-
Class org.jboss.resteasy.plugins.providers.resteasy_atom.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.resteasy.plugins.server.servlet
-
Class org.jboss.resteasy.plugins.server.servlet.HttpServlet30Dispatcher extends HttpServletDispatcher implements Serializable
-
Serialized Fields
-
asyncCancelScheduler
ScheduledExecutorService asyncCancelScheduler
-
-
-
Class org.jboss.resteasy.plugins.server.servlet.HttpServletDispatcher extends HttpServlet implements Serializable
-
Serialized Fields
-
servletContainerDispatcher
ServletContainerDispatcher servletContainerDispatcher
-
-
-
-
Package org.jboss.resteasy.plugins.validation
-
Class org.jboss.resteasy.plugins.validation.ResteasyViolationExceptionImpl extends ResteasyViolationException implements Serializable
- serialVersionUID:
- 657697354453281559L
-
Class org.jboss.resteasy.plugins.validation.SimpleViolationsContainer extends SimpleViolationsContainer implements Serializable
- serialVersionUID:
- -7895854137980651539L
-
Serialized Fields
-
parametersValidated
boolean parametersValidated
-
util
ConstraintTypeUtilImpl util
-
-
-
Package org.jboss.resteasy.plugins.validation.i18n
-
Class org.jboss.resteasy.plugins.validation.i18n.LogMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.resteasy.plugins.validation.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.resteasy.resteasy_jaxrs.i18n
-
Class org.jboss.resteasy.resteasy_jaxrs.i18n.LogMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.resteasy.resteasy_jaxrs.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.resteasy.specimpl
-
Package org.jboss.resteasy.spi
-
Class org.jboss.resteasy.spi.ApplicationException extends RuntimeException implements Serializable
-
Class org.jboss.resteasy.spi.BadRequestException extends Failure implements Serializable
-
Class org.jboss.resteasy.spi.DefaultOptionsMethodException extends Failure implements Serializable
-
Class org.jboss.resteasy.spi.Failure extends RuntimeException implements Serializable
-
Serialized Fields
-
errorCode
int errorCode
-
loggable
boolean loggable
-
response
Response response
-
-
-
Class org.jboss.resteasy.spi.InternalServerErrorException extends LoggableFailure implements Serializable
-
Class org.jboss.resteasy.spi.LoggableFailure extends Failure implements Serializable
-
Class org.jboss.resteasy.spi.NoLogWebApplicationException extends WebApplicationException implements Serializable
-
Class org.jboss.resteasy.spi.NotImplementedYetException extends RuntimeException implements Serializable
-
Class org.jboss.resteasy.spi.ReaderException extends Failure implements Serializable
-
Class org.jboss.resteasy.spi.UnhandledException extends RuntimeException implements Serializable
-
Class org.jboss.resteasy.spi.WriterException extends LoggableFailure implements Serializable
-
-
Package org.jboss.resteasy.spi.config.security
-
Class org.jboss.resteasy.spi.config.security.ConfigPropertyPermission extends BasicPermission implements Serializable
-
-
Package org.jboss.resteasy.util
-
Class org.jboss.resteasy.util.CaseInsensitiveMap extends MultivaluedTreeMap<String,V> implements Serializable
-
Class org.jboss.resteasy.util.DateUtil.DateParseException extends RuntimeException implements Serializable
-
-
Package org.jboss.weld.context.activator
-
Class org.jboss.weld.context.activator.ActivateRequestContext.Literal extends AnnotationLiteral<ActivateRequestContext> implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.jboss.weld.context.bound
-
Class org.jboss.weld.context.bound.BoundLiteral extends AnnotationLiteral<Bound> implements Serializable
-
-
Package org.jboss.weld.context.ejb
-
Class org.jboss.weld.context.ejb.EjbLiteral extends AnnotationLiteral<Ejb> implements Serializable
-
-
Package org.jboss.weld.context.http
-
Class org.jboss.weld.context.http.HttpLiteral extends AnnotationLiteral<Http> implements Serializable
-
-
Package org.jboss.weld.context.unbound
-
Class org.jboss.weld.context.unbound.UnboundLiteral extends AnnotationLiteral<Unbound> implements Serializable
-
-
Package org.jboss.ws.api
-
Class org.jboss.ws.api.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.ws.api.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jboss.ws.api.binding
-
Class org.jboss.ws.api.binding.BindingCustomization extends HashMap implements Serializable
-
Class org.jboss.ws.api.binding.JAXBBindingCustomization extends BindingCustomization implements Serializable
- serialVersionUID:
- 5547146387872057974L
-
-
Package org.jboss.ws.api.monitoring
-
Package org.jboss.wsf.stack.cxf.i18n
-
Class org.jboss.wsf.stack.cxf.i18n.Loggers_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.jboss.wsf.stack.cxf.i18n.Messages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.jvnet.staxex.util
-
Class org.jvnet.staxex.util.FinalArrayList extends ArrayList<T> implements Serializable
- serialVersionUID:
- 1848322681043875368L
-
-
Package org.slf4j
-
Package org.slf4j.event
-
Class org.slf4j.event.EventRecordingLogger extends LegacyAbstractLogger implements Serializable
- serialVersionUID:
- -176083308134819629L
-
Serialized Fields
-
eventQueue
Queue<SubstituteLoggingEvent> eventQueue
-
logger
SubstituteLogger logger
-
name
String name
-
-
-
Package org.slf4j.helpers
-
Class org.slf4j.helpers.AbstractLogger extends Object implements Serializable
- serialVersionUID:
- -2529255052481744503L
-
Serialization Methods
-
readResolve
protected Object readResolve() throws ObjectStreamException
Replace this instance with a homonymous (same name) logger returned by LoggerFactory. Note that this method is only called during deserialization.This approach will work well if the desired ILoggerFactory is the one referenced by
LoggerFactory
However, if the user manages its logger hierarchy through a different (non-static) mechanism, e.g. dependency injection, then this approach would be mostly counterproductive.- Throws:
ObjectStreamException
-
-
Serialized Fields
-
name
String name
-
-
Class org.slf4j.helpers.BasicMarker extends Object implements Serializable
- serialVersionUID:
- -2849567615646933777L
-
Class org.slf4j.helpers.LegacyAbstractLogger extends AbstractLogger implements Serializable
- serialVersionUID:
- -7041884104854048950L
-
Class org.slf4j.helpers.MarkerIgnoringBase extends org.slf4j.helpers.NamedLoggerBase implements Serializable
- serialVersionUID:
- 9044267456635152283L
-
Class org.slf4j.helpers.NOPLogger extends org.slf4j.helpers.NamedLoggerBase implements Serializable
- serialVersionUID:
- -517220405410904473L
-
-
Package org.wildfly.client.config
-
Class org.wildfly.client.config.ConfigXMLParseException extends XMLStreamException implements Serializable
- serialVersionUID:
- -1880381457871462141L
-
-
Package org.wildfly.client.config._private
-
Class org.wildfly.client.config._private.ConfigMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.wildfly.clustering.dispatcher
-
Class org.wildfly.clustering.dispatcher.CommandDispatcherException extends Exception implements Serializable
- serialVersionUID:
- 3984965224844057380L
-
-
Package org.wildfly.common._private
-
Class org.wildfly.common._private.CommonMessages_$bundle extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialization Methods
-
readResolve
protected Object readResolve()
-
-
-
Package org.wildfly.common.codec
-
Class org.wildfly.common.codec.DecodeException extends IllegalArgumentException implements Serializable
- serialVersionUID:
- 5823281980783313991L
-
-
Package org.wildfly.common.context
-
Class org.wildfly.common.context.ContextPermission extends Permission implements Serializable
- serialVersionUID:
- 2149744699461086708L
-
-
Package org.wildfly.common.net
-
Class org.wildfly.common.net.CidrAddress extends Object implements Serializable
- serialVersionUID:
- -6548529324373774149L
-
Serialization Methods
-
writeReplace
Object writeReplace()
-
-
Serialized Fields
-
broadcast
Inet4Address broadcast
-
cachedBytes
byte[] cachedBytes
-
hashCode
int hashCode
-
netmaskBits
int netmaskBits
-
networkAddress
InetAddress networkAddress
-
toString
String toString
-
-
-
Package org.wildfly.common.ref
-
Class org.wildfly.common.ref.Log_$logger extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
log
Logger log
-
-
-
Package org.wildfly.common.rpc
-
Package org.wildfly.common.selector
-
Class org.wildfly.common.selector.SelectorPermission extends BasicPermission implements Serializable
- serialVersionUID:
- -7156787601824624014L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-
Serialized Fields
-
actions
int actions
-
-
-
Package org.wildfly.common.string
-
Class org.wildfly.common.string.CompositeCharSequence extends Object implements Serializable
- serialVersionUID:
- 4975968165050531721L
-
Serialized Fields
-
sequences
List<CharSequence> sequences
-
-
-
Package org.wildfly.common.xml
-
Class org.wildfly.common.xml.Log_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.httpclient.common
-
Class org.wildfly.httpclient.common.HttpClientMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.httpclient.ejb
-
Class org.wildfly.httpclient.ejb.EjbHttpClientMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.httpclient.naming
-
Class org.wildfly.httpclient.naming.HttpNamingClientMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.httpclient.transaction
-
Class org.wildfly.httpclient.transaction.HttpRemoteTransactionMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.naming.client
-
Class org.wildfly.naming.client.ExhaustedDestinationsException extends CommunicationException implements Serializable
-
Class org.wildfly.naming.client.RenameAcrossNamingProvidersException extends NamingException implements Serializable
- serialVersionUID:
- 6820573189877186422L
-
Class org.wildfly.naming.client.SimpleName extends Object implements Serializable
- serialVersionUID:
- -91630190623885257L
-
-
Package org.wildfly.naming.client._private
-
Class org.wildfly.naming.client._private.Messages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.naming.client.util
-
Class org.wildfly.naming.client.util.FastHashtable extends Hashtable<K,V> implements Serializable
- serialVersionUID:
- 85183000443454665L
-
Serialized Fields
-
backingMap
ConcurrentHashMap<K,V> backingMap
-
-
-
Package org.wildfly.naming.java.permission
-
Class org.wildfly.naming.java.permission.JndiPermission extends Permission implements Serializable
- serialVersionUID:
- 1272655825146515997L
-
-
Package org.wildfly.naming.security
-
Class org.wildfly.naming.security.AbstractNamingPermission extends AbstractActionSetPermission<This extends AbstractNamingPermission<This>> implements Serializable
- serialVersionUID:
- -2355041296353728334L
-
Serialized Fields
-
simpleName
SimpleName simpleName
-
-
Class org.wildfly.naming.security.AbstractSimpleNamePermission extends AbstractNamedPermission<This extends AbstractSimpleNamePermission<This>> implements Serializable
- serialVersionUID:
- -1008993794534492843L
-
-
Package org.wildfly.security
-
Class org.wildfly.security.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.EmptyProvider extends Provider implements Serializable
- serialVersionUID:
- 2185633278059382100L
-
Class org.wildfly.security.VersionedProvider extends Provider implements Serializable
- serialVersionUID:
- 6973461237113228162L
-
Class org.wildfly.security.WildFlyElytronBaseProvider extends VersionedProvider implements Serializable
-
Class org.wildfly.security.WildFlyElytronDigestProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 2531323760912222262L
-
Class org.wildfly.security.WildFlyElytronHttpBasicProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 3029961619967561017L
-
Class org.wildfly.security.WildFlyElytronHttpBearerProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -797775107834905210L
-
Class org.wildfly.security.WildFlyElytronHttpClientCertProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -4105163673151031877L
-
Class org.wildfly.security.WildFlyElytronHttpDigestProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 7343476391300211681L
-
Class org.wildfly.security.WildFlyElytronHttpFormProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 3872696509387755963L
-
Class org.wildfly.security.WildFlyElytronHttpSpnegoProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 9211317885580156246L
-
Class org.wildfly.security.WildFlyElytronProvider extends VersionedProvider implements Serializable
- serialVersionUID:
- 1267015094996624988L
-
-
Package org.wildfly.security.asn1
-
Class org.wildfly.security.asn1.ASN1Exception extends IllegalArgumentException implements Serializable
- serialVersionUID:
- -271763067357014400L
-
Class org.wildfly.security.asn1.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.audit
-
Class org.wildfly.security.audit.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth
-
Class org.wildfly.security.auth.AuthenticationException extends IOException implements Serializable
- serialVersionUID:
- -1038330178933137221L
-
Class org.wildfly.security.auth.ReauthenticationException extends SecurityException implements Serializable
- serialVersionUID:
- 6765807441459168511L
-
-
Package org.wildfly.security.auth.callback
-
Class org.wildfly.security.auth.callback.AnonymousAuthorizationCallback extends Object implements Serializable
- serialVersionUID:
- -6532813145396004679L
-
Serialized Fields
-
authorizationInfo
String authorizationInfo
The authorization information from the client. -
authorized
boolean authorized
The authorization result flag.
-
-
Class org.wildfly.security.auth.callback.AuthenticationCompleteCallback extends Object implements Serializable
- serialVersionUID:
- -8336218311376736914L
-
Serialization Methods
-
readResolve
Object readResolve()
Replace the deserialized instance with the sppropriate singleton instance.
-
-
Serialized Fields
-
success
boolean success
The flag indicating whether the authentication was successful.
-
-
Class org.wildfly.security.auth.callback.ChannelBindingCallback extends Object implements Serializable
- serialVersionUID:
- 779300207924589036L
-
Serialized Fields
-
bindingData
byte[] bindingData
The channel binding data. -
bindingType
String bindingType
The channel binding type.
-
-
Class org.wildfly.security.auth.callback.ExclusiveNameCallback extends NameCallback implements Serializable
- serialVersionUID:
- 3332866436399055886L
-
Serialized Fields
-
exclusiveAccess
boolean exclusiveAccess
A flag indicating whether exclusive access to the backing identity was granted. -
needsExclusiveAccess
boolean needsExclusiveAccess
A flag indicating whether exclusive access to the backing identity is required. -
optional
boolean optional
A flag indicating whether the callback is optional.
-
-
Class org.wildfly.security.auth.callback.ExtendedChoiceCallback extends ChoiceCallback implements Serializable
- serialVersionUID:
- 2222777746412093737L
-
Serialized Fields
-
optional
boolean optional
A flag indicating whether the callback is optional.
-
-
Class org.wildfly.security.auth.callback.FastUnsupportedCallbackException extends UnsupportedCallbackException implements Serializable
- serialVersionUID:
- -990072831042809709L
-
Class org.wildfly.security.auth.callback.OptionalNameCallback extends NameCallback implements Serializable
- serialVersionUID:
- 1848637046120873969L
-
Class org.wildfly.security.auth.callback.ParameterCallback extends Object implements Serializable
- serialVersionUID:
- -6000106115779144082L
-
Serialized Fields
-
allowedTypes
Class<? extends AlgorithmParameterSpec>[] allowedTypes
The list of allowed parameter specification types. -
parameterSpec
AlgorithmParameterSpec parameterSpec
The algorithm parameter specification.
-
-
Class org.wildfly.security.auth.callback.PasswordResetCallback extends Object implements Serializable
- serialVersionUID:
- -8789058459408593766L
-
Serialized Fields
-
password
char[] password
-
prompt
String prompt
-
-
Class org.wildfly.security.auth.callback.PeerPrincipalCallback extends Object implements Serializable
- serialVersionUID:
- -2876104318406026491L
-
Serialized Fields
-
principal
Principal principal
The peer principal.
-
-
Class org.wildfly.security.auth.callback.SecurityLayerDisposedCallback extends Object implements Serializable
- serialVersionUID:
- 3720690487735346163L
-
Class org.wildfly.security.auth.callback.SocketAddressCallback extends Object implements Serializable
- serialVersionUID:
- -4287450716990929230L
-
Serialized Fields
-
address
SocketAddress address
The socket address. -
kind
SocketAddressCallback.Kind kind
The socket address disposition or "kind".
-
-
-
Package org.wildfly.security.auth.client
-
Class org.wildfly.security.auth.client.InvalidAuthenticationConfigurationException extends IllegalArgumentException implements Serializable
- serialVersionUID:
- -6795326356890031539L
-
Class org.wildfly.security.auth.client.WildFlyElytronClientDefaultSSLContextProvider extends Provider implements Serializable
- serialVersionUID:
- -8281186085283177185L
-
-
Package org.wildfly.security.auth.client._private
-
Class org.wildfly.security.auth.client._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth.permission
-
Class org.wildfly.security.auth.permission.ChangeRoleMapperPermission extends AbstractNameOnlyPermission<ChangeRoleMapperPermission> implements Serializable
- serialVersionUID:
- -6742662884954321082L
-
Class org.wildfly.security.auth.permission.LoginPermission extends AbstractBooleanPermission<LoginPermission> implements Serializable
- serialVersionUID:
- -5776174571770792690L
-
Class org.wildfly.security.auth.permission.RunAsPrincipalPermission extends AbstractNameOnlyPermission<RunAsPrincipalPermission> implements Serializable
- serialVersionUID:
- -3361334389433669815L
-
-
Package org.wildfly.security.auth.principal
-
Class org.wildfly.security.auth.principal.AnonymousPrincipal extends Object implements Serializable
- serialVersionUID:
- -2539713938519809712L
-
Class org.wildfly.security.auth.principal.CompositePrincipal extends Object implements Serializable
- serialVersionUID:
- -2610733957848661774L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-
Serialized Fields
-
p
Principal[] p
-
-
Class org.wildfly.security.auth.principal.NamePrincipal extends Object implements Serializable
- serialVersionUID:
- -6380283371738985125L
-
Serialized Fields
-
name
String name
The principal name.
-
-
Class org.wildfly.security.auth.principal.NumericPrincipal extends Object implements Serializable
- serialVersionUID:
- 6679865697029801196L
-
Serialized Fields
-
id
long id
the principal ID
-
-
Class org.wildfly.security.auth.principal.RealmNestedPrincipal extends Object implements Serializable
- serialVersionUID:
- 3776427564561628331L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException
- Throws:
IOException
ClassNotFoundException
-
-
Serialized Fields
-
-
Package org.wildfly.security.auth.realm
-
Class org.wildfly.security.auth.realm.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.auth.realm.IntegrityException extends IOException implements Serializable
- serialVersionUID:
- 8889252552074803941L
-
-
Package org.wildfly.security.auth.realm.jdbc._private
-
Class org.wildfly.security.auth.realm.jdbc._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth.realm.ldap
-
Class org.wildfly.security.auth.realm.ldap.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth.realm.token._private
-
Class org.wildfly.security.auth.realm.token._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth.server
-
Class org.wildfly.security.auth.server.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.auth.server.RealmUnavailableException extends IOException implements Serializable
- serialVersionUID:
- 5893125522523952643L
-
-
Package org.wildfly.security.auth.server._private
-
Class org.wildfly.security.auth.server._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth.server.http
-
Class org.wildfly.security.auth.server.http.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth.server.sasl
-
Class org.wildfly.security.auth.server.sasl.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.auth.util
-
Class org.wildfly.security.auth.util.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.auth.util.ElytronMessages2_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.authz
-
Class org.wildfly.security.authz.AuthorizationCheckException extends AuthorizationException implements Serializable
- serialVersionUID:
- 5010607869851804099L
-
Serialized Fields
-
failedPermission
Permission failedPermission
-
-
Class org.wildfly.security.authz.AuthorizationException extends SecurityException implements Serializable
- serialVersionUID:
- 3791176860282223771L
-
Serialized Fields
-
authorizationPrincipal
Principal authorizationPrincipal
-
-
Class org.wildfly.security.authz.AuthorizationFailureException extends AuthorizationException implements Serializable
- serialVersionUID:
- -5699181816026435025L
-
-
Package org.wildfly.security.authz.jacc
-
Class org.wildfly.security.authz.jacc.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.cache
-
Package org.wildfly.security.credential._private
-
Class org.wildfly.security.credential._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.credential.source
-
Class org.wildfly.security.credential.source.ElytronMessages2_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.credential.source.impl
-
Class org.wildfly.security.credential.source.impl.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.credential.store
-
Class org.wildfly.security.credential.store.CredentialStoreException extends GeneralSecurityException implements Serializable
- serialVersionUID:
- 5868419578268270577L
-
Class org.wildfly.security.credential.store.CredentialStorePermission extends AbstractNameSetOnlyPermission<CredentialStorePermission> implements Serializable
- serialVersionUID:
- 6248622485149435793L
-
Class org.wildfly.security.credential.store.UnsupportedCredentialTypeException extends CredentialStoreException implements Serializable
- serialVersionUID:
- 8933668244130206312L
-
Class org.wildfly.security.credential.store.WildFlyElytronCredentialStoreProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -3770297685039711294L
-
-
Package org.wildfly.security.credential.store._private
-
Class org.wildfly.security.credential.store._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.digest
-
Class org.wildfly.security.digest.WildFlyElytronDigestProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 2531323760912222262L
-
-
Package org.wildfly.security.encryption
-
Class org.wildfly.security.encryption.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.http
-
Class org.wildfly.security.http.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.http.HttpAuthenticationException extends IOException implements Serializable
- serialVersionUID:
- 2920504964210220416L
-
-
Package org.wildfly.security.http.basic
-
Class org.wildfly.security.http.basic.WildFlyElytronHttpBasicProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 3029961619967561017L
-
-
Package org.wildfly.security.http.bearer
-
Class org.wildfly.security.http.bearer.WildFlyElytronHttpBearerProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -797775107834905210L
-
-
Package org.wildfly.security.http.cert
-
Class org.wildfly.security.http.cert.WildFlyElytronHttpClientCertProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -4105163673151031877L
-
-
Package org.wildfly.security.http.digest
-
Class org.wildfly.security.http.digest.WildFlyElytronHttpDigestProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 7343476391300211681L
-
-
Package org.wildfly.security.http.external
-
Class org.wildfly.security.http.external.WildFlyElytronHttpExternalProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 6923305263952210174L
-
-
Package org.wildfly.security.http.form
-
Class org.wildfly.security.http.form.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.http.form.WildFlyElytronHttpFormProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 3872696509387755963L
-
-
Package org.wildfly.security.http.spnego
-
Class org.wildfly.security.http.spnego.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.http.spnego.WildFlyElytronHttpSpnegoProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 9211317885580156246L
-
-
Package org.wildfly.security.http.util
-
Class org.wildfly.security.http.util.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.http.util.sso
-
Class org.wildfly.security.http.util.sso.DefaultSingleSignOnEntry extends Object implements Serializable
- serialVersionUID:
- 6051431359445846593L
-
Serialized Fields
-
cachedIdentity
CachedIdentity cachedIdentity
-
participants
ConcurrentMap<String,Map.Entry<String,URI>> participants
-
-
Class org.wildfly.security.http.util.sso.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.key
-
Class org.wildfly.security.key.WildFlyElytronKeyProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 9151849738027143961L
-
-
Package org.wildfly.security.keystore
-
Class org.wildfly.security.keystore.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.keystore.WildFlyElytronKeyStoreProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -2297626710941852090L
-
-
Package org.wildfly.security.manager
-
Class org.wildfly.security.manager.WildFlySecurityManagerPermission extends AbstractNameSetOnlyPermission<WildFlySecurityManagerPermission> implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.mechanism
-
Class org.wildfly.security.mechanism.AuthenticationMechanismException extends IOException implements Serializable
- serialVersionUID:
- -436234128057297342L
-
Class org.wildfly.security.mechanism.ScramServerException extends AuthenticationMechanismException implements Serializable
- serialVersionUID:
- 5410786267588390307L
-
Serialized Fields
-
error
ScramServerErrorCode error
-
-
-
Package org.wildfly.security.mechanism._private
-
Class org.wildfly.security.mechanism._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.mechanism.gssapi
-
Class org.wildfly.security.mechanism.gssapi.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.mechanism.http
-
Class org.wildfly.security.mechanism.http.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.password
-
Class org.wildfly.security.password.WildFlyElytronPasswordProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -5105900301936981709L
-
-
Package org.wildfly.security.password.impl
-
Class org.wildfly.security.password.impl.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.password.interfaces
-
Package org.wildfly.security.password.spec
-
Class org.wildfly.security.password.spec.DigestPasswordAlgorithmSpec extends Object implements Serializable
- serialVersionUID:
- 4925821569951433413L
-
Class org.wildfly.security.password.spec.IteratedPasswordAlgorithmSpec extends Object implements Serializable
- serialVersionUID:
- -13504632816489169L
-
Serialized Fields
-
iterationCount
int iterationCount
-
-
Class org.wildfly.security.password.spec.IteratedSaltedPasswordAlgorithmSpec extends Object implements Serializable
- serialVersionUID:
- -13504632816489169L
-
Serialized Fields
-
iterationCount
int iterationCount
-
salt
byte[] salt
-
-
Class org.wildfly.security.password.spec.OneTimePasswordAlgorithmSpec extends Object implements Serializable
- serialVersionUID:
- 2703192508293746122L
-
Class org.wildfly.security.password.spec.SaltedPasswordAlgorithmSpec extends Object implements Serializable
- serialVersionUID:
- 2106649716615705081L
-
Serialized Fields
-
salt
byte[] salt
-
-
-
Package org.wildfly.security.permission
-
Class org.wildfly.security.permission.AbstractActionPermission extends AbstractNamedPermission<This extends AbstractActionPermission<This>> implements Serializable
- serialVersionUID:
- -1366777243917643233L
-
Class org.wildfly.security.permission.AbstractActionSetPermission extends AbstractActionPermission<This extends AbstractActionSetPermission<This>> implements Serializable
- serialVersionUID:
- 897239118282921196L
-
Serialized Fields
-
actionBits
int actionBits
-
actionEnumeration
StringEnumeration actionEnumeration
-
actions
String actions
-
-
Class org.wildfly.security.permission.AbstractBooleanPermission extends AbstractPermission<This extends AbstractBooleanPermission<This>> implements Serializable
-
Class org.wildfly.security.permission.AbstractNamedPermission extends AbstractPermission<This extends AbstractNamedPermission<This>> implements Serializable
- serialVersionUID:
- 5774685776540853292L
-
Class org.wildfly.security.permission.AbstractNameOnlyPermission extends AbstractNamedPermission<This extends AbstractNameOnlyPermission<This>> implements Serializable
-
Class org.wildfly.security.permission.AbstractNameSetOnlyPermission extends AbstractNameOnlyPermission<This extends AbstractNameSetOnlyPermission<This>> implements Serializable
-
Serialized Fields
-
nameEnumeration
StringEnumeration nameEnumeration
-
-
-
Class org.wildfly.security.permission.AbstractPermission extends Permission implements Serializable
-
Serialization Methods
-
writeReplace
final Object writeReplace()
-
-
-
Class org.wildfly.security.permission.AbstractPermissionCollection extends PermissionCollection implements Serializable
- serialVersionUID:
- -7532778883140764647L
-
Serialization Methods
-
writeReplace
final Object writeReplace()
-
-
Serialized Fields
-
sourcePermission
AbstractPermission<?> sourcePermission
-
-
Class org.wildfly.security.permission.BooleanPermissionCollection extends AbstractPermissionCollection implements Serializable
-
Serialized Fields
-
added
boolean added
-
-
-
Class org.wildfly.security.permission.ByNamePermissionCollection extends AbstractPermissionCollection implements Serializable
-
Serialized Fields
-
all
Permission all
-
byName
ConcurrentHashMap<String,Permission> byName
-
-
-
Class org.wildfly.security.permission.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
Class org.wildfly.security.permission.ElytronPermission extends AbstractNameSetOnlyPermission<ElytronPermission> implements Serializable
- serialVersionUID:
- 6124294238228442419L
-
Class org.wildfly.security.permission.InvalidPermissionClassException extends IllegalArgumentException implements Serializable
- serialVersionUID:
- 7910334218992625018L
-
Class org.wildfly.security.permission.NameSetPermissionCollection extends AbstractPermissionCollection implements Serializable
- serialVersionUID:
- -9191397492173027470L
-
Serialized Fields
-
nameEnumeration
StringEnumeration nameEnumeration
-
-
Class org.wildfly.security.permission.NoPermission extends AbstractPermission<NoPermission> implements Serializable
- serialVersionUID:
- 2339781690941885693L
-
Class org.wildfly.security.permission.SecurityMessages_$logger extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
log
Logger log
-
-
Class org.wildfly.security.permission.SimpleActionBitsPermissionCollection extends AbstractPermissionCollection implements Serializable
-
Serialized Fields
-
permissionsRef
AtomicReference<AbstractActionSetPermission<?>[]> permissionsRef
-
-
-
Class org.wildfly.security.permission.SimplePermissionCollection extends AbstractPermissionCollection implements Serializable
- serialVersionUID:
- -9157630531211570679L
-
Serialized Fields
-
permissionsRef
AtomicReference<Permission[]> permissionsRef
-
-
-
Package org.wildfly.security.provider.util._private
-
Class org.wildfly.security.provider.util._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.sasl
-
Class org.wildfly.security.sasl.SaslAuthenticationInterruptedException extends SaslException implements Serializable
- serialVersionUID:
- 3351228768569638601L
-
-
Package org.wildfly.security.sasl._private
-
Class org.wildfly.security.sasl._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.sasl.anonymous
-
Class org.wildfly.security.sasl.anonymous.WildFlyElytronSaslAnonymousProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -6674538709410471499L
-
-
Package org.wildfly.security.sasl.digest
-
Class org.wildfly.security.sasl.digest.WildFlyElytronSaslDigestProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 4489281716376579143L
-
-
Package org.wildfly.security.sasl.entity
-
Class org.wildfly.security.sasl.entity.WildFlyElytronSaslEntityProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 498264316387776361L
-
-
Package org.wildfly.security.sasl.external
-
Class org.wildfly.security.sasl.external.WildFlyElytronSaslExternalProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -8090113592399245366L
-
-
Package org.wildfly.security.sasl.gs2
-
Class org.wildfly.security.sasl.gs2.WildFlyElytronSaslGs2Provider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -2057804626861729995L
-
-
Package org.wildfly.security.sasl.gssapi
-
Class org.wildfly.security.sasl.gssapi.WildFlyElytronSaslGssapiProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- -6699910210685053829L
-
-
Package org.wildfly.security.sasl.localuser
-
Class org.wildfly.security.sasl.localuser.WildFlyElytronSaslLocalUserProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 4188534864141338518L
-
-
Package org.wildfly.security.sasl.oauth2
-
Class org.wildfly.security.sasl.oauth2.WildFlyElytronSaslOAuth2Provider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 4264694243468176618L
-
-
Package org.wildfly.security.sasl.otp
-
Class org.wildfly.security.sasl.otp.WildFlyElytronSaslOTPProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 8591483864968428336L
-
-
Package org.wildfly.security.sasl.plain
-
Class org.wildfly.security.sasl.plain.WildFlyElytronSaslPlainProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 2647962616155165113L
-
-
Package org.wildfly.security.sasl.scram
-
Class org.wildfly.security.sasl.scram.WildFlyElytronSaslScramProvider extends WildFlyElytronBaseProvider implements Serializable
- serialVersionUID:
- 2647962616155165113L
-
-
Package org.wildfly.security.ssh.util._pivate
-
Class org.wildfly.security.ssh.util._pivate.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.ssl
-
Class org.wildfly.security.ssl.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.util
-
Class org.wildfly.security.util.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.x500._private
-
Class org.wildfly.security.x500._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.x500.cert._private
-
Class org.wildfly.security.x500.cert._private.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.x500.cert.acme
-
Class org.wildfly.security.x500.cert.acme.AcmeException extends IOException implements Serializable
- serialVersionUID:
- -1038330178933137221L
-
Class org.wildfly.security.x500.cert.acme.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.x500.cert.util
-
Class org.wildfly.security.x500.cert.util.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.wildfly.security.x500.principal
-
Class org.wildfly.security.x500.principal.ElytronMessages_$logger extends DelegatingBasicLogger implements Serializable
- serialVersionUID:
- 1L
-