/**
* Copyright 2012 Neurowork Consulting S.L.
*
* This file is part of eMobc.
*
* ActivityType.java
* eMobc Android Framework
*
* eMobc is free software: you can redistribute it and/or modify
* it under the terms of the Affero GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* eMobc is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the Affero GNU General Public License
* along with eMobc. If not, see <http://www.gnu.org/licenses/>.
*
*/
package com.emobc.android;
/**
* Enumerates all existing activity types.
* <p>
* <ul>
* <li><strong>COVER_ACTIVITY</strong>:
* </li>
* <li><strong>BUTTONS_ACTIVITY</strong>:
* </li>
* <li><strong>IMAGE_TEXT_DESCRIPTION_ACTIVITY</strong>:
* </li>
* <li><strong>IMAGE_LIST_ACTIVITY</strong>:
* </li>
* <li><strong>LIST_ACTIVITY</strong>:
* </li>
* <li><strong>VIDEO_ACTIVITY</strong>:
* </li>
* <li><strong>IMAGE_ZOOM_ACTIVITY</strong>:
* </li>
* <li><strong>IMAGE_GALLERY_ACTIVITY</strong>:
* </li>
* <li><strong>WEB_ACTIVITY</strong>:
* </li>
* <li><strong>QR_ACTIVITY</strong>:
* </li>
* <li><strong>FORM_ACTIVITY</strong>:
* </li>
* <li><strong>MAP_ACTIVITY</strong>:
* </li>
* <li><strong>PDF_ACTIVITY</strong>:
* </li>
* <li><strong>SOUND_ACTIVITY</strong>:
* </li>
* <li><strong>CALENDAR_ACTIVITY</strong>:
* </li>
* <li><strong>QUIZ_ACTIVITY</strong>:
* </li>
* <li><strong>AUDIO_ACTIVITY</strong>:
* </li>
* <li><strong>CANVAS_ACTIVITY</strong>:
* </li>
* <li><strong>PROFILE_ACTIVITY</strong>:
* this activity is similar to <tt>FORM_ACTIVITY</tt>, but its purpose is to retrieve user profile data.
* </li>
* <li><strong>CRUD_ACTIVITY</strong>: Define and manage CRUD operations.
* </li>
* <li><strong>SALE_ACTIVITY</strong>: shows a product width its description and a photograph and the possibility
* pay for it bia PayPal</li>
* </ul>
* @author Jorge E. Villaverde
* @author Manuel Mora Cuesta
* @author Jonatan Alcocer Luna
*/
public enum ActivityType {
COVER_ACTIVITY,
BUTTONS_ACTIVITY,
IMAGE_TEXT_DESCRIPTION_ACTIVITY,
IMAGE_LIST_ACTIVITY,
LIST_ACTIVITY,
VIDEO_ACTIVITY,
IMAGE_ZOOM_ACTIVITY,
IMAGE_GALLERY_ACTIVITY,
WEB_ACTIVITY,
QR_ACTIVITY,
FORM_ACTIVITY,
MAP_ACTIVITY,
PDF_ACTIVITY,
SOUND_ACTIVITY,
CALENDAR_ACTIVITY,
QUIZ_ACTIVITY,
AUDIO_ACTIVITY,
CANVAS_ACTIVITY,
CRUD_ACTIVITY,
PROFILE_ACTIVITY,
SEARCH_ACTIVITY,
SALE_ACTIVITY;
}