Class PPaymentWizard

All Implemented Interfaces:
PCCPage, PWizardPage, PAppComponent, PClientComponent, PCollectDataListener, PComponent, PComponentAttribute, PViewDataChangeListener, ContainerListener, ImageObserver, MenuContainer, PropertyChangeListener, Serializable, EventListener, Accessible

public class PPaymentWizard extends PIACustomizablePanel implements PWizardPage, PropertyChangeListener
An account creation page that hosts the General, Hierarchy Setup, and Sponsorship panels. Because these panels are used to collect key pieces of data that can affect data collection later on during account creation, it is expected that the user will interact with this page early in the account creation process.

This page supports the addition of custom panels within the collapsable General section and at the end below the Sponsorship section. Something along the lines of:
 public class MyGeneralPage extends PGeneralPage {
                public MyGeneralPage() {
                        addPanelToEnd(new MyCustomPanel());
                        addPanelToEnd(new MyOtherCustomPanel());
                        setCustomGeneralPanel(new YetAnotherCustomPanel());
                }
 }
 
You will also need to add the following to Customized.properties from the Customer Care SDK:
com.portal.app.cc.PContactPage.subclass=MyGeneralPage
See Also:
  • Constructor Details

    • PPaymentWizard

      public PPaymentWizard()
      put your documentation comment here
  • Method Details