Example #1
0
 /**
  * Replies the current set of advanced OAuth parameters in this UI
  *
  * @return the current set of advanced OAuth parameters in this UI
  */
 public OAuthParameters getOAuthParameters() {
   return pnlAdvancedProperties.getAdvancedParameters();
 }
Example #2
0
 /**
  * Initializes the authorisation UI with preference values in <code>pref</code>.
  *
  * @param pref the preferences. Must not be null.
  * @throws IllegalArgumentException thrown if pref is null
  */
 public void initFromPreferences(Preferences pref) throws IllegalArgumentException {
   CheckParameterUtil.ensureParameterNotNull(pref, "pref");
   pnlAdvancedProperties.initFromPreferences(pref);
 }