-
Notifications
You must be signed in to change notification settings - Fork 145
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 #504 from AnuradhaSK/role-association
Add capability to associate v2 roles with applications
- Loading branch information
Showing
11 changed files
with
523 additions
and
30 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
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
166 changes: 166 additions & 0 deletions
166
.../org/wso2/carbon/identity/api/server/application/management/v1/AssociatedRolesConfig.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,166 @@ | ||
/* | ||
* Copyright (c) 2023, WSO2 LLC. (http://www.wso2.com). | ||
* | ||
* WSO2 LLC. licenses this file to you under the Apache License, | ||
* Version 2.0 (the "License"); you may not use this file except | ||
* in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, | ||
* software distributed under the License is distributed on an | ||
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
* KIND, either express or implied. See the License for the | ||
* specific language governing permissions and limitations | ||
* under the License. | ||
*/ | ||
|
||
package org.wso2.carbon.identity.api.server.application.management.v1; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonCreator; | ||
import io.swagger.annotations.ApiModel; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import org.wso2.carbon.identity.api.server.application.management.v1.Role; | ||
import javax.validation.constraints.*; | ||
|
||
|
||
import io.swagger.annotations.*; | ||
import java.util.Objects; | ||
import javax.validation.Valid; | ||
import javax.xml.bind.annotation.*; | ||
|
||
public class AssociatedRolesConfig { | ||
|
||
|
||
@XmlType(name="AllowedAudienceEnum") | ||
@XmlEnum(String.class) | ||
public enum AllowedAudienceEnum { | ||
|
||
@XmlEnumValue("ORGANIZATION") ORGANIZATION(String.valueOf("ORGANIZATION")), @XmlEnumValue("APPLICATION") APPLICATION(String.valueOf("APPLICATION")); | ||
|
||
|
||
private String value; | ||
|
||
AllowedAudienceEnum(String v) { | ||
value = v; | ||
} | ||
|
||
public String value() { | ||
return value; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return String.valueOf(value); | ||
} | ||
|
||
public static AllowedAudienceEnum fromValue(String value) { | ||
for (AllowedAudienceEnum b : AllowedAudienceEnum.values()) { | ||
if (b.value.equals(value)) { | ||
return b; | ||
} | ||
} | ||
throw new IllegalArgumentException("Unexpected value '" + value + "'"); | ||
} | ||
} | ||
|
||
private AllowedAudienceEnum allowedAudience = AllowedAudienceEnum.ORGANIZATION; | ||
private List<Role> roles = null; | ||
|
||
|
||
/** | ||
**/ | ||
public AssociatedRolesConfig allowedAudience(AllowedAudienceEnum allowedAudience) { | ||
|
||
this.allowedAudience = allowedAudience; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(example = "ORGANIZATION", required = true, value = "") | ||
@JsonProperty("allowedAudience") | ||
@Valid | ||
@NotNull(message = "Property allowedAudience cannot be null.") | ||
|
||
public AllowedAudienceEnum getAllowedAudience() { | ||
return allowedAudience; | ||
} | ||
public void setAllowedAudience(AllowedAudienceEnum allowedAudience) { | ||
this.allowedAudience = allowedAudience; | ||
} | ||
|
||
/** | ||
**/ | ||
public AssociatedRolesConfig roles(List<Role> roles) { | ||
|
||
this.roles = roles; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(value = "") | ||
@JsonProperty("roles") | ||
@Valid | ||
public List<Role> getRoles() { | ||
return roles; | ||
} | ||
public void setRoles(List<Role> roles) { | ||
this.roles = roles; | ||
} | ||
|
||
public AssociatedRolesConfig addRolesItem(Role rolesItem) { | ||
if (this.roles == null) { | ||
this.roles = new ArrayList<>(); | ||
} | ||
this.roles.add(rolesItem); | ||
return this; | ||
} | ||
|
||
|
||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
|
||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
AssociatedRolesConfig associatedRolesConfig = (AssociatedRolesConfig) o; | ||
return Objects.equals(this.allowedAudience, associatedRolesConfig.allowedAudience) && | ||
Objects.equals(this.roles, associatedRolesConfig.roles); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(allowedAudience, roles); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
|
||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class AssociatedRolesConfig {\n"); | ||
|
||
sb.append(" allowedAudience: ").append(toIndentedString(allowedAudience)).append("\n"); | ||
sb.append(" roles: ").append(toIndentedString(roles)).append("\n"); | ||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
|
||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n"); | ||
} | ||
} | ||
|
Oops, something went wrong.