-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #639 from GluuFederation/issue#638
Issue#638
- Loading branch information
Showing
19 changed files
with
373 additions
and
268 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
110 changes: 110 additions & 0 deletions
110
oxd-common/src/test/java/org/gluu/oxd/common/model/AuthenticationDetails.java
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 |
---|---|---|
@@ -0,0 +1,110 @@ | ||
package org.gluu.oxd.common.model; | ||
|
||
public class AuthenticationDetails { | ||
private String host; | ||
private String opHost; | ||
private String redirectUrls; | ||
private String userId; | ||
private String userSecret; | ||
private String userInum; | ||
private String userEmail; | ||
private String state; | ||
private String nonce; | ||
private String clientId; | ||
|
||
public String getClientId() { | ||
return clientId; | ||
} | ||
|
||
public void setClientId(String clientId) { | ||
this.clientId = clientId; | ||
} | ||
|
||
public String getHost() { | ||
return host; | ||
} | ||
|
||
public void setHost(String host) { | ||
this.host = host; | ||
} | ||
|
||
public String getOpHost() { | ||
return opHost; | ||
} | ||
|
||
public void setOpHost(String opHost) { | ||
this.opHost = opHost; | ||
} | ||
|
||
public String getRedirectUrls() { | ||
return redirectUrls; | ||
} | ||
|
||
public void setRedirectUrls(String redirectUrls) { | ||
this.redirectUrls = redirectUrls; | ||
} | ||
|
||
public String getUserId() { | ||
return userId; | ||
} | ||
|
||
public void setUserId(String userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public String getUserSecret() { | ||
return userSecret; | ||
} | ||
|
||
public void setUserSecret(String userSecret) { | ||
this.userSecret = userSecret; | ||
} | ||
|
||
public String getUserInum() { | ||
return userInum; | ||
} | ||
|
||
public void setUserInum(String userInum) { | ||
this.userInum = userInum; | ||
} | ||
|
||
public String getUserEmail() { | ||
return userEmail; | ||
} | ||
|
||
public void setUserEmail(String userEmail) { | ||
this.userEmail = userEmail; | ||
} | ||
|
||
public String getState() { | ||
return state; | ||
} | ||
|
||
public void setState(String state) { | ||
this.state = state; | ||
} | ||
|
||
public String getNonce() { | ||
return nonce; | ||
} | ||
|
||
public void setNonce(String nonce) { | ||
this.nonce = nonce; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return "AuthenticationDetails{" + | ||
"host='" + host + '\'' + | ||
", opHost='" + opHost + '\'' + | ||
", redirectUrls='" + redirectUrls + '\'' + | ||
", userId='" + userId + '\'' + | ||
", userSecret='" + userSecret + '\'' + | ||
", userInum='" + userInum + '\'' + | ||
", userEmail='" + userEmail + '\'' + | ||
", state='" + state + '\'' + | ||
", nonce='" + nonce + '\'' + | ||
", clientId='" + clientId + '\'' + | ||
'}'; | ||
} | ||
} |
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
Oops, something went wrong.