Develop > Presentation layer > Customize WebSphere Commerce Accelerator, Organization Administration Console, or Administration Console > Tools framework > Wizards
Sample: Wizard resources.xml file
This sample defines several wizards, including the one described in Add a wizard.
The resources.xml sample file is...
- WC_INSTALL/xml/tools/reporting
- workspace_dir/wc/xml/tools/reporting
<?xml version="1.0" encoding="UTF-8"?> <!-- This is the configuration file for the reporting objects that are available in the runtime model --> <resourceConfig> <resource nameSpace="sample"> <!-- resource bundle file mappings --> <resourceBundle name="reportingString" bundle="com.ibm.commerce.tools.reporting.properties.ReportingString" /> <resourceBundle name="resource" bundle="com.ibm.commerce.tools.reporting.properties.Reporting" /> <!-- XML file mappings --> <resourceXML name="sampleWizard" file="reporting/newWizard.xml" /> <resourceXML name="OfflineReportWizard" file="reporting/OfflineReportWizard.xml" /> <resourceXML name="ReportContentWizard" file="reporting/ReportContentWizard.xml" /> <resourceXML name="ReportStoreOverViewWizard" file="reporting/ReportStoreOverViewWizard.xml" />
<!-- BRM reports XML file mappings --> <resourceXML name="OrdersByAccountReport" file="reporting/OrdersByAccountReport.xml" /> <resourceXML name="OrdersByAccountReportDialog" file="reporting/OrdersByAccountReportDialog.xml" /> <resourceXML name="OrdersByAccountReportOutputDialog" file="reporting/OrdersByAccountReportOutputDialog.xml" /> <!-- SWIM Operational report mappings --> <resourceXML name="SiteOverviewReport" file="reporting/SiteOverviewReport.xml" /> <resourceXML name="SiteOverviewReportDialog" file="reporting/SiteOverviewReportDialog.xml" /> <resourceXML name="SiteOverviewReportOutputDialog" file="reporting/SiteOverviewReportOutputDialog.xml" /> </resource> </resourceConfig>
Related concepts
Related tasks