25 lines
521 B
Java
25 lines
521 B
Java
package com.tridium.platform.license;
|
|
|
|
import java.io.OutputStream;
|
|
import javax.baja.file.BIFile;
|
|
import javax.baja.file.FilePath;
|
|
import javax.baja.sys.Context;
|
|
|
|
public interface IFileInfo {
|
|
BIFile getFile();
|
|
|
|
String getInstalledFileName();
|
|
|
|
FilePath getInstalledFilePath();
|
|
|
|
String getXmlContent();
|
|
|
|
String getXmlSummary();
|
|
|
|
String toString(Context context);
|
|
|
|
void write(OutputStream outputStream) throws Exception;
|
|
|
|
void write(OutputStream outputStream, boolean z) throws Exception;
|
|
}
|