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,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);
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 997 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 855 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 926 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 863 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 936 B

Binary file not shown.

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 {
}