private FileContentDelegate getContentDelegate(PackageType type) {
FileContentDelegate contentDelegate = contentDelegates.get(type);
if (contentDelegate == null) {
if (type.getName().equals("library")) {
File deployLib = new File(this.getConfigurationPath(), "lib");
contentDelegate = new JarContentDelegate(deployLib, type.getName());
}
contentDelegates.put(type, contentDelegate);
}