| 313 | | public boolean xrefExists(Xref xref) throws IDMapperException { |
| 314 | | if (xref==null) |
| 315 | | return false; |
| 316 | | |
| 317 | | DataSource ds = xref.getDataSource(); |
| 318 | | if (!supportedSrcDs.contains(ds)) |
| 319 | | return false; |
| 320 | | |
| 321 | | String src = ds.getFullName(); |
| 322 | | String id = xref.getId(); |
| 323 | | return stub.idExist(authority, species, src, id); |
| | 313 | public boolean xrefExists(Xref xref) throws IDMapperException |
| | 314 | { |
| | 315 | throw new UnsupportedOperationException ("xrefExists operation not supported for synergizer"); |