SharedAccessPolicyHandler<T> Class

  • java.lang.Object
    • DefaultHandler
      • com.microsoft.azure.storage.SharedAccessPolicyHandler<T>

Type Parameters

T

public class SharedAccessPolicyHandler

RESERVED FOR INTERNAL USE. A class used to deserialize SharedAccessPolicies.

Method Summary

Modifier and Type Method and Description
void characters(char ch[], int start, int length)
void endElement(String uri, String localName, String qName)
static<T extends SharedAccessPolicy> HashMap<String, T> getAccessIdentifiers(final InputStream stream, final Class<T> cls)

RESERVED FOR INTERNAL USE. Gets the HashMap of SharedAccessPolicies from the response.

void startElement(String uri, String localName, String qName, Attributes attributes)

Method Details

characters

public void characters(char ch[], int start, int length)

Parameters:

ch
start
length

endElement

public void endElement(String uri, String localName, String qName)

Parameters:

uri
localName
qName

getAccessIdentifiers

public static static HashMap getAccessIdentifiers(final InputStream stream, final Class cls)

RESERVED FOR INTERNAL USE. Gets the HashMap of SharedAccessPolicies from the response.

Parameters:

stream - the stream to read from
cls - the SharedAccessPolicy class type

Returns:

the HashMap of SharedAccessPolicies from the response

Throws:

SAXException
ParserConfigurationException
IOException

startElement

public void startElement(String uri, String localName, String qName, Attributes attributes)

Parameters:

uri
localName
qName
attributes

Applies to