(Jid jid)
| 33 | } |
| 34 | |
| 35 | public static boolean isTransport(Jid jid) { |
| 36 | if (jid.getBare().length() == 0) { |
| 37 | return false; |
| 38 | } |
| 39 | return jid.getBare().indexOf('@') == -1; |
| 40 | } |
| 41 | // TODO: move to Roster |
| 42 | public static boolean belongsToTransport(Jid jid) { |
| 43 | Jid j = new Jid(jid.getServer()); |
no test coverage detected