diff --git a/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java b/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java
new file mode 100644
index 000000000..162f79150
--- /dev/null
+++ b/src/net/java/sip/communicator/service/gui/ExtendedAccountRegistrationWizard.java
@@ -0,0 +1,29 @@
+/*
+ * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license. See terms of license at gnu.org.
+ */
+package net.java.sip.communicator.service.gui;
+
+/**
+ * The ExtendedAccountRegistrationWizard allows to specify if a sign up
+ * form is supported.
+ *
+ * @author Yana Stamcheva
+ */
+public interface ExtendedAccountRegistrationWizard
+ extends AccountRegistrationWizard
+{
+ /**
+ * Indicates if a sign up form is supported by this wizard.
+ *
+ * @return true if a sign up form is supported by this wizard,
+ * false - otherwise
+ */
+ public boolean isSignupSupported();
+
+ /**
+ * Sets the create account view of this registration wizard.
+ */
+ public void setCreateAccountView();
+}