Index: trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 16124)
+++ trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 16127)
@@ -260,4 +260,6 @@
     /** Text of a text attribution displayed when using the imagery */
     private String attributionText;
+    /** Link to the privacy policy of the operator */
+    private String privacyPolicyURL;
     /** Link to a reference stating the permission for OSM usage */
     private String permissionReferenceURL;
@@ -828,4 +830,14 @@
     }
 
+    /**
+     * Return the privacy policy URL.
+     * @return The url
+     * @see #setPrivacyPolicyURL
+     * @since 16127
+     */
+    public String getPrivacyPolicyURL() {
+        return privacyPolicyURL;
+    }
+
     @Override
     public Image getAttributionImage() {
@@ -905,4 +917,14 @@
     public void setPermissionReferenceURL(String url) {
         permissionReferenceURL = url;
+    }
+
+    /**
+     * Sets the privacy policy URL.
+     * @param url The url.
+     * @see #getPrivacyPolicyURL()
+     * @since 16127
+     */
+    public void setPrivacyPolicyURL(String url) {
+        privacyPolicyURL = url;
     }
 
Index: trunk/src/org/openstreetmap/josm/io/imagery/ImageryReader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/imagery/ImageryReader.java	(revision 16124)
+++ trunk/src/org/openstreetmap/josm/io/imagery/ImageryReader.java	(revision 16127)
@@ -220,4 +220,5 @@
                         "terms-of-use-text",
                         "terms-of-use-url",
+                        "privacy-policy-url",
                         "permission-ref",
                         "country-code",
@@ -485,4 +486,7 @@
                     entry.setTermsOfUseText(accumulator.toString());
                     break;
+                case "privacy-policy-url":
+                    entry.setPrivacyPolicyURL(accumulator.toString());
+                    break;
                 case "permission-ref":
                     entry.setPermissionReferenceURL(accumulator.toString());
