source: dispositivos_moviles/TibisayMovil/src/ve/gob/cenditel/tibisaymovil/ActivityResult.java

Last change on this file was 8379cd8, checked in by Antonio Araujo Brett <aaraujo@…>, 10 years ago

Agregado encabezado de licencia a archivos fuentes.

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2Tibisay Movil
3
4Copyright (C) 2013 Antonio Araujo (aaraujo@cenditel.gob.ve), Jose Ruiz
5(jruiz@cenditel.gob.ve), Fundacion Centro Nacional de Desarrollo e
6Investigacion en Tecnologias Libres - CENDITEL.
7
8La Fundación CENDITEL concede permiso para usar, copiar, distribuir y/o
9modificar este programa, reconociendo el derecho que la humanidad posee al
10libre acceso al conocimiento, bajo los términos de la licencia de software
11GPL versión 2.0 de la Free Software Foundation.
12
13Este programa se distribuye con la esperanza de que sea util, pero SIN
14NINGUNA GARANTIA; tampoco las implicitas garantias de MERCANTILIDAD o
15ADECUACION A UN PROPOSITO PARTICULAR.
16
17Para mayor información sobre los términos de la licencia ver el archivo
18llamado "gpl-2.0.txt" en ingles.
19*/
20
21
22package ve.gob.cenditel.tibisaymovil; 
23
24import android.app.Activity;
25
26/**
27 * Possible activities result codes.
28 *
29 * @see {@link Activity#startActivityForResult(android.content.Intent, int)}, {@link Activity#setResult(int)} and
30 *      {@link Activity#setResult(int, android.content.Intent)}
31 *
32 * @author José M. Prieto (jmprieto@emergya.com)
33 */
34public class ActivityResult {
35
36    /**
37     * Return the alias of a private key to be used to sign files (String).
38     */
39    public static final int PRIVATE_KEY_ALIAS = 1;
40
41    /**
42     * Return the Uri of a PKCS12 file to import.
43     */
44    public static final int IMPORT_CERTIFICATE = 2;
45
46    /**
47     * Check the validity of a certificate.
48     */
49    public static final int CHECK_CERTIFICATE_VALIDITY = 3;
50
51    /**
52     * Return a confirmed list of files to sign.
53     */
54        public static final int FILES_CONFIRMATED = 4;
55
56    /**
57     * In case user wants to sign again from history tab.
58     */
59        public static final int HISTORY_SIGNBACK = 5;
60}
Note: See TracBrowser for help on using the repository browser.