-
Notifications
You must be signed in to change notification settings - Fork 10
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 #90 from hyperledger-labs/feature/release-0.10.4
changes for aca-py version 0.10.5
- Loading branch information
Showing
55 changed files
with
601 additions
and
83 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
31 changes: 31 additions & 0 deletions
31
src/main/java/org/hyperledger/acy_py/generated/model/ConfigurableWriteLedgers.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,31 @@ | ||
/* | ||
* aca-py client | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* The version of the OpenAPI document: v0.7.3 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package org.hyperledger.acy_py.generated.model; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* ConfigurableWriteLedgers | ||
*/ | ||
|
||
@lombok.Data | ||
@lombok.AllArgsConstructor | ||
@lombok.NoArgsConstructor | ||
@lombok.Builder | ||
public class ConfigurableWriteLedgers { | ||
public static final String SERIALIZED_NAME_WRITE_LEDGERS = "write_ledgers"; | ||
@SerializedName(SERIALIZED_NAME_WRITE_LEDGERS) | ||
private List<String> writeLedgers = null; | ||
} |
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
38 changes: 38 additions & 0 deletions
38
src/main/java/org/hyperledger/acy_py/generated/model/JWSCreate.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,38 @@ | ||
/* | ||
* aca-py client | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* The version of the OpenAPI document: v0.7.3 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package org.hyperledger.acy_py.generated.model; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* JWSCreate | ||
*/ | ||
|
||
@lombok.Data | ||
@lombok.AllArgsConstructor | ||
@lombok.NoArgsConstructor | ||
@lombok.Builder | ||
public class JWSCreate { | ||
public static final String SERIALIZED_NAME_DID = "did"; | ||
@SerializedName(SERIALIZED_NAME_DID) | ||
private String did; | ||
public static final String SERIALIZED_NAME_HEADERS = "headers"; | ||
@SerializedName(SERIALIZED_NAME_HEADERS) | ||
private Object headers; | ||
public static final String SERIALIZED_NAME_PAYLOAD = "payload"; | ||
@SerializedName(SERIALIZED_NAME_PAYLOAD) | ||
private Object payload; | ||
public static final String SERIALIZED_NAME_VERIFICATION_METHOD = "verificationMethod"; | ||
@SerializedName(SERIALIZED_NAME_VERIFICATION_METHOD) | ||
private String verificationMethod; | ||
} |
29 changes: 29 additions & 0 deletions
29
src/main/java/org/hyperledger/acy_py/generated/model/JWSVerify.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,29 @@ | ||
/* | ||
* aca-py client | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* The version of the OpenAPI document: v0.7.3 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package org.hyperledger.acy_py.generated.model; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* JWSVerify | ||
*/ | ||
|
||
@lombok.Data | ||
@lombok.AllArgsConstructor | ||
@lombok.NoArgsConstructor | ||
@lombok.Builder | ||
public class JWSVerify { | ||
public static final String SERIALIZED_NAME_JWT = "jwt"; | ||
@SerializedName(SERIALIZED_NAME_JWT) | ||
private String jwt; | ||
} |
41 changes: 41 additions & 0 deletions
41
src/main/java/org/hyperledger/acy_py/generated/model/JWSVerifyResponse.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,41 @@ | ||
/* | ||
* aca-py client | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* The version of the OpenAPI document: v0.7.3 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package org.hyperledger.acy_py.generated.model; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* JWSVerifyResponse | ||
*/ | ||
|
||
@lombok.Data | ||
@lombok.AllArgsConstructor | ||
@lombok.NoArgsConstructor | ||
@lombok.Builder | ||
public class JWSVerifyResponse { | ||
public static final String SERIALIZED_NAME_ERROR = "error"; | ||
@SerializedName(SERIALIZED_NAME_ERROR) | ||
private String error; | ||
public static final String SERIALIZED_NAME_HEADERS = "headers"; | ||
@SerializedName(SERIALIZED_NAME_HEADERS) | ||
private Object headers; | ||
public static final String SERIALIZED_NAME_KID = "kid"; | ||
@SerializedName(SERIALIZED_NAME_KID) | ||
private String kid; | ||
public static final String SERIALIZED_NAME_PAYLOAD = "payload"; | ||
@SerializedName(SERIALIZED_NAME_PAYLOAD) | ||
private Object payload; | ||
public static final String SERIALIZED_NAME_VALID = "valid"; | ||
@SerializedName(SERIALIZED_NAME_VALID) | ||
private Boolean valid; | ||
} |
29 changes: 29 additions & 0 deletions
29
src/main/java/org/hyperledger/acy_py/generated/model/ProfileSettings.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,29 @@ | ||
/* | ||
* aca-py client | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* The version of the OpenAPI document: v0.7.3 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package org.hyperledger.acy_py.generated.model; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* ProfileSettings | ||
*/ | ||
|
||
@lombok.Data | ||
@lombok.AllArgsConstructor | ||
@lombok.NoArgsConstructor | ||
@lombok.Builder | ||
public class ProfileSettings { | ||
public static final String SERIALIZED_NAME_SETTINGS = "settings"; | ||
@SerializedName(SERIALIZED_NAME_SETTINGS) | ||
private Object settings; | ||
} |
29 changes: 29 additions & 0 deletions
29
src/main/java/org/hyperledger/acy_py/generated/model/UpdateProfileSettings.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,29 @@ | ||
/* | ||
* aca-py client | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* The version of the OpenAPI document: v0.7.3 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package org.hyperledger.acy_py.generated.model; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
|
||
/** | ||
* UpdateProfileSettings | ||
*/ | ||
|
||
@lombok.Data | ||
@lombok.AllArgsConstructor | ||
@lombok.NoArgsConstructor | ||
@lombok.Builder | ||
public class UpdateProfileSettings { | ||
public static final String SERIALIZED_NAME_EXTRA_SETTINGS = "extra_settings"; | ||
@SerializedName(SERIALIZED_NAME_EXTRA_SETTINGS) | ||
private Object extraSettings; | ||
} |
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.