ContentSecurity

#include <bb/cascades/ContentSecurity>

Allows for associating a control with a security perimeter.

Hybrid applications can use this to set the security perimeter of the control. This will allow the control to interact within the set perimeter of the system.

TextArea {
    content.flags: TextContentFlag.ActiveText
    text: "Enterprise Link: www.rim.com will open browser in work perimeter"
    attachedObjects: [
        ContentSecurity  {
            id: contentsecurity
            defaultPerimeter: SecurityPerimeter.Enterprise
        }
    ]
}
Since:

BlackBerry 10.0.0

Inheritance

QML properties

hasEnterpriseContent: bool [read-only]
hasPersonalContent: bool [read-only]
hasUnknownContent: bool [read-only]
defaultPerimeter: bb::system::SecurityPerimeter::TypeInherited
objectName: QStringInherited
parent: QObject [read-only]Inherited

Properties Index

Public Functions Index

ContentSecurity (BaseObject *parent=0)
virtual ~ContentSecurity ()
boolhasEnterpriseContent ()
boolhasPersonalContent ()
boolhasUnknownContent ()
bb::system::SecurityPerimeter::TypedefaultPerimeter ()Inherited
Q_SLOT voidresetDefaultPerimeter ()Inherited
Q_SLOT voidsetDefaultPerimeter (bb::system::SecurityPerimeter::Type defaultPerimeter)Inherited
voidsetObjectName (const QString &name)Inherited
virtual Q_INVOKABLE QStringtoDebugString () const Inherited

Static Public Functions Index

Buildercreate ()

Protected Functions Index

Only has inherited protected functions

BaseObject (QObject *parent=0)Inherited

Signals Index

voidhasEnterpriseContentChanged (bool hasEnterpriseContent)
voidhasPersonalContentChanged (bool hasPersonalContent)
voidhasUnknownContentChanged (bool hasUnknownContent)
voidcreationCompleted ()Inherited
voiddefaultPerimeterChanged (const bb::system::SecurityPerimeter::Type newDefaultPerimeter)Inherited
voidobjectNameChanged (const QString &objectName)Inherited

Properties

bool hasEnterpriseContent[read-only]

A read only property that indicates whether there is enterprise content.

The default value is false.

Since:

BlackBerry 10.0.0

bool hasPersonalContent[read-only]

A read only property that indicates if there is personal content.

The default value is false.

Since:

BlackBerry 10.0.0

bool hasUnknownContent[read-only]

A read only property that indicates if there is unknown content.

The default value is false.

Since:

BlackBerry 10.0.0

bb::system::SecurityPerimeter::Type defaultPerimeterInherited

The default security perimeter.

Since:

BlackBerry 10.0.0

QString objectNameInherited

This property is overridden from QObject.

As the objectName property is overridden from the QObject class, this signal will not be emitted if setObjectName() function is called directly on QObject.

The default value of this property is QString::null.

See:

QObject::objectName().

Since:

BlackBerry 10.0.0

QObject parentInherited[read-only]

A read-only property that represents this object's parent.

The parent of an object is specified using QObject::setParent(QObject*). The purpose of the property is to expose the object's parent to QML.

This property is read-only to prevent modifications from QML, where typically the parent is declaratively set. In C++ code, the parent can be explicitly set using QObject::setParent(QObject*), or implicitly set by adding it to a visual container.

The default value of this property is 0.

Since:

BlackBerry 10.0.0

Public Functions

ContentSecurity (

Constructs a ContentSecurity.

Since:

BlackBerry 10.0.0

virtual~ContentSecurity ()

Destructor.

Since:

BlackBerry 10.0.0

bool hasEnterpriseContent ()

Indicates whether there is enterprise content.

Return:

true if there is enterprise content, false otherwise. The default value is false.

Since:

BlackBerry 10.0.0

bool hasPersonalContent ()

Indicates whether there is personal content.

Return:

true if there is personal content, false otherwise. The default value is false.

Since:

BlackBerry 10.0.0

bool hasUnknownContent ()

Indicates whether there is unknown content.

Return:

true if there is unknown content, false otherwise. The default value is false.

Since:

BlackBerry 10.0.0

bb::system::SecurityPerimeter::Type defaultPerimeter ()Inherited

Gets the default security perimeter.

Return:

The security perimeter. The default value is Default.

Since:

BlackBerry 10.0.0

Q_SLOT void resetDefaultPerimeter ()Inherited

Resets the default perimeter.

Resets the default perimeter to Default

Since:

BlackBerry 10.0.0

Q_SLOT void setDefaultPerimeter (Inherited

Sets the default security perimeter.

Parameters
defaultPerimeter

Since:

BlackBerry 10.0.0

void setObjectName (Inherited

Sets the objectName property.

Parameters
name

The new name for the object.

Since:

BlackBerry 10.0.0

virtual Q_INVOKABLE QString toDebugString ()Inherited

Returns a debug string representing this object.

Return:

A debug string for the object.

Since:

BlackBerry 10.0.0

Static Public Functions

Builder create ()

Protected Functions

(Only has inherited protected functions)

BaseObject (Inherited

Constructs an instance of BaseObject's subclass.

Parameters
parent

An optional parent, defaults to 0.

Since:

BlackBerry 10.0.0

Signals

void hasEnterpriseContentChanged (
  • boolhasEnterpriseContent)

Emitted when the hasEnterpriseContent property has changed.

Parameters
hasEnterpriseContent

true if the content now contains enterprise content, false otherwise.

Since:

BlackBerry 10.0.0

void hasPersonalContentChanged (
  • boolhasPersonalContent)

Emitted when the hasPersonalContent property has changed.

Parameters
hasPersonalContent

true if the content now contains personal content, false otherwise.

Since:

BlackBerry 10.0.0

void hasUnknownContentChanged (
  • boolhasUnknownContent)

Emitted when the hasUnknownContent property has changed.

Parameters
hasUnknownContent

true if the content now contains unknown content, false otherwise.

Since:

BlackBerry 10.0.0

void creationCompleted ()Inherited

This signal is emitted only when this object is instantiated as a result of loading a QML document and creating the root node, or when an object is being constructed using its builder class.

This signal is emitted only when this object is instantiated as a result of loading a QML document and creating the root node (only after the root component that caused this instantiation has completed construction), or when the object is being constructed from its builder class. This signal is emitted to indicate that the construction and initialization of the object has been completed, the properties are initialized, and any QML binding values have been assigned to the object.

This signal is not emitted when the object is constructed from C++ using the constructor. If the object is constructed using its builder class, the signal is emitted when the the builder class returns the fully constructed object.

This signal can be used when there is an activity that needs to be performed, such as a property state integrity verification after the object is instantiated from a QML document or a builder, but before control is returned to the application.

Since:

BlackBerry 10.0.0

void defaultPerimeterChanged (Inherited

Emitted when the default perimeter has changed.

Parameters
newDefaultPerimeter

The new default perimeter

Since:

BlackBerry 10.0.0

void objectNameChanged (Inherited

This signal is emitted when the objectName property is changed.

Since:

BlackBerry 10.0.0