Ignore:
Timestamp:
01/09/14 17:02:09 (10 years ago)
Author:
olhsha
Message:

shibbolized

File:
1 edited

Legend:

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

    r4217 r4245  
    4040import javax.xml.parsers.ParserConfigurationException;
    4141import org.springframework.beans.factory.annotation.Autowired;
    42 import org.springframework.security.access.annotation.Secured;
    4342import org.springframework.stereotype.Component;
    4443import org.springframework.transaction.annotation.Transactional;
     
    7170    @Produces(MediaType.TEXT_XML)
    7271    @Path("{cachedid: " + BackendConstants.regExpIdentifier + "}/metadata")
    73     @Secured("ROLE_USER")
    7472    @Transactional(readOnly = true)
    7573    public JAXBElement<CachedRepresentationInfo> getCachedRepresentationInfo(@PathParam("cachedid") String externalId) throws SQLException, IOException {
     
    8886    @Produces({"image/jpeg", "image/png"})
    8987    @Path("{cachedid: " + BackendConstants.regExpIdentifier + "}/content")
    90     @Secured("ROLE_USER")
    9188    @Transactional(readOnly = true)
    9289    public BufferedImage getCachedRepresentationContent(@PathParam("cachedid") String externalId) throws SQLException, IOException {
Note: See TracChangeset for help on using the changeset viewer.