BBjspServletConfiguration::setTerminalAlias (Deprecated)

The BBJSP system is deprecated. For new development, use BBxServlet.

Description

In BBj 17.0 and higher, this method sets the terminal-alias for the BBj process running the BBjspServlet.

Syntax

Return Value

Method

void

setTerminalAlias(string alias)

Parameters

Variable

Description

alias

the terminal alias.

Return Value

None.

Remarks

None.

Example

declare BBjAPI api!
declare BBjAdmin admin!
declare BBjJettyServerConfiguration config!
declare BBjJettyContextConfiguration root!
declare BBjspServletConfiguration servletConfig!

api! = BBJAPI()
admin! = api!.getAdmin("admin","admin123")
config! = admin!.getJettyServerConfig()
root! = config!.getRootContextInfo()

servletConfig! = root!.getBBjspServlet("/myservlet")

servletConfig!.setTerminalAlias("termAlias")

config!.saveConfig()

See Also

BBjspServletConfiguration