| Interface and Description |
|---|
| org.mmbase.util.CompareInterface
This is the same as java.util.Comparator
|
| org.mmbase.core.util.DaemonTask
This class copies functionality present in
e.g. java.util.concurrent.ScheduledThreadPoolExecutor (a thread pool which can be used is e.g.
ThreadPools.scheduler). |
| org.mmbase.module.idInterface
no implementation of this interface exists, and the only class that references the interface
(scanparser) never instantiates it.
|
| org.mmbase.module.core.MMBaseObserver |
| org.mmbase.util.PasswordGeneratorInterface
no real need for an interface as there is only one implementation
|
| org.mmbase.module.PlaylistsInterface
this interface is not implemented or referenced
|
| org.mmbase.util.Sortable
I think this is the same as java.util.Comparable
|
| org.mmbase.module.builders.vwms.VwmInterface
all known implementations extend
Vwm so why use an interface? |
| org.mmbase.module.builders.vwms.VwmProbeInterface
with only one implementation, better to not use an interface?
|
| Class and Description |
|---|
| org.mmbase.module.core.ByteFieldContainer |
| org.mmbase.bridge.jsp.taglib.typehandler.ByteHandler
Use BinaryHandler
|
| org.mmbase.core.util.DaemonThread
This class copies functionality present in
e.g. java.util.concurrent.ScheduledThreadPoolExecutor (a thread pool which can be used is
e.g.
ThreadPools.scheduler). If scheduling is not used, then only the
thread group is special, which can just as well be obtained by MMBaseContext.getThreadGroup(). |
| org.mmbase.module.database.DatabaseSupportInformix
Use ;IFX_LOCK_MODE_WAIT=31 on the connection string in jdbc.xml in stead
|
| org.mmbase.util.DateStrings
FIX dutch days
|
| org.mmbase.util.DateSupport
use Calendar and java.util.DateFormat
|
| org.mmbase.module.builders.Dummy
Simply use
MMObjectBuilder. In the builder xml you can simply leave the <class> element away alltogether. |
| org.mmbase.util.Escape
Use org.mmbase.util.Encode
|
| org.mmbase.util.Execute
Use
CommandExecutor |
| org.mmbase.module.corebuilders.FieldDefs
use
CoreField |
| org.mmbase.util.HttpAuth
should be done by implementing and using the MMBase security Authorization
|
| org.mmbase.mojo.IncludeDefaultExcludesMojo
At least if you have fixes for: MWAR-205 and MWAR-128
|
| org.mmbase.bridge.jsp.taglib.InfoTag |
| org.mmbase.util.IntegerCompare
Should implement java.util.Comparator, or should not exist, because this is java.lang.Integer's 'natural' order.
|
| org.mmbase.util.logging.log4j.Log4jPriority
use Log4jLevel
|
| org.mmbase.util.LRUHashtable
use org.mmbase.cache.implementation.LRUCache
|
| org.mmbase.module.core.MMObjectDCompare
This nearly duplicates MMObjectCompare. If the inverse of a comparable is needed, this can be implemented more genericly. Btw, this is not used.
|
| org.mmbase.module.gui.html.MultilevelCacheHandler
use org.mmbase.cache.MultilevelCacheHandler
|
| org.mmbase.bridge.jsp.taglib.util.MultiPart |
| org.mmbase.module.builders.vwms.PriorityURL
not used anywhere
|
| org.mmbase.util.Queue
Use edu.emory.mathcs.backport.java.util.concurrent.BlockingQueue, or some other Queue implementation.
|
| org.mmbase.cache.ReleaseStrategy.Timer
The only thing what this does is knowing how to subtract, which is really not so
difficult or verbose by itself
|
| org.mmbase.servlet.servdb
use
ImageServlet or AttachmentServlet instead |
| org.mmbase.servlet.servjumpers
use org.mmbase.servlet.JumpersFilter
|
| org.mmbase.servlet.SimpleFormToMailServlet
Abstract and not used anywhere.
|
| org.mmbase.util.SortableCompare
Use java.util.Comparator
|
| org.mmbase.util.SortedVector
You can use java.util.SortedSet (implementations of that), or Collections.sort(), if duplicate entries are essential (but how should they be sorted then?)
|
| org.mmbase.util.StringCompare
Should implement java.util.Comparator, or should not exist, because this is java.lang.String's 'natural' order.
|
| org.mmbase.util.URLEscape
use Encode
|
| org.mmbase.util.URLParamEscape
use Encode
|
| org.mmbase.module.builders.VersionCacheNode
is this (cacheversionfile) used? seems obsolete now
|
| org.mmbase.module.builders.VersionCacheWhenNode
is this (cacheversionfile) used? seems obsolete now
|
| org.mmbase.module.builders.VersionXMLCacheNodeReader
is this (cacheversionfile) used? seems obsolete now
|
| org.mmbase.mojo.WebResourcesMojo
Simply move the jsp to the correct location in src/main/webapp. That's easy with svn.
|
| org.mmbase.util.XFile
What's wrong with java.io.File itself? The only difference is that lastmodified gives last-modified not of file now, but of file when this object was created. If that is important, the name (nor javadoc) of this class is not very informative.
|
| org.mmbase.util.XMLBasicReader
use DocumentReader or DocumentWriter. Some code may need to be moved to DocumentReader
|
| org.mmbase.util.XMLEntityResolver
Use
EntityResolver |
| org.mmbase.util.XMLErrorHandler
Use
ErrorHandler |
| org.mmbase.util.XMLMMLanguageReader
not used anywhere
|
| Exceptions and Description |
|---|
| org.mmbase.util.AuthorizationException
only used by HttpAuth.
|
| org.mmbase.util.NotLoggedInException
only used by HttpAuth.
|
| Field and Description |
|---|
| org.mmbase.security.Operation.CHANGECONTEXT_INT
use CHANGE_CONTEXT_INT
|
| org.mmbase.module.core.ClusterBuilder.SEARCH_ALL |
| org.mmbase.module.core.ClusterBuilder.SEARCH_BOTH
use
RelationStep.DIRECTIONS_BOTH
In future versions of MMBase (1.8 and up) this will be the default value |
| org.mmbase.module.core.ClusterBuilder.SEARCH_DESTINATION |
| org.mmbase.module.core.ClusterBuilder.SEARCH_EITHER
use
RelationStep.DIRECTIONS_EITHER.
In future versions of MMBase (1.8 and up) the default value will be
RelationStep.DIRECTIONS_BOTH |
| org.mmbase.module.core.ClusterBuilder.SEARCH_SOURCE |
| org.mmbase.applications.media.builders.MediaSources.STATE_DONE |
| org.mmbase.applications.media.builders.MediaSources.STATE_REMOVED |
| org.mmbase.applications.media.builders.MediaSources.STATE_SOURCE |
| org.mmbase.bridge.Field.TYPE_BYTE |
| Constructor and Description |
|---|
| org.mmbase.applications.editwizard.Config.ListConfig() |
| org.mmbase.module.Module() |
| org.mmbase.module.builders.vwms.SCPcopy()
vpro-specific
|
| org.mmbase.module.builders.vwms.SCPcopy(String)
vpro-specific
|
| org.mmbase.module.builders.vwms.SCPcopy(String, String)
vpro-specific
|
| org.mmbase.module.builders.vwms.SCPcopy(String, String, String)
vpro-specific
|
| org.mmbase.util.xml.URIResolver(File) |
| org.mmbase.util.xml.URIResolver(File, URIResolver.EntryList) |
| org.mmbase.applications.editwizard.Wizard(HttpServletRequest, URIResolver, String, String, Cloud)
use Wizard(String, URIResolver, Config.WizardConfig, Cloud)
|
MMBase 1.9-SNAPSHOT - ${javadoctimestamp}