10-07-2010 03:58 PM
<table cellpadding="2" cellspacing="2" border="0" width="100%">
<tr>
<td colspan="2" class="mainSubTitle"><h:outputText value="#{msg.set_action_values}" /></td>
</tr>
<tr><td colspan="2" class="paddingRow"></td></tr>
<tr>
<td><nobr><h:outputText value="Siperian ID:"/></nobr></td>
<td width="95%">
<h:inputText value="#{WizardManager.bean.actionProperties.siperian-id}"
size="20" maxlength="20" />
</td>
</tr>
<tr>
<td><nobr><h:outputText value="Siebel ID:"/></nobr></td>
<td width="95%">
<h:inputText value="#{WizardManager.bean.actionProperties.siebel-id}"
size="20" maxlength="20" />
</td>
</tr>
<tr><td class="paddingRow"></td></tr>
</table>
@Override
public String getJSPPath() {
return "/jsp/extension/actions/" + MoveToNamedFolderActionExecuter.NAME + ".jsp";
}
@Override
public void prepareForSave(Map<String, Serializable> actionProps, Map<String, Serializable> repoProps) {
repoProps.put(MoveToNamedFolderActionExecuter.PARAM_SIPERIAN_ID, (String)actionProps.get(MoveToNamedFolderActionExecuter.PARAM_SIPERIAN_ID));
repoProps.put(MoveToNamedFolderActionExecuter.PARAM_SIEBEL_ID, (String)actionProps.get(MoveToNamedFolderActionExecuter.PARAM_SIEBEL_ID));
}
@Override
public void prepareForEdit(Map<String, Serializable> actionProps, Map<String, Serializable> repoProps) {
actionProps.put(MoveToNamedFolderActionExecuter.PARAM_SIPERIAN_ID, (String)repoProps.get(MoveToNamedFolderActionExecuter.PARAM_SIPERIAN_ID));
actionProps.put(MoveToNamedFolderActionExecuter.PARAM_SIEBEL_ID, (String)repoProps.get(MoveToNamedFolderActionExecuter.PARAM_SIEBEL_ID));
}
@Override
public String generateSummary(FacesContext context, IWizardBean wizard,
Map<String, Serializable> actionProps) {
return "generateSummary";
}
10-07-2010 05:08 PM
10-07-2010 11:00 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.