public DistributionQueueEntry getEntry()

in src/main/java/org/apache/sling/distribution/journal/queue/impl/PubErrQueue.java [98:105]


    public DistributionQueueEntry getEntry(@Nonnull String entryId) {
        try {
            DistributionQueueItem queueItem = agentQueue.getItem(EntryUtil.entryOffset(entryId));
            return (queueItem != null) ? entryFactory.create(queueItem) : null;
        } catch (IllegalArgumentException e) {
            return null;
        }
    }