clearApplicationAttr()

The j2eeLib.clearApplicationAttr() system function removes the value that is associated with the specified key that you placed in application scope storage.

If a value is not found that matches the specified key, no error results.

You can place a value in application scope storage by using the j2eeLib.setApplicationAttr() system function. You can retrieve the value with j2eeLib.getApplicationAttr(). The value placed in the servlet's application storage is available until the application terminates or you clear the value manually.

  j2eeLib.clearApplicationAttr(
    key STRING in)
key
Any value that is assignment compatible with the STRING type. See Assignment compatibility in EGL.

Feedback