mitreid-connect
|
公開メンバ関数 | |
void | exportExtensionData (JsonWriter writer) throws IOException |
boolean | importExtensionData (String name, JsonReader reader) throws IOException |
void | fixExtensionObjectReferences (MITREidDataServiceMaps maps) |
boolean | supportsVersion (String version) |
A modular extension to the data import/export layer. Any instances of this need to be declared as beans to be picked up by the data services.
void org.mitre.openid.connect.service.MITREidDataServiceExtension.exportExtensionData | ( | JsonWriter | writer | ) | throws IOException |
Export any data for this extension. This is called from the top level object. All extensions MUST return the writer to a state such that another member of the top level object can be written next.
writer |
org.mitre.uma.service.impl.UmaDataServiceExtension_1_3で実装されています。
void org.mitre.openid.connect.service.MITREidDataServiceExtension.fixExtensionObjectReferences | ( | MITREidDataServiceMaps | maps | ) |
Signal the extension to wrap up all object processing and finalize its
org.mitre.uma.service.impl.UmaDataServiceExtension_1_3で実装されています。
boolean org.mitre.openid.connect.service.MITREidDataServiceExtension.importExtensionData | ( | String | name, |
JsonReader | reader | ||
) | throws IOException |
Import data that's part of this extension. This is called from the context of reading the top level object. All extensions MUST return the reader to a state such that another member of the top level object can be read next. The name of the data element being imported is passed in as name. If the extension does not support this data element, it must return without advancing the reader.
Returns "true" if the item was processed, "false" otherwise.
reader |
org.mitre.uma.service.impl.UmaDataServiceExtension_1_3で実装されています。
boolean org.mitre.openid.connect.service.MITREidDataServiceExtension.supportsVersion | ( | String | version | ) |