...
Code Block | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
@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()); ... } |
...