Class PluginDevEnvironment
- java.lang.Object
-
- org.jivesoftware.openfire.container.PluginDevEnvironment
-
public class PluginDevEnvironment extends Object
Represents the data model used to represent development mode within the Jive Openfire plugin framework.- Author:
- Derek DeMoro
-
-
Constructor Summary
Constructors Constructor Description PluginDevEnvironment()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FilegetClassesDir()Returns the classes directory of a plugin in development mode.FilegetWebRoot()Returns the document root of a plugins web development application.voidsetClassesDir(File classesDir)Sets the classes directory of a plugin used in development mode.voidsetWebRoot(File webRoot)Set the document root of a plugin.
-
-
-
Method Detail
-
getWebRoot
public File getWebRoot()
Returns the document root of a plugins web development application.- Returns:
- the document root of a plugin.
-
setWebRoot
public void setWebRoot(File webRoot)
Set the document root of a plugin.- Parameters:
webRoot- the document root of a plugin.
-
getClassesDir
public File getClassesDir()
Returns the classes directory of a plugin in development mode.- Returns:
- the classes directory of a plugin in development mode.
-
setClassesDir
public void setClassesDir(File classesDir)
Sets the classes directory of a plugin used in development mode.- Parameters:
classesDir- the classes directory.
-
-