| Package | Description |
|---|---|
| org.mmbase.applications.crontab |
An MMBase CronDaemon implementation.
|
| org.mmbase.applications.email | |
| org.mmbase.bridge |
The main interface to MMBase, also known as `MMCI' (MMBase Cloud Interface).
|
| org.mmbase.bridge.implementation |
This package provides the basic implementations for the interfaces of org.mmbase.bridge.
|
| org.mmbase.bridge.mock |
This package provides a completely 'virtual' implementation of the bridge.
|
| org.mmbase.bridge.remote.proxy | |
| org.mmbase.bridge.util |
This package contains several bridge related classes which can be used independently of the
rest of MMBase.
|
| org.mmbase.core | |
| org.mmbase.core.event | |
| org.mmbase.datatypes |
This package defines and implements
DataTypes, which are a way to apply restrictions to and
annotate certain data. |
| org.mmbase.datatypes.processors |
Plugins into set- and getValue methods on Node (Setting and getting Fields).
|
| org.mmbase.framework |
The package contains the component framework of MMBase.
|
| org.mmbase.module.core |
The core classes for MMBase.
|
| org.mmbase.module.corebuilders |
The MMBase core builders.
|
| org.mmbase.module.lucene | |
| org.mmbase.module.tools | |
| org.mmbase.security.implementation.cloudcontext | |
| org.mmbase.sms | |
| org.mmbase.storage.search |
Provides interfaces for retrieval of data from
SearchQuery objects. |
| org.mmbase.storage.search.implementation | |
| org.mmbase.streams.transcoders | |
| org.mmbase.util | |
| org.mmbase.util.functions |
The function framework is all about the creation of
Function instances, from which
then, subsequently, function values can be acquired. |
| org.mmbase.util.xml |
| Modifier and Type | Class and Description |
|---|---|
static class |
Events.Event |
static class |
ProposedJobs.Event |
| Modifier and Type | Class and Description |
|---|---|
class |
EmailEvent |
static class |
EmailEvent.Sent |
| Modifier and Type | Interface and Description |
|---|---|
interface |
NodeQuery
A Node-Query is a query that queries node-lists, in contradiction to a normal Query which can
query 'cluster nodes' and even more generally 'result nodes' too.
|
interface |
Query
Representation of a (database) query.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BasicNodeQuery
'Basic' implementation of bridge NodeQuery.
|
class |
BasicQuery
'Basic' implementation of bridge Query.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MockField |
protected class |
MockNodeManager.SystemField |
| Modifier and Type | Class and Description |
|---|---|
class |
RemoteNodeQuery_Proxy
RemoteNodeQuery_Proxy in a generated smart proxy of NodeQuery
This smart proxy is used by a local class when the MMCI is called remotely |
class |
RemoteQuery_Proxy
RemoteQuery_Proxy in a generated smart proxy of Query
This smart proxy is used by a local class when the MMCI is called remotely |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractQueryWrapper<Q extends Query>
Abstract base class for both
QueryWrapper and NodeQueryWrapper. |
class |
DataTypeField
Wraps a DataType object into a (virtual) Field object.
|
class |
NodeQueryWrapper
Implementation of
Query completely based on other instance of that. |
class |
QueryWrapper
Implementation of
Query completely based on other instance of that. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDescriptor |
class |
AbstractField<D> |
class |
CoreField |
| Modifier and Type | Class and Description |
|---|---|
class |
BuildersRead
An BuilderReader system event is and should be issued after one or more builders are added to the system.
|
class |
Event
This class is the base class for all mmbase events
|
class |
IdEvent
Very generic event type, which only adds an 'id' property.
|
class |
LocalEvent
An event that does not need broadcasting to other servers
|
class |
NodeEvent
This class communicates a node event.
|
class |
RelationEvent
This class reflects a ,,change relation event.
|
class |
SystemEvent |
static class |
SystemEvent.Collectable
A SystemEvent that is also Collectable will be collected by the EventManger and also issued to EventListeners which are added after the event
happened.
|
static class |
SystemEvent.DataSourceAvailable
Notifies that the database is now usable
|
static class |
SystemEvent.ResourceLoaderChange |
static class |
SystemEvent.ServletContext |
static class |
SystemEvent.Shutdown
Notifies that the local MMBase is going to be shut down
|
static class |
SystemEvent.Up
Notifies that the local MMBase is now fully up and running
|
class |
TransactionEvent |
static class |
TransactionEvent.Cancel |
static class |
TransactionEvent.Commit |
static class |
TransactionEvent.Create |
static class |
TransactionEvent.End |
static class |
TransactionEvent.Resolve |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractLengthDataType<E>
A LengthDataType is a datatype that defines a length for its values (
AbstractLengthDataType.getLength(Object)) ,
and restrictions on that (minimal an maximal length). |
class |
BasicDataType<C>
Every DataType extends this one.
|
class |
BinaryDataType
The datatype associated with byte arrays ('blobs').
|
class |
BinaryStringDataType |
class |
BooleanDataType
The DataType associated with a boolean value.
|
class |
CaptchaDataType |
class |
CheckEqualityDataType
A confirmed datatype must have the same value as another field of the node (and makes
only sense as a field of a node).
|
class |
ComparableDataType<E extends Serializable & Comparable<E>>
Comparable datatypes have values which are
Comparable, so can be ordered, and
therefore can have a minimum and a maximum value. |
class |
ComponentNamesDataType
A StringDataType with the names of all installed components.
|
class |
ConfirmPasswordDataType
A confirmed password datatype must have the same value as another field of the node (and makes
only sense as a field of a node).
|
class |
DateTimeDataType
The date-time datatype further describes
Date objects. |
class |
DecimalDataType
DataType associated with
BigDecimal, a NumberDataType. |
class |
DoubleDataType
DataType associated with
Double, as NumberDataType, but provides getMin and getMax as double. |
class |
EmailValidated |
class |
FloatDataType
DataType associated with
Float, as NumberDataType, but provides getMin and getMax as float. |
class |
IntegerDataType
DataType associated with
Integer, a NumberDataType, but provides getMin and getMax as int. |
class |
InternetAddressDataType
Validates a value by putting it into
InternetAddress.parse(String),
if no exception is caused by that, the value is valid. |
class |
LanguageDataType
Returns the current language as a default value.
|
class |
ListDataType |
class |
LongDataType
DataType associated with
Long, as NumberDataType, but provides getMin and getMax as long. |
class |
MustBeTrueDataType
A boolean datatype of which the value must be true.
|
class |
NodeDataType
The Node data type describes a data type which is based on an MMBase 'node' field.
|
class |
NodeManagerNamesDataType
A StringDataType with can take all possible node manager as values.
|
class |
NumberDataType<E extends Number & Comparable<E>>
A DataType representing some kind of numeric value, like a floating point number or an integer number.
|
class |
SecurityContextDataType
A StringDataType with all security contexts strings as possible value.
|
class |
StringDataType
The datatype for String fields.
|
class |
UniqueStringDataType
Like
StringDataType, but with an alternative implementation for the default value,
namely, ensuring that it is unique already. |
class |
UserNodeDataType
This 'Node' datatypes uses the framework to determin the currently logged in user object.
|
class |
WeekdaysDataType
An enumeration datatype representing all days of a week, so an integer with the value 1 through
7.
|
class |
XmlDataType
The data associated with 'XML' values (
Document). |
| Modifier and Type | Class and Description |
|---|---|
class |
ChainedCommitProcessor
Chains a bunch of other processors into one new processor.
|
static class |
Duration.DataType |
| Modifier and Type | Class and Description |
|---|---|
static class |
ComponentRepository.Ready |
static class |
Setting.DataType |
| Modifier and Type | Class and Description |
|---|---|
class |
ClusterNode
ClusterNode combines fields of different nodes in a single "virtual" node.
|
class |
MMObjectNode
MMObjectNode is the core of the MMBase system.
|
class |
VirtualNode
VirtualNode is a representation of a virtual objectnode.
|
| Modifier and Type | Class and Description |
|---|---|
class |
FieldDefs
Deprecated.
use
CoreField |
protected class |
TypeRel.VirtualTypeRelNode
A VirtualTypeRelNode is a MMObjectNode which is added to the typerelset with extensions of
the actual builders specified.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
AssignmentEvents.Event |
static class |
FullIndexEvents.Event |
static class |
Lucene.ConfigurationRead |
static class |
NewSearcher.Event |
| Modifier and Type | Class and Description |
|---|---|
class |
ApplicationsInstalledEvent
Application installations functionality of MMAdmin.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Authenticate.AdminVirtualNode |
| Modifier and Type | Class and Description |
|---|---|
class |
SMSEvent
An SMS wrapped into an event.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ResultNode
A
ResultNode is a virtual node, used to represent
the result of executing an arbitrary search query. |
| Modifier and Type | Class and Description |
|---|---|
class |
BasicSearchQuery
Basic implementation.
|
class |
NodeSearchQuery
A
NodeSearchQuery implements a SearchQuery
that retrieves nodes of one specified nodetype. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Analyzer
The goal of implementations of this interface is to be wrapped by a
AnalyzerLogger (which
itself probably is an entry in a ChainedLogger). |
interface |
Recognizer
A Recognizer is a bit like a
Transcoder, but it does not transcode anything, it only produces output to the
logger, which can be analyzed using an AnalyzerLogger. |
interface |
Transcoder
Representation of one transcoding action.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractTranscoder
Base transcoder for others.
|
class |
ChainedAnalyzer
Makes it possible to chain analyzers one after another.
|
class |
CommandTranscoder
A transcoder based on an external command, like
ffmpeg or ffmpeg2theora. |
class |
FFMpeg2TheoraAnalyzer |
class |
FFMpeg2TheoraTranscoder
This transcoder uses the command
ffmpeg2theora. |
class |
FFMpegAnalyzer
An implementation of Analyzer that uses FFmpeg to analyze files.
|
class |
FFMpegRecognizer
A recognizer that uses FFmpeg to analyze media.
|
class |
FFMpegSegmenterTranscoder
Segmenter transcoder that uses version 3 FFmpeg to create ts segments and its m3u8 play-list file.
|
class |
FFMpegTranscoder
Transcoder that uses
ffmpeg to transcode media. |
class |
InfiniteTranscoder
This is a transcoder that does nothing.
|
class |
MockAnalyzer |
class |
MockRecognizer |
class |
MockTranscoder
This is a transcoder simply copies the file, and does not transcode anything.
|
class |
RecognizerTranscoder
This thin wrapper just represents a 'Recognizer' as a Transcoder.
|
class |
SegmenterAnalyzer
Analyzes
segmenter output after doing its job, changes url field to m3u8 index file
when ready and rewrites m3u8 to removed full paths. |
class |
SegmenterTranscoder
The transcoder that uses
segmenter to create segments of a stream including their
m3u8 index file to be distributed over a cellular network. |
| Modifier and Type | Class and Description |
|---|---|
class |
Entry<K,V>
Represents a pair of values ('key' and a 'value').
|
class |
LocaleLocalizedString
This LocalizedString also has a method
LocaleLocalizedString.setLocale(java.util.Locale) which defines its own default locale for LocaleLocalizedString.get(Locale) in case it is called as get(null). |
class |
LocalizedString
A String which is localized.
|
class |
ReadonlyLocalizedString
Extends and wraps LocalizedString, to make it readonly
|
class |
ReplacingLocalizedString
Extends and wraps LocalizedString.
|
class |
WrappedLocalizedString
Extends and wraps LocalizedString.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Parameter<C>
Each (function) argument is specified by a Parameter object.
|
static class |
Parameter.Wrapper
A Parameter.Wrapper wraps one Parameter around a Parameter[] (then you can put it in a
Parameter[]).
|
class |
PatternParameter<C>
Especially the blocks of the framework may want to allow for all parameters according to a
certain pattern.
|
class |
ReturnType<C>
Description of the return type of certain function.
|
| Modifier and Type | Class and Description |
|---|---|
class |
DocumentSerializable
Wraps an
Document to be certainly serializable (and cloneable). |
MMBase 1.9-SNAPSHOT - ${javadoctimestamp}