17 lines
308 B
Java
17 lines
308 B
Java
package com.tridium.sys;
|
|
|
|
import java.io.File;
|
|
import java.io.InputStream;
|
|
|
|
public interface BootEnv {
|
|
File findModule(String str) throws Exception;
|
|
|
|
File findTimeZoneDatabase() throws Exception;
|
|
|
|
File getBajaHome();
|
|
|
|
boolean isRemote();
|
|
|
|
InputStream read(String str) throws Exception;
|
|
}
|