Ignore:
Timestamp:
03/19/10 14:54:36 (14 years ago)
Author:
patdui
Message:
  • Using a proper response when sending back xsd or xml raw data, setting appropriate http headers so browser will trigger native save as dialog
  • Renamed TestHelper? (so maven doesn't try to run it as a test anymore)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/trunk/ComponentRegistry/src/main/java/clarin/cmdi/componentregistry/ComponentRegistryImpl.java

    r253 r262  
    166166        return result;
    167167    }
     168   
     169    public ComponentDescription getComponentDescription(String id) {
     170        return componentDescriptions.get(id);
     171    }
    168172
    169173    public CMDComponentSpec getMDProfile(String profileId) {
     
    239243        Collections.sort(result, ProfileDescription.COMPARE_ON_NAME);
    240244        return result;
     245    }
     246   
     247    public ProfileDescription getProfileDescription(String id) {
     248        return profileDescriptions.get(id);
    241249    }
    242250
Note: See TracChangeset for help on using the changeset viewer.