link start!

This commit is contained in:
cherubin
2026-03-17 13:31:18 -07:00
commit 08abe87cfb
5910 changed files with 386288 additions and 0 deletions
@@ -0,0 +1,17 @@
package com.honeywell.ascot.util;
import com.honeywell.ascot.beans.io.inputs.BInputsConfigurationBean;
import com.honeywell.ascot.beans.io.outputs.BOutputsConfigurationBean;
import java.util.List;
public interface ITypeMap {
List getSourcesForType(String str);
Class getTypeFor(String str, String str2);
boolean isPinAssignmentRequired(String str);
void setBeanFor(BInputsConfigurationBean bInputsConfigurationBean, String str);
void setBeanFor(BOutputsConfigurationBean bOutputsConfigurationBean, String str);
}
@@ -0,0 +1,7 @@
package com.honeywell.ascot.util.ui;
public interface SubscriberInterface {
void loadHolidayTab() throws Exception;
void updateDay() throws Exception;
}