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

com.princexml.wrapper.FileAttachment Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2021 YesLogic Pty. Ltd.
 * All rights reserved.
 */

package com.princexml.wrapper;

final class FileAttachment {
    final String url;
    final String filename;
    final String description;

    FileAttachment(String url) {
        this(url, null, null);
    }

    FileAttachment(String url, String filename, String description) {
        this.url = url;
        this.filename = filename;
        this.description = description;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy