Exemplo n.º 1
0
 /**
  * Create a mapping from remote to local tagId
  *
  * @throws ServiceException
  */
 public void mapTag(int remote, int id) throws ServiceException {
   if (!validateId(id)) {
     throw MailServiceException.NO_SUCH_TAG(id);
   }
   mapTagInternal(remote, id);
 }