-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-custom-auth-issues
- Loading branch information
Showing
135 changed files
with
1,865 additions
and
688 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
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
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
154 changes: 154 additions & 0 deletions
154
...extend/java/org/wso2/carbon/identity/api/server/action/management/v1/PasswordSharing.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,154 @@ | ||
/* | ||
* Copyright (c) 2025, 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.action.management.v1; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.swagger.annotations.ApiModelProperty; | ||
|
||
import java.util.Objects; | ||
|
||
import javax.validation.Valid; | ||
import javax.validation.constraints.NotNull; | ||
import javax.xml.bind.annotation.XmlEnum; | ||
import javax.xml.bind.annotation.XmlEnumValue; | ||
import javax.xml.bind.annotation.XmlType; | ||
|
||
/** | ||
* Password Sharing. | ||
*/ | ||
public class PasswordSharing { | ||
|
||
/** | ||
* Enum for password sharing format. | ||
*/ | ||
@XmlType(name = "FormatEnum") | ||
@XmlEnum(String.class) | ||
public enum FormatEnum { | ||
|
||
@XmlEnumValue("PLAIN_TEXT") PLAIN_TEXT(String.valueOf("PLAIN_TEXT")), | ||
@XmlEnumValue("SHA256_HASHED") SHA256_HASHED(String.valueOf("SHA256_HASHED")); | ||
|
||
private final String value; | ||
|
||
FormatEnum(String v) { | ||
value = v; | ||
} | ||
|
||
public String value() { | ||
return value; | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
return String.valueOf(value); | ||
} | ||
|
||
public static FormatEnum fromValue(String value) { | ||
for (FormatEnum b : FormatEnum.values()) { | ||
if (b.value.equals(value)) { | ||
return b; | ||
} | ||
} | ||
throw new IllegalArgumentException("Unexpected value '" + value + "'"); | ||
} | ||
} | ||
|
||
private FormatEnum format; | ||
private String certificate; | ||
|
||
public PasswordSharing format(FormatEnum format) { | ||
|
||
this.format = format; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(example = "Plain Text", required = true) | ||
@JsonProperty("format") | ||
@Valid | ||
@NotNull(message = "Property format cannot be null.") | ||
public FormatEnum getFormat() { | ||
|
||
return format; | ||
} | ||
public void setFormat(FormatEnum format) { | ||
|
||
this.format = format; | ||
} | ||
|
||
public PasswordSharing certificate(String certificate) { | ||
|
||
this.certificate = certificate; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty() | ||
@JsonProperty("certificate") | ||
@Valid | ||
public String getCertificate() { | ||
|
||
return certificate; | ||
} | ||
|
||
public void setCertificate(String certificate) { | ||
|
||
this.certificate = certificate; | ||
} | ||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
|
||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
PasswordSharing passwordSharing = (PasswordSharing) o; | ||
return Objects.equals(this.format, passwordSharing.format) && | ||
Objects.equals(this.certificate, passwordSharing.certificate); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(format, certificate); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
|
||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class PasswordSharing {\n"); | ||
sb.append(" format: ").append(toIndentedString(format)).append("\n"); | ||
sb.append(" certificate: ").append(toIndentedString(certificate)).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 "); | ||
} | ||
} |
114 changes: 114 additions & 0 deletions
114
.../org/wso2/carbon/identity/api/server/action/management/v1/PasswordSharingUpdateModel.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,114 @@ | ||
/* | ||
* Copyright (c) 2025, 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.action.management.v1; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import io.swagger.annotations.ApiModelProperty; | ||
|
||
import java.util.Objects; | ||
|
||
import javax.validation.Valid; | ||
|
||
/** | ||
* Password sharing update model. | ||
**/ | ||
public class PasswordSharingUpdateModel { | ||
|
||
private PasswordSharing.FormatEnum format; | ||
private String certificate; | ||
|
||
public PasswordSharingUpdateModel format(PasswordSharing.FormatEnum format) { | ||
|
||
this.format = format; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(example = "Plain Text", required = true) | ||
@JsonProperty("format") | ||
@Valid | ||
public PasswordSharing.FormatEnum getFormat() { | ||
|
||
return format; | ||
} | ||
public void setFormat(PasswordSharing.FormatEnum format) { | ||
|
||
this.format = format; | ||
} | ||
|
||
public PasswordSharingUpdateModel certificate(String certificate) { | ||
|
||
this.certificate = certificate; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty() | ||
@JsonProperty("certificate") | ||
@Valid | ||
public String getCertificate() { | ||
|
||
return certificate; | ||
} | ||
|
||
public void setCertificate(String certificate) { | ||
|
||
this.certificate = certificate; | ||
} | ||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
|
||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
PasswordSharingUpdateModel passwordSharing = (PasswordSharingUpdateModel) o; | ||
return Objects.equals(this.format, passwordSharing.format) && | ||
Objects.equals(this.certificate, passwordSharing.certificate); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(format, certificate); | ||
} | ||
|
||
@Override | ||
public String toString() { | ||
|
||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class PasswordSharingUpdateModel {\n"); | ||
sb.append(" format: ").append(toIndentedString(format)).append("\n"); | ||
sb.append(" certificate: ").append(toIndentedString(certificate)).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.