Package com.basis.api.admin
Interface BBjAdminWebAppServer_1500
- All Superinterfaces:
BBjAdminCommitPropertyWriter
,BBjAdminCommitWriter
,BBjAdminPropertyReader
,BBjAdminPropertyWriter
,BBjAdminWebAppServer
,Remote
,Serializable
- All Known Subinterfaces:
BBjAdminWebAppServer_1700
This is the interface for configuring the Web App Server.
-
Field Summary
Fields inherited from interface com.basis.api.admin.BBjAdminWebAppServer
CLIENT_POLL_INTERVAL, DEVELOPMENT_MODE, DISALLOW_CONSOLE, END_ACTION, END_ACTION_APP, END_ACTION_MSG, END_ACTION_URL, ERR_ACTION, ERR_ACTION_APP, ERR_ACTION_MSG, ERR_ACTION_URL, MANAGE_BROWSER_HISTORY, OMIT_BASIS_CSS, SECURE, SESSION_TIMEOUT, SHOW_BROWSER_WARNING, SHOW_CLIENT_CONFIRMATION_DIALOG
-
Method Summary
Modifier and TypeMethodDescriptioncreateContext
(String p_contextName) Creates a new custom context on the web server.Creates a new custom SSL entry with the specified PORT on the web server.getContextInfo
(String p_contextName) Returns the context info for the specified context.Returns a list of all the available contexts on the web server.getSSLInfo
(String p_port) Returns the specified SSL info.Returns a list of all the available SSL PORTs on the web server.void
removeContext
(String p_context) Removes the specified custom context.void
Removes the specified SSL entry.Methods inherited from interface com.basis.api.admin.BBjAdminCommitPropertyWriter
getChangedProperties, getClearedProperties, getOriginalProperties
Methods inherited from interface com.basis.api.admin.BBjAdminCommitWriter
commit, rollback
Methods inherited from interface com.basis.api.admin.BBjAdminPropertyReader
checkValueEqual, contains, contains, getBoolean, getDouble, getInt, getList, getLong, getProperties, getString, getType, getTypes, getValue
Methods inherited from interface com.basis.api.admin.BBjAdminPropertyWriter
addType, canAddNewProperties, canClear, clear, clearProperties, clearProperty, getReadOnly, hasChanged, isReadOnly, setBoolean, setDouble, setInt, setList, setLong, setProperties, setString, setValue
Methods inherited from interface com.basis.api.admin.BBjAdminWebAppServer
addJRE, addJRE, addResource, createApplication, getApplication, getAppNames, getJREs, getResourceUrls, isPublished, isRunning, publish, removeJRE, removeResource, start, stop, unpublish, updateJRE
-
Method Details
-
getContextNames
Returns a list of all the available contexts on the web server.- Returns:
- List of all the available contexts.
- Throws:
BBjAdminException
-
createContext
Creates a new custom context on the web server. Changes are do not take effect until calling commit().- Parameters:
p_contextName
- Name of the context to create.- Returns:
- The new context created.
- Throws:
BBjAdminException
-
removeContext
Removes the specified custom context. Changes are do not take effect until calling commit().- Parameters:
p_context
-- Throws:
BBjAdminException
-
getContextInfo
Returns the context info for the specified context.- Parameters:
p_contextName
- Name of context to get info for.- Returns:
- Returns the specified context or throws an exception if it is not valid.
- Throws:
BBjAdminException
- If the context is not valid.
-
getSSLNames
Returns a list of all the available SSL PORTs on the web server.- Returns:
- List of all the available contexts.
- Throws:
BBjAdminException
-
getSSLInfo
Returns the specified SSL info.- Parameters:
p_port
- the PORT of the SSL entry to get.- Returns:
- Returns the specified SSL entry or throws an exception if it is not valid.
- Throws:
BBjAdminException
- If the context is not valid.
-
removeSSL
Removes the specified SSL entry. Changes are do not take effect until calling commit().- Parameters:
p_port
-- Throws:
BBjAdminException
-
createSSL
Creates a new custom SSL entry with the specified PORT on the web server. Changes are do not take effect until calling commit().- Parameters:
p_port
- The PORT number for the SSL entry.- Returns:
- The new SSL entry created.
- Throws:
BBjAdminException
-