link start!
@@ -0,0 +1,11 @@
|
||||
package com.tridium.bport;
|
||||
|
||||
import com.tridium.bport.enums.BBPortClientJobErrorEnum;
|
||||
import com.tridium.bport.messages.BPortMessage;
|
||||
import java.util.LinkedList;
|
||||
|
||||
public interface IBPortInterface {
|
||||
void parseResponse(BBPortClientJobErrorEnum bBPortClientJobErrorEnum, BPortMessage bPortMessage);
|
||||
|
||||
void parseUnsolMessage(LinkedList linkedList);
|
||||
}
|
||||
|
After Width: | Height: | Size: 997 B |
|
After Width: | Height: | Size: 855 B |
|
After Width: | Height: | Size: 926 B |
|
After Width: | Height: | Size: 863 B |
|
After Width: | Height: | Size: 933 B |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 936 B |
|
After Width: | Height: | Size: 959 B |
@@ -0,0 +1,42 @@
|
||||
package com.tridium.bport.messages;
|
||||
|
||||
import com.tridium.bport.enums.BBPortClientJobErrorEnum;
|
||||
import com.tridium.bport.messages.BPortCommandBase.CommandStruct;
|
||||
import java.util.LinkedList;
|
||||
import javax.baja.sys.BComponent;
|
||||
|
||||
public interface IBPortCommand {
|
||||
void addDependentCommands();
|
||||
|
||||
boolean canAbruptCurrentCommand();
|
||||
|
||||
void commandFinished(int i, LinkedList linkedList, BBPortClientJobErrorEnum bBPortClientJobErrorEnum, int i2, BComponent bComponent, int i3);
|
||||
|
||||
void commandSent();
|
||||
|
||||
LinkedList createMessages(int i, BPortClientJobData bPortClientJobData);
|
||||
|
||||
int getCmdResponseCode();
|
||||
|
||||
CommandStruct getCommandInfo();
|
||||
|
||||
LinkedList getDependentCommands();
|
||||
|
||||
boolean getIsCommandResponseFail();
|
||||
|
||||
int getPointIndex();
|
||||
|
||||
int getPointType();
|
||||
|
||||
int getTargetDevice();
|
||||
|
||||
void handleDependentCommandsResponse(LinkedList linkedList);
|
||||
|
||||
boolean isPointCommand();
|
||||
|
||||
void messagesReceived(int i, int i2, BPortMessage bPortMessage);
|
||||
|
||||
void removeDependentCommand(IBPortCommand iBPortCommand);
|
||||
|
||||
void setCmdResponseCode(int i);
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.tridium.bport.messages;
|
||||
|
||||
public interface IBPortMessageConst {
|
||||
}
|
||||