All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bonitasoft.engine.dependency.model.DependencyContent Maven / Gradle / Ivy

There is a newer version: 10.2.0
Show newest version
package org.bonitasoft.engine.dependency.model;

public class DependencyContent {

    private String fileName;
    private byte[] content;

    public DependencyContent(String fileName, byte[] content) {
        this.fileName = fileName;
        this.content = content;
    }

    public byte[] getContent() {
        return content;
    }

    public void setContent(byte[] content) {
        this.content = content;
    }

    public String getFileName() {
        return fileName;
    }

    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy