link start!
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
import com.honeywell.ascot.beans.io.inputs.BInputsConfigurationBean;
|
||||
import com.honeywell.ascot.beans.io.outputs.BOutputsConfigurationBean;
|
||||
|
||||
public interface IAccessoryLoopBean {
|
||||
BInputsConfigurationBean getAccLoopInputs();
|
||||
|
||||
BOutputsConfigurationBean getAccLoopOutputs();
|
||||
|
||||
BHonString getLoopName();
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface IAccessoryLoopInputBean {
|
||||
BHonEnum getMainApplicationOutput();
|
||||
|
||||
BHonEnum getSharedInput();
|
||||
|
||||
void setMainApplicationOutput(BHonEnum bHonEnum);
|
||||
|
||||
void setSharedInput(BHonEnum bHonEnum);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface IAscotBean {
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
import com.honeywell.ascot.beans.io.inputs.BInputBean;
|
||||
import com.honeywell.ascot.beans.io.inputs.BInputsConfigurationBean;
|
||||
import com.honeywell.ascot.beans.io.outputs.BOutputsConfigurationBean;
|
||||
import com.honeywell.ascot.beans.schedule.BScheduleHolidayBean;
|
||||
|
||||
public interface IDeviceBean extends IAscotBean {
|
||||
BInputsConfigurationBean getAccLoopInputs(int i);
|
||||
|
||||
BOutputsConfigurationBean getAccLoopOutputs(int i);
|
||||
|
||||
BAscotBean getAccessoryLoop(String str);
|
||||
|
||||
BAscotBean getAccessoryLoopBean();
|
||||
|
||||
BCustomSensorsBean getCustomSensors();
|
||||
|
||||
BInputBean[] getInputsArray();
|
||||
|
||||
BInputsConfigurationBean getInputsConfigurationBean();
|
||||
|
||||
BOutputsConfigurationBean getOutputsConfigurationBean();
|
||||
|
||||
BPIDBean getPIDBean();
|
||||
|
||||
BScheduleHolidayBean getScheduleBean();
|
||||
|
||||
void setAccessoryLoopBean(BAscotBean bAscotBean);
|
||||
|
||||
void setCustomSensors(BCustomSensorsBean bCustomSensorsBean);
|
||||
|
||||
void setInputsConfigurationBean(BInputsConfigurationBean bInputsConfigurationBean);
|
||||
|
||||
void setOutputsConfigurationBean(BOutputsConfigurationBean bOutputsConfigurationBean);
|
||||
|
||||
void setPIDBean(BPIDBean bPIDBean);
|
||||
|
||||
void setScheduleBean(BScheduleHolidayBean bScheduleHolidayBean);
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface IMainAccessoryLoopBean {
|
||||
IAccessoryLoopBean getAccessoryLoop(String str);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface IMainAccessoryLoopDeviceBean {
|
||||
BMainAccessoryLoopBean getAccessoryLoop();
|
||||
|
||||
void setAccessoryLoop(BMainAccessoryLoopBean bMainAccessoryLoopBean);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
import com.honeywell.ascot.network.INetworkParam;
|
||||
|
||||
public interface IManualModeParam {
|
||||
INetworkParam getObjectId();
|
||||
|
||||
INetworkParam getObjectRequest();
|
||||
|
||||
void setObjectId(INetworkParam iNetworkParam);
|
||||
|
||||
void setObjectRequest(INetworkParam iNetworkParam);
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface IPIDDeviceBean {
|
||||
BPIDBean getPid();
|
||||
|
||||
void setPid(BPIDBean bPIDBean);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface ISessionBean {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface IStepBean {
|
||||
BHonBoolean getIsStepModified();
|
||||
|
||||
void setIsStepModified(BHonBoolean bHonBoolean);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.honeywell.ascot.beans;
|
||||
|
||||
public interface SupportsValidationRules {
|
||||
boolean getIsEnabled();
|
||||
|
||||
boolean getIsVisible();
|
||||
|
||||
void setIsEnabled(boolean z);
|
||||
|
||||
void setIsVisible(boolean z);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.honeywell.ascot.beans.io;
|
||||
|
||||
import com.honeywell.ascot.beans.BHonInteger;
|
||||
|
||||
public interface IFourPinIO extends IOInterface, IThreePinIO {
|
||||
BHonInteger getPin4();
|
||||
|
||||
void setPin4(BHonInteger bHonInteger);
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
package com.honeywell.ascot.beans.io;
|
||||
|
||||
import com.honeywell.ascot.beans.BHonInteger;
|
||||
|
||||
public interface IOInterface {
|
||||
public static final String PIN_1_NAME = "pin";
|
||||
public static final String PIN_2_NAME = "pin2";
|
||||
public static final String PIN_3_NAME = "pin3";
|
||||
public static final String PIN_4_NAME = "pin4";
|
||||
|
||||
void copyTo(IOInterface iOInterface);
|
||||
|
||||
BHonInteger getPin();
|
||||
|
||||
String getSelectionBeanRef();
|
||||
|
||||
boolean isPinChanged(IOInterface iOInterface);
|
||||
|
||||
void setPin(BHonInteger bHonInteger);
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.honeywell.ascot.beans.io;
|
||||
|
||||
import com.honeywell.ascot.beans.BHonInteger;
|
||||
|
||||
public interface IThreePinIO extends IOInterface {
|
||||
BHonInteger getPin2();
|
||||
|
||||
BHonInteger getPin3();
|
||||
|
||||
void setPin2(BHonInteger bHonInteger);
|
||||
|
||||
void setPin3(BHonInteger bHonInteger);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package com.honeywell.ascot.beans.io;
|
||||
|
||||
import com.honeywell.ascot.beans.BHonInteger;
|
||||
|
||||
public interface ITwoPinIO extends IOInterface {
|
||||
BHonInteger getPin2();
|
||||
|
||||
void setPin2(BHonInteger bHonInteger);
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
package com.honeywell.ascot.beans.onlineOperations.alarms;
|
||||
|
||||
import com.honeywell.ascot.beans.BHonBoolean;
|
||||
import com.honeywell.ascot.beans.BHonString;
|
||||
|
||||
public interface IAlarmConfigBean {
|
||||
BHonString getDetails();
|
||||
|
||||
BHonString getError();
|
||||
|
||||
BHonBoolean getState();
|
||||
|
||||
BHonString getTypeOfError();
|
||||
|
||||
void setDetails(BHonString bHonString);
|
||||
|
||||
void setError(BHonString bHonString);
|
||||
|
||||
void setState(BHonBoolean bHonBoolean);
|
||||
|
||||
void setTypeOfError(BHonString bHonString);
|
||||
}
|
||||
Reference in New Issue
Block a user