Secure Pages

Page security is controlled at the flow level. You must view the flow Metadata "{}" to view and update the security setting for the flow.

For more information see the Related Topics section for a link to the Secure the Application section of the Developing Applications with Oracle Visual Builder in Oracle Integration guide.

Here's an example of how it works. In the reference implementation app, the contact-us flow is available anonymously, and has the following security metadata:

"security": {

    "access": {

      "requiresAuthentication": false

    }

  }

Conversely, the service-request-list flow requires the user to log in and have the "User" application role, and has the following security metadata:


  "security": {

    "access": {

      "requiresAuthentication": true,

      "roles": ["User"]

    }

  }