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

com.xmlcalabash.piperack.PipelineSource Maven / Gradle / Ivy

The newest version!
package com.xmlcalabash.piperack;

/**
 * Ths file is part of XMLCalabash.
 * Created by ndw on 10/25/13.
 */
public class PipelineSource {
    public String uri = null;
    public String name = null;
    public int expires = -1;

    public PipelineSource(String uri, String name, int expires) {
        this.uri = uri;
        this.name = name;
        this.expires = expires;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy