org.springframework.boot.loader.jar
Interface JarEntryFilter


public interface JarEntryFilter

Interface that can be used to filter and optionally rename jar entries.

Author:
Phillip Webb

Method Summary
 String apply(String entryName, JarEntry entry)
          Apply the jar entry filter.
 

Method Detail

apply

String apply(String entryName,
             JarEntry entry)
Apply the jar entry filter.

Parameters:
entryName - the current entry name. This may be different that the original entry name if a previous filter has been applied
entry - the entry to filter
Returns:
the new name of the entry or null if the entry should not be included.


Copyright © 2013. All Rights Reserved.