source: dispositivos_moviles/TibisayMovil/src/ve/gob/cenditel/tibisaymovil/KeyChainClientActivity.java @ 42e7061

Last change on this file since 42e7061 was 288126d, checked in by Jose Ruiz <joseruiz@…>, 11 years ago

Manejo de repositorio de certificados y firma con pkcs7

  • Property mode set to 100644
File size: 450 bytes
Line 
1package ve.gob.cenditel.tibisaymovil;
2
3import android.app.Activity;
4
5/**
6 * Activity that uses the {@link KeyChainStrategy}. The {@link KeyChainStrategy#choosePrivateKeyAlias()} method will
7 * call {@link #setAlias(String)} passing the alias for the key the user has selected.
8 *
9 * @author José M. Prieto (jmprieto@emergya.com)
10 */
11public abstract class KeyChainClientActivity extends Activity {
12
13    public abstract void setAlias(String alias);
14}
Note: See TracBrowser for help on using the repository browser.