public List getRelationsByThread(String threadId)
      throws PortalException, SystemException, RemoteException {

    List relations = new ArrayList();

    if (Validator.isNull(threadId)) {
      return relations;
    }

    relations = VcmsTARelationUtil.findByThread(threadId);

    return relations;
  }