Packagelc.core
Interfacepublic interface ILoginPage extends IUIComponent, IFlexDisplayObject, IBitmapDrawable, IEventDispatcher

The ILoginPage interface is implemented for configuring and retrieving user login information.

All login pages must implement the ILoginPage interface.

See also

lc.core.AuthenticatingApplication


Public Properties
 PropertyDefined By
 Inheritedalpha : Number
The transparency of this object.
IFlexDisplayObject
 InheritedbaselinePosition : Number
[read-only] Determines the baseline y-coordinate of the first line of text of the component.
IUIComponent
 InheritedcacheAsBitmap : Boolean
If set to true, Flash Player caches an internal bitmap representation of the object.
IUIComponent
 Inheriteddocument : Object
A reference to the document object associated with this component.
IUIComponent
 Inheritedenabled : Boolean
Whether the component can accept user interaction.
IUIComponent
  errorMessage : Message
The error message to be displayed.
ILoginPage
 InheritedexplicitHeight : Number
The explicitly specified height for the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedexplicitMaxHeight : Number
[read-only] Number that specifies the maximum height of the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedexplicitMaxWidth : Number
[read-only] Number that specifies the maximum width of the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedexplicitMinHeight : Number
[read-only] Number that specifies the minimum height of the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedexplicitMinWidth : Number
[read-only] Number that specifies the minimum width of the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedexplicitWidth : Number
The explicitly specified width for the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedfocusPane : Sprite
A single Sprite object that is shared among components and used as an overlay for drawing focus.
IUIComponent
 Inheritedheight : Number
The height of this object, in pixels.
IFlexDisplayObject
 InheritedincludeInLayout : Boolean
Specifies whether this component is included in the layout of the parent container.
IUIComponent
 InheritedisPopUp : Boolean
Set to true by the PopUpManager to indicate that component has been popped up.
IUIComponent
 Inheritedmask : DisplayObject
The DisplayObject used to mask this object so that only part of it is actually drawn.
IFlexDisplayObject
 InheritedmaxHeight : Number
[read-only] Number that specifies the maximum height of the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedmaxWidth : Number
[read-only] Number that specifies the maximum width of the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedmeasuredHeight : Number
[read-only] The measured height of this object.
IFlexDisplayObject
 InheritedmeasuredMinHeight : Number
The default minimum height of the component, in pixels.
IUIComponent
 InheritedmeasuredMinWidth : Number
The default minimum width of the component, in pixels.
IUIComponent
 InheritedmeasuredWidth : Number
[read-only] The measured width of this object.
IFlexDisplayObject
 InheritedminHeight : Number
[read-only] Number that specifies the minimum height of the component, in pixels, as the component's coordinates.
IUIComponent
 InheritedminWidth : Number
[read-only] Number that specifies the minimum width of the component, in pixels, as the component's coordinates.
IUIComponent
 Inheritedname : String
The instance name of this object.
IFlexDisplayObject
 InheritedopaqueBackground : Object
Specifies whether the display object is opaque with a certain background color.
IUIComponent
 Inheritedowner : DisplayObjectContainer
Your owner is usually your parent, however If you are a popup subcomponent, your owner will be the component that popped you up.
IUIComponent
 Inheritedparent : DisplayObjectContainer
[read-only] The parent of this object.
IFlexDisplayObject
  password : String
The password.
ILoginPage
 InheritedpercentHeight : Number
Number that specifies the height of a component as a percentage of its parent's size.
IUIComponent
 InheritedpercentWidth : Number
Number that specifies the width of a component as a percentage of its parent's size.
IUIComponent
  relogin : Boolean
A flag that specifies whether this is the first login attempt.
ILoginPage
 InheritedscaleX : Number
The horizontal scaling factor for this object.
IFlexDisplayObject
 InheritedscaleY : Number
The vertical scaling factor for this object.
IFlexDisplayObject
 InheritedscrollRect : Rectangle
The scroll rectangle bounds of the surface of the component.
IUIComponent
  serverUrl : String
The Flex Data Management Service URL for the server.
ILoginPage
 InheritedsystemManager : ISystemManager
A reference to the SystemManager object for this component.
IUIComponent
 InheritedtweeningProperties : Array
Used by EffectManager.
IUIComponent
  userid : String
The user identifier.
ILoginPage
 Inheritedvisible : Boolean
A flag that indicates whether this object is visible.
IFlexDisplayObject
 Inheritedwidth : Number
The width of this object, in pixels.
IFlexDisplayObject
 Inheritedx : Number
The horizontal position of this object relative to its parent, in pixel coordinates.
IFlexDisplayObject
 Inheritedy : Number
The vertical position of this object relative to its parent, in pixel coordinates.
IFlexDisplayObject
Public Methods
 MethodDefined By
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registers an event listener object with an EventDispatcher object so that the listener receives notification of an event.
IEventDispatcher
 Inherited
Dispatches an event into the event flow.
IEventDispatcher
 Inherited
A convenience method for determining whether to use the explicit or measured height
IUIComponent
 Inherited
A convenience method for determining whether to use the explicit or measured width
IUIComponent
 Inherited
Checks whether the EventDispatcher object has any listeners registered for a specific type of event.
IEventDispatcher
 Inherited
Initialize the object.
IUIComponent
 Inherited
Moves this object to the specified x and y coordinates.
IFlexDisplayObject
 Inherited
Returns true if the chain of owner properties points from child to this UIComponent.
IUIComponent
 Inherited
Called by Flex when a UIComponent object is added to or removed from a parent.
IUIComponent
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Removes a listener from the EventDispatcher object.
IEventDispatcher
 Inherited
setActualSize(newWidth:Number, newHeight:Number):void
Sets the actual size of this object.
IFlexDisplayObject
 Inherited
setVisible(value:Boolean, noEvent:Boolean = false):void
Called when the visible property changes.
IUIComponent
 Inherited
Checks whether an event listener is registered with this EventDispatcher object or any of its ancestors for the specified event type.
IEventDispatcher
Property Detail
errorMessageproperty
errorMessage:Message  [read-write]

The error message to be displayed.


Implementation
    public function get errorMessage():Message
    public function set errorMessage(value:Message):void
passwordproperty 
password:String  [read-write]

The password.


Implementation
    public function get password():String
    public function set password(value:String):void
reloginproperty 
relogin:Boolean  [read-write]

A flag that specifies whether this is the first login attempt. In the second case, the implementation of the page should disable all fields except for the password field. A value of false specifies that it is the first login attempt.


Implementation
    public function get relogin():Boolean
    public function set relogin(value:Boolean):void
serverUrlproperty 
serverUrl:String  [read-write]

The Flex Data Management Service URL for the server.


Implementation
    public function get serverUrl():String
    public function set serverUrl(value:String):void
useridproperty 
userid:String  [read-write]

The user identifier.


Implementation
    public function get userid():String
    public function set userid(value:String):void




 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/livecycle/es/sdkHelp/common/langref/lc/core/ILoginPage.html