Package org.sonatype.nexus.proxy.item

Examples of org.sonatype.nexus.proxy.item.ReadLockingContentLocator


      if (localItem instanceof StorageFileItem) {
        StorageFileItem file = (StorageFileItem) localItem;
        // wrap the content locator if needed
        if (!(file.getContentLocator() instanceof ReadLockingContentLocator)) {
          final RepositoryItemUid uid = createUid(request.getRequestPath());
          file.setContentLocator(new ReadLockingContentLocator(uid, file.getContentLocator()));
        }
      }
      if (log.isDebugEnabled()) {
        log.debug("Item " + request.toString() + " found in local storage.");
      }
View Full Code Here

TOP

Related Classes of org.sonatype.nexus.proxy.item.ReadLockingContentLocator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.