패키지 | lc.foundation |
인터페이스 | public interface ISessionManager extends IManager , IEventDispatcher |
구현자 | SessionManager |
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
ISessionManager
interface is implemented to expose operations and properties related
to the Document Server session. You implement this interface to authenticate a user and provide
the session that is required for all other server operations.
속성 | 정의 주체 | ||
---|---|---|---|
authenticatedUser : User
The authenticated user, after the successful
call using the login or singleSignOn methods. | ISessionManager | ||
buildDate : String [읽기 전용]
The build date. | ISessionManager | ||
buildNumber : String [읽기 전용]
The build number. | ISessionManager | ||
channelSet : ChannelSet [읽기 전용]
A ChannelSet object that is used with Remoting by DataService objects. | ISessionManager | ||
clientUrl : String [읽기 전용]
The server address, as a URL, for the client collateral. | ISessionManager | ||
dataserviceChannelSet : ChannelSet [읽기 전용]
A ChannelSet object that is appropriate for use with Data Services. | ISessionManager | ||
faultHandler : Function
The default fault handler function. | IManager | ||
loadLocationUrl : String [읽기 전용]
The server URL from which the SWF file is loaded. | ISessionManager | ||
remotingChannelSet : ChannelSet [읽기 전용]
A ChannelSet object that is appropriate for use with Remoting. | ISessionManager | ||
serverUrl : String [읽기 전용]
The server address, as a URL, for the server session. | ISessionManager | ||
userAssertion : String [읽기 전용]
The SAML assertion data that can be used to pass authentication to
Data Services. | ISessionManager |
메서드 | 정의 주체 | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
리스너에서 이벤트 알림을 받을 수 있도록 EventDispatcher 객체에 이벤트 리스너 객체를 등록합니다. | IEventDispatcher | ||
이벤트를 이벤트 흐름으로 전달합니다. | IEventDispatcher | ||
Retrieves a RemoteObject object configured with the authenticated user's
credentials for invoking an operation on the specified Remoting service. | ISessionManager | ||
Retrieves a RemoteObject object configured with the authenticated user's
credentials for invoking an operation on the specified Remoting service. | ISessionManager | ||
Determines whether the default operation is prevented. | IManager | ||
Determines whether the default operation is prevented. | IManager | ||
EventDispatcher 객체에 특정 유형의 이벤트에 대한 리스너가 등록되어 있는지 여부를 확인합니다. | IEventDispatcher | ||
Logs in to the server, authenticating the user. | ISessionManager | ||
Logs off the server, which invalidates the server session. | ISessionManager | ||
EventDispatcher 객체에서 리스너를 제거합니다. | IEventDispatcher | ||
Determines whether an authenticated session to the Document Server already
exists or can be established without additional information, such as in single sign-on (SSO). | ISessionManager | ||
이 EventDispatcher 객체 또는 조상 객체에 지정한 이벤트 유형에 대한 이벤트 리스너가 등록되어 있는지 여부를 확인합니다. | IEventDispatcher |
authenticatedUser | 속성 |
authenticatedUser:User
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The authenticated user, after the successful
call using the login
or singleSignOn
methods.
구현
public function get authenticatedUser():User
public function set authenticatedUser(value:User):void
buildDate | 속성 |
buildNumber | 속성 |
channelSet | 속성 |
channelSet:ChannelSet
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A ChannelSet
object that is used with Remoting by DataService objects.
This for internal use only.
구현
public function get channelSet():ChannelSet
clientUrl | 속성 |
dataserviceChannelSet | 속성 |
dataserviceChannelSet:ChannelSet
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 10 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A ChannelSet
object that is appropriate for use with Data Services.
구현
public function get dataserviceChannelSet():ChannelSet
loadLocationUrl | 속성 |
loadLocationUrl:String
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The server URL from which the SWF file is loaded. The URL does not include the name of the SWF file.
구현
public function get loadLocationUrl():String
remotingChannelSet | 속성 |
remotingChannelSet:ChannelSet
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A ChannelSet
object that is appropriate for use with Remoting.
Generally, using the getRemotingService
method is more convenient.
구현
public function get remotingChannelSet():ChannelSet
관련 API 요소
serverUrl | 속성 |
userAssertion | 속성 |
userAssertion:String
[읽기 전용] 언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
The SAML assertion data that can be used to pass authentication to Data Services.
구현
public function get userAssertion():String
getRemotingEndpoint | () | 메서드 |
public function getRemotingEndpoint(serviceName:String):RemoteObject
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves a RemoteObject
object configured with the authenticated user's
credentials for invoking an operation on the specified Remoting service. Successful
authentication is a prerequisite.
매개 변수
serviceName:String — Specifies the name of the Remoting startpoint.
|
RemoteObject — A ready to use RemoteObject.
|
getRemotingService | () | 메서드 |
public function getRemotingService(serviceName:String):RemoteObject
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 10 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves a RemoteObject
object configured with the authenticated user's
credentials for invoking an operation on the specified Remoting service. Successful
authentication is a prerequisite.
매개 변수
serviceName:String — Specifies the name of the Remoting startpoint.
|
RemoteObject — A ready to use RemoteObject.
|
login | () | 메서드 |
public function login(userid:String, password:String):lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Logs in to the server, authenticating the user.
매개 변수
userid:String — Specifies the user profile.
| |
password:String — Specifies the password.
|
lc.foundation.util:Token — A Token object used to set result and fault handlers that execute when the
operation completes.
|
logout | () | 메서드 |
public function logout():lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Logs off the server, which invalidates the server session.
반환값lc.foundation.util:Token — A token used to set result and fault handlers that execute when the
operation completes.
|
singleSignOn | () | 메서드 |
public function singleSignOn():lc.foundation.util:Token
언어 버전: | ActionScript 3.0 |
제품 버전: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
런타임 버전: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Determines whether an authenticated session to the Document Server already exists or can be established without additional information, such as in single sign-on (SSO). If an authenticated session is established, the server session is valid and the result handler on the returned token is called. If an authenticated session is not established, the fault handler is called.
반환값lc.foundation.util:Token — A token used to set result and fault handlers that execute when the operation completes.
|
Tue Jun 12 2018, 03:17 PM Z