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

org.drools.scm.ScmEntry Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.scm;

import java.util.Date;

public interface ScmEntry {
    public static final int FILE = 0;
    public static final int DIRECTORY = 0;
    
    
    String  getAuthor();
    Date    getDate(); 
    String  getName(); 
    String  getPath();
    long    getRevision();
    long    getSize(); 
    public boolean isFile();    
    public boolean isDirectory();   
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy