diff --git a/src/net/java/sip/communicator/plugin/sipaccregwizz/SIPAccountRegistrationWizard.java b/src/net/java/sip/communicator/plugin/sipaccregwizz/SIPAccountRegistrationWizard.java index 1f7e32a7e..6e830d0c1 100644 --- a/src/net/java/sip/communicator/plugin/sipaccregwizz/SIPAccountRegistrationWizard.java +++ b/src/net/java/sip/communicator/plugin/sipaccregwizz/SIPAccountRegistrationWizard.java @@ -645,6 +645,19 @@ public boolean isSignupSupported() return false; } + /** + * Returns true if the web sign up is supported by the current + * implementation, false - otherwise. + * @return true if the web sign up is supported by the current + * implementation, false - otherwise + */ + public boolean isWebSignupSupported() + { + String webSignupLinkName = getWebSignupLinkName(); + + return webSignupLinkName != null && webSignupLinkName.length() > 0; + } + /** * Sets the create account view of this registration wizard. */