
org.jboss.maven.plugins.retro.util.JarFileEntry Maven / Gradle / Ivy
The newest version!
package org.jboss.maven.plugins.retro.util;
public class JarFileEntry
{
private byte[] content;
private String name;
public JarFileEntry(String name, byte[] content)
{
this.name = name;
this.content = content;
}
public byte[] getContent()
{
return content;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy