diff --git a/core/java/android/app/admin/DevicePolicyManager.java b/core/java/android/app/admin/DevicePolicyManager.java
index b9243270dcaae..571e982a906c3 100644
--- a/core/java/android/app/admin/DevicePolicyManager.java
+++ b/core/java/android/app/admin/DevicePolicyManager.java
@@ -5849,8 +5849,43 @@ public class DevicePolicyManager {
/**
* Called by the profile owner of a managed profile to obtain a {@link DevicePolicyManager}
* whose calls act on the parent profile.
- *
- * Note only some methods will work on the parent Manager.
+ *
+ *
The following methods are supported for the parent instance, all other methods will
+ * throw a SecurityException when called on the parent instance:
+ *
+ * - {@link #getPasswordQuality}
+ * - {@link #setPasswordQuality}
+ * - {@link #getPasswordMinimumLength}
+ * - {@link #setPasswordMinimumLength}
+ * - {@link #getPasswordMinimumUpperCase}
+ * - {@link #setPasswordMinimumUpperCase}
+ * - {@link #getPasswordMinimumLowerCase}
+ * - {@link #setPasswordMinimumLowerCase}
+ * - {@link #getPasswordMinimumLetters}
+ * - {@link #setPasswordMinimumLetters}
+ * - {@link #getPasswordMinimumNumeric}
+ * - {@link #setPasswordMinimumNumeric}
+ * - {@link #getPasswordMinimumSymbols}
+ * - {@link #setPasswordMinimumSymbols}
+ * - {@link #getPasswordMinimumNonLetter}
+ * - {@link #setPasswordMinimumNonLetter}
+ * - {@link #getPasswordHistoryLength}
+ * - {@link #setPasswordHistoryLength}
+ * - {@link #getPasswordExpirationTimeout}
+ * - {@link #setPasswordExpirationTimeout}
+ * - {@link #getPasswordExpiration}
+ * - {@link #isActivePasswordSufficient}
+ * - {@link #getCurrentFailedPasswordAttempts}
+ * - {@link #getMaximumFailedPasswordsForWipe}
+ * - {@link #setMaximumFailedPasswordsForWipe}
+ * - {@link #getMaximumTimeToLock}
+ * - {@link #setMaximumTimeToLock}
+ * - {@link #lockNow}
+ * - {@link #getKeyguardDisabledFeatures}
+ * - {@link #setKeyguardDisabledFeatures}
+ * - {@link #getTrustAgentConfiguration}
+ * - {@link #setTrustAgentConfiguration}
+ *
*
* @return a new instance of {@link DevicePolicyManager} that acts on the parent profile.
* @throws SecurityException if {@code admin} is not a profile owner.