-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Tables list/get access policies changes #22161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
d639959
bc47bfd
b0b3036
189be66
c28d82a
4ae48ed
4181f10
31df9cb
7a5e74f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| // Copyright (c) Microsoft Corporation. All rights reserved. | ||
| // Licensed under the MIT License. | ||
| package com.azure.data.tables.implementation.models; | ||
|
|
||
| import com.fasterxml.jackson.annotation.JsonCreator; | ||
| import com.fasterxml.jackson.annotation.JsonProperty; | ||
| import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty; | ||
| import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement; | ||
|
|
||
| import java.util.List; | ||
|
|
||
| /** A wrapper around List<SignedIdentifier> which provides top-level metadata for serialization. */ | ||
| @JacksonXmlRootElement(localName = "SignedIdentifiers") | ||
| public final class SignedIdentifiersWrapper { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there an issue to get the code generator working correctly to generate this type?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Honestly, I don't know how to get it to do that, so I added the class manually and was looking to add a transform later (once I learn enough about autorest). |
||
| @JacksonXmlProperty(localName = "SignedIdentifier") | ||
| private final List<SignedIdentifier> signedIdentifiers; | ||
|
|
||
| /** | ||
| * Creates an instance of SignedIdentifiersWrapper. | ||
| * | ||
| * @param signedIdentifiers the list. | ||
| */ | ||
| @JsonCreator | ||
| public SignedIdentifiersWrapper(@JsonProperty("SignedIdentifier") List<SignedIdentifier> signedIdentifiers) { | ||
| this.signedIdentifiers = signedIdentifiers; | ||
| } | ||
|
|
||
| /** | ||
| * Get the List<BlobSignedIdentifier> contained in this wrapper. | ||
| * | ||
| * @return the List<BlobSignedIdentifier>. | ||
| */ | ||
| public List<SignedIdentifier> items() { | ||
| return signedIdentifiers; | ||
| } | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.