struct Permission in module com::sun::star::security::

(Global Index)

Syntax

struct Permission;

Description

WARNING: this is just a draft and may be changed!

Generic permission defined by its type, target and action (list).

Field Summary

PermissionType type name of permission; pre-defined names are:

PermissionTarget target of permission, e.g. file name

PermissionActions (list) of actions permitted, e.g. "read,write"

Field Details



PermissionType

Syntax

string PermissionType;

Description

type name of permission; pre-defined names are:

  • java.io.FilePermission
  • java.net.SocketPermission
  • java.util.PropertyPermission
  • java.lang.RuntimePermission
  • java.net.NetPermission
  • java.security.SecurityPermission
  • java.security.AllPermission
  • xxx todo: more?

PermissionTarget

Syntax

string PermissionTarget;

Description

target of permission, e.g. file name


PermissionActions

Syntax

string PermissionActions;

Description

(list) of actions permitted, e.g. "read,write"

Top of Page