From: Wolfgang M. M. <wol...@us...> - 2004-06-21 15:46:38
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xmldb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29152/src/org/exist/xmldb Modified Files: RemoteCollectionManagementService.java Log Message: Index: RemoteCollectionManagementService.java =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xmldb/RemoteCollectionManagementService.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** RemoteCollectionManagementService.java 2 Jun 2004 11:28:42 -0000 1.4 --- RemoteCollectionManagementService.java 21 Jun 2004 15:46:23 -0000 1.5 *************** *** 160,163 **** --- 160,172 ---- } + + /* (non-Javadoc) + * @see org.exist.xmldb.CollectionManagementServiceImpl#copyResource(java.lang.String, java.lang.String, java.lang.String) + */ + public void copyResource(String resourcePath, String destinationPath, + String newName) throws XMLDBException { + throw new XMLDBException(ErrorCodes.NOT_IMPLEMENTED, "copyResource is not yet implemented for " + + "remote resources"); + } } |