-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e3b2677
commit 9837080
Showing
10 changed files
with
568 additions
and
573 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
interface { | ||
public boolean function wasSuccessful(); | ||
public string function getSessionId(); | ||
public string function getUserId(); | ||
public string function getEmail(); | ||
public string function getName(); | ||
public string function getFirstName(); | ||
public string function getLastName(); | ||
public any function getRawResponseData(); | ||
public string function getErrorMessage(); | ||
} | ||
|
||
public boolean function wasSuccessful(); | ||
public string function getSessionId(); | ||
public string function getUserId(); | ||
public string function getEmail(); | ||
public string function getName(); | ||
public string function getFirstName(); | ||
public string function getLastName(); | ||
public any function getRawResponseData(); | ||
public string function getErrorMessage(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
interface { | ||
public string function getName(); | ||
public string function startAuthenticationWorflow( required any event ); | ||
public any function processAuthorizationEvent( required any event ); | ||
} | ||
|
||
public string function getName(); | ||
public string function startAuthenticationWorflow( required any event ); | ||
public any function processAuthorizationEvent( required any event ); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,41 @@ | ||
component implements="cbsso.models.ISSOAuthorizationResponse" accessors = true { | ||
property name="wasSuccessful"; | ||
property name="SessionId"; | ||
property name="UserId"; | ||
property name="Email"; | ||
property name="Name"; | ||
property name="FirstName"; | ||
property name="LastName"; | ||
property name="RawResponseData"; | ||
property name="ErrorMessage"; | ||
component implements="cbsso.models.ISSOAuthorizationResponse" accessors=true { | ||
|
||
public boolean function wasSuccessful(){ | ||
return variables.wasSuccessful; | ||
} | ||
public string function getSessionId(){ | ||
return variables.SessionId; | ||
} | ||
public string function getUserId(){ | ||
return variables.UserId; | ||
} | ||
public string function getEmail(){ | ||
return variables.Email; | ||
} | ||
public string function getName(){ | ||
return variables.FirstName; | ||
} | ||
public string function getFirstName(){ | ||
return variables.FirstName; | ||
} | ||
public string function getLastName(){ | ||
return variables.LastName; | ||
} | ||
public any function getRawResponseData(){ | ||
return variables.RawResponseData; | ||
} | ||
public string function getErrormessage(){ | ||
return variables.ErrorMessage; | ||
} | ||
} | ||
property name="wasSuccessful"; | ||
property name="SessionId"; | ||
property name="UserId"; | ||
property name="Email"; | ||
property name="Name"; | ||
property name="FirstName"; | ||
property name="LastName"; | ||
property name="RawResponseData"; | ||
property name="ErrorMessage"; | ||
|
||
public boolean function wasSuccessful(){ | ||
return variables.wasSuccessful; | ||
} | ||
public string function getSessionId(){ | ||
return variables.SessionId; | ||
} | ||
public string function getUserId(){ | ||
return variables.UserId; | ||
} | ||
public string function getEmail(){ | ||
return variables.Email; | ||
} | ||
public string function getName(){ | ||
return variables.FirstName; | ||
} | ||
public string function getFirstName(){ | ||
return variables.FirstName; | ||
} | ||
public string function getLastName(){ | ||
return variables.LastName; | ||
} | ||
public any function getRawResponseData(){ | ||
return variables.RawResponseData; | ||
} | ||
public string function getErrormessage(){ | ||
return variables.ErrorMessage; | ||
} | ||
|
||
} |
Oops, something went wrong.