...
Code Block |
---|
language | java |
---|
title | submitButton() |
---|
linenumbers | true |
---|
collapse | true |
---|
|
@ManagedBean(name = "setPinCodeView", eager = true)
@ViewScoped
public class SetPinCodeView extends DataEntryView {
@EJB private CRMProcessExampleProviderBean processExampleProvider;
...
public void submitButton() throws Exception {
...
SetPinCodeAction setPinCodeAction = new SetPinCodeAction();
setPinCodeAction.setProvProvider(provider);
setPinCodeAction.setPINCode(getPINCode());
processExampleProvider.sendCustomProvisioningCommandsToHandler(setPinCodeAction, provider.getProtocol());
...
} |
On clicking the submit button, the submitButton() method of the SetPinCodeView class will be called and the custom provisioning request will be sent to the provisioning provider handler.
Ui expand |
---|
title | Set Pin Code Action Page |
---|
|
Image RemovedImage Added
|