Interface IExtensionSummary
-
- All Known Subinterfaces:
IExtension
- All Known Implementing Classes:
Extension,ExtensionSummary
public interface IExtensionSummary
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExtArchDir()Returns the path to the file in the server extension’s unpacked archive directory.java.lang.StringgetExtDataDir()Returns the path in which the server extension will store the files it creates.java.lang.StringgetExtDescriptionSnippet()Get the Extension description snippet.java.lang.StringgetExtDeveloper()Get Extension developer.java.lang.StringgetExtEnabled()Check if Extension is enabled or disabled.booleangetExtGlobalConf()Check if Extension has global configbooleangetExtInstanceConf()Check if Extension has instance configjava.lang.StringgetExtName()Get the name of the Extension being configured.java.lang.StringgetExtRev()Get the revision of the Extension being configured.java.lang.StringgetExtUUID()Get the UUID/key of the Extension being configured.java.lang.StringgetExtVersion()Get the version of the Extension being configured.java.lang.StringgetNameSpace()Get the namespace of this Extension config.voidsetExtArchDir(java.lang.String extArchDir)Set the path to the file in the server extension’s unpacked archive directory.voidsetExtDataDir(java.lang.String extDataDir)Set path in which the server extension will store the files it creates.voidsetExtDescriptionSnippet(java.lang.String extDescriptionSnippet)Set the Extension description snippet.voidsetExtDeveloper(java.lang.String extDeveloper)Set the extension developer field.voidsetExtEnabled(java.lang.String extEnabled)Enable or disable the extensionvoidsetExtGlobalConf(boolean extGlobalConf)Set extension as a global.voidsetExtInstanceConf(boolean extInstanceConf)Set extension as an instance.voidsetExtName(java.lang.String extName)Set the name of the Extension being configured.voidsetExtRev(java.lang.String extRev)Set the revision of the Extension being configured.voidsetExtUUID(java.lang.String extUUID)Set the UUID/key of the Extension being configured.voidsetExtVersion(java.lang.String extVersion)Set the version of the Extension being configured.voidsetNameSpace(java.lang.String name)Set the namespace of this Extension config.
-
-
-
Method Detail
-
getExtName
java.lang.String getExtName()
Get the name of the Extension being configured.- Returns:
- Extension name
-
getExtVersion
java.lang.String getExtVersion()
Get the version of the Extension being configured.- Returns:
- Extension version
-
getExtUUID
java.lang.String getExtUUID()
Get the UUID/key of the Extension being configured.- Returns:
- Extension UUID
-
getExtRev
java.lang.String getExtRev()
Get the revision of the Extension being configured.- Returns:
- Extension revision
-
getExtEnabled
java.lang.String getExtEnabled()
Check if Extension is enabled or disabled.- Returns:
- true/false
-
getNameSpace
java.lang.String getNameSpace()
Get the namespace of this Extension config.- Returns:
- Namespace
-
getExtDeveloper
java.lang.String getExtDeveloper()
Get Extension developer.- Returns:
- Extension developer
-
getExtDescriptionSnippet
java.lang.String getExtDescriptionSnippet()
Get the Extension description snippet.- Returns:
- Description snippet
-
getExtArchDir
java.lang.String getExtArchDir()
Returns the path to the file in the server extension’s unpacked archive directory. This path is relative to the server.extensions.dir configurable.- Returns:
- Extension archive directory
-
getExtDataDir
java.lang.String getExtDataDir()
Returns the path in which the server extension will store the files it creates.- Returns:
- Extension data directory
-
getExtGlobalConf
boolean getExtGlobalConf()
Check if Extension has global config- Returns:
- true/false
-
getExtInstanceConf
boolean getExtInstanceConf()
Check if Extension has instance config- Returns:
- true/false
-
setExtName
void setExtName(java.lang.String extName)
Set the name of the Extension being configured.- Parameters:
extName- name
-
setExtVersion
void setExtVersion(java.lang.String extVersion)
Set the version of the Extension being configured.- Parameters:
extVersion- version
-
setExtUUID
void setExtUUID(java.lang.String extUUID)
Set the UUID/key of the Extension being configured.- Parameters:
extUUID- UUID
-
setExtRev
void setExtRev(java.lang.String extRev)
Set the revision of the Extension being configured.- Parameters:
extRev- revision
-
setExtEnabled
void setExtEnabled(java.lang.String extEnabled)
Enable or disable the extension- Parameters:
extEnabled- true/false
-
setNameSpace
void setNameSpace(java.lang.String name)
Set the namespace of this Extension config.- Parameters:
name- name
-
setExtDeveloper
void setExtDeveloper(java.lang.String extDeveloper)
Set the extension developer field.- Parameters:
extDeveloper- developer
-
setExtDescriptionSnippet
void setExtDescriptionSnippet(java.lang.String extDescriptionSnippet)
Set the Extension description snippet.- Parameters:
extDescriptionSnippet- description
-
setExtArchDir
void setExtArchDir(java.lang.String extArchDir)
Set the path to the file in the server extension’s unpacked archive directory. This path is relative to the server.extensions.dir configurable.- Parameters:
extArchDir- archive directory
-
setExtDataDir
void setExtDataDir(java.lang.String extDataDir)
Set path in which the server extension will store the files it creates.- Parameters:
extDataDir- data directory
-
setExtGlobalConf
void setExtGlobalConf(boolean extGlobalConf)
Set extension as a global.- Parameters:
extGlobalConf- is global
-
setExtInstanceConf
void setExtInstanceConf(boolean extInstanceConf)
Set extension as an instance.- Parameters:
extInstanceConf- is instance
-
-