Main Page | Packages | Class Hierarchy | Class List | Directories | File List | Class Members | Related Pages

ActionDB.java

00001 /*
00002  * OpenMobileIS - a free Java(TM) Framework for mobile applications Java(TM)
00003  * Copyright (C) 2004-2005 Philippe Delrieu
00004  * All rights reserved.
00005  * Contact: openmobileis@e-care.fr
00006  *
00007  * This library is free software; you can redistribute it and/or
00008  * modify it under the terms of the GNU Lesser General Public
00009  * License as published by the Free Software Foundation; either
00010  * version 2.1 of the License, or any later version.
00011  *
00012  * This library is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00015  * Lesser General Public License for more details.
00016  *
00017  * You should have received a copy of the GNU Lesser General Public
00018  * License along with this library; if not, write to the Free Software
00019  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
00020  * USA
00021  *
00022  *  Author : Philippe Delrieu
00023  * 
00024  */
00025 
00026 package org.openmobileis.synchro.openmsp.client.db;
00027 
00035 public final class ActionDB implements java.io.Serializable {
00036     
00037     public static final int ADD_ACTION=0;
00038     public static final int UPDATE_ACTION=1;
00039     public static final int DELETE_ACTION=2;
00040     static final long serialVersionUID = 5521257935120563452L;
00041   
00042                 private String actionObjectUID;
00043                 private String actionID;
00044     private int actionType;    
00045     private String actionServiceName;
00046 
00047     public ActionDB() {
00048     }
00049     
00051     public ActionDB(String serviceName, String uid, int type) {
00052                         actionObjectUID = uid;
00053       actionType = type;
00054       actionServiceName = serviceName;
00055                         actionID = ActionDB.getActionIdFromServiceAndUID(serviceName, uid);
00056     }
00057   public static String getActionIdFromServiceAndUID(String service, String uid) {
00058                 StringBuffer buff = new StringBuffer(service).append('/').append(uid);
00059                 return buff.toString();
00060   }
00061     
00062         public String getActionObjectUID() {
00063                 return actionObjectUID;
00064         }
00065     
00066         public String getActionID() {
00067                 return actionID;
00068         }
00069     
00070     public int getActionType()  {
00071       return actionType;
00072     }
00073     
00074     public String getActionServiceName() {
00075       return actionServiceName;
00076     }
00077     
00078     
00079 
00080 }

Generated on Wed Dec 14 21:05:32 2005 for OpenMobileIS by  doxygen 1.4.4