Class KeyQueryResponse
- java.lang.Object
-
- io.github.ma1uta.matrix.server.model.federation.KeyQueryResponse
-
public class KeyQueryResponse extends Object
Key query response.
-
-
Field Summary
Fields Modifier and Type Field Description private Map<String,Map<String,DeviceKeysWithUnsigned>>
deviceKeys
Required.
-
Constructor Summary
Constructors Constructor Description KeyQueryResponse()
-
Method Summary
Modifier and Type Method Description Map<String,Map<String,DeviceKeysWithUnsigned>>
getDeviceKeys()
void
setDeviceKeys(Map<String,Map<String,DeviceKeysWithUnsigned>> deviceKeys)
-
-
-
Field Detail
-
deviceKeys
private Map<String,Map<String,DeviceKeysWithUnsigned>> deviceKeys
Required. Information on the queried devices. A map from user ID, to a map from device ID to device information. For each device, the information returned will be the same as uploaded via /keys/upload, with the addition of an unsigned property.
-
-
Method Detail
-
getDeviceKeys
public Map<String,Map<String,DeviceKeysWithUnsigned>> getDeviceKeys()
-
setDeviceKeys
public void setDeviceKeys(Map<String,Map<String,DeviceKeysWithUnsigned>> deviceKeys)
-
-