private void getPoint(JSONObject requestObject, PrintWriter out) throws IOException, JSONException {
GeoPoint geoPoint = new GeoPoint(requestObject.getDouble("lat"), requestObject.getDouble("lng"));
AttributeValue rangeKeyAttributeValue = new AttributeValue().withS(requestObject.getString("rangeKey"));
GetPointRequest getPointRequest = new GetPointRequest(geoPoint, rangeKeyAttributeValue);
GetPointResult getPointResult = geoDataManager.getPoint(getPointRequest);
printGetPointRequest(getPointResult, out);
}