Ignore:
Timestamp:
08/22/13 12:17:19 (11 years ago)
Author:
olhsha
Message:

replacing DaishIdentifier?-based classes with simply UUID. tested. Works, excpet that UUID seems not be be serailizable, see e.g. getAllAnnotations in NotebookResource? where I have to use Peter's workoaroun to put UUID in JAXBElement<UUID>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • DASISH/t5.6/backend/annotator-backend/trunk/annotator-backend/src/main/java/eu/dasish/annotation/backend/dao/CachedRepresentationDao.java

    r3407 r3455  
    1818package eu.dasish.annotation.backend.dao;
    1919
    20 import eu.dasish.annotation.backend.identifiers.CachedRepresentationIdentifier;
    2120import eu.dasish.annotation.schema.CachedRepresentationInfo;
    2221
     
    2524 * @author olhsha
    2625 */
    27 public interface CachedRepresentationDao {
     26public interface CachedRepresentationDao extends ResourceDao{
    2827   
    29     /**
    30      *
    31      * @param internalID
    32      * @return extrnalID identifier of the resource with internalID
    33      */
    34     public CachedRepresentationIdentifier getExternalID(Number internalID);
    35    
    36      
    37     /**
    38      *
    39      * @param externalID
    40      * @return the internal identifier of the resource with the "externalID"
    41      */   
    42     public Number getInternalID(CachedRepresentationIdentifier externalID);
    43    
     28   
     29 
    4430 
    4531    /**
Note: See TracChangeset for help on using the changeset viewer.