Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
53 changes: 52 additions & 1 deletion java/src/main/java/com/genexus/sap/SessionManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ public class SessionManager
private String language = "";
private String poolCapacity = "10";
private String peekLimit = "10";
private String registrationCount = "3";
private String programID = "";
private String serverName = "";

private ModelContext _context = null;

DestinationProvider destinationProvider = null;
Expand Down Expand Up @@ -142,6 +146,22 @@ public void Connect()
}
}

public void DocumentReceiverStart()
{
}

public void DocumentSenderStart()
{
}

public void DocumentSenderStop()
{
}

public void DocumentReceiverStop()
{
}

public void TransactionBegin()
{

Expand Down Expand Up @@ -295,6 +315,22 @@ public String getErrorMessage()
{
return errorMessage;
}

public String getRegistrationCount()
{
return registrationCount;
}

public String getProgramID()
{
return programID;
}

public String getServerName()
{
return serverName;
}


/* Setters */

Expand Down Expand Up @@ -400,6 +436,21 @@ public void setErrorCode( Integer value )
public void setErrorMessage( String value )
{
errorMessage = value;
}
}

public void setRegistrationCount(String value)
{
registrationCount = value;
}

public void setProgramID(String value)
{
programID = value;
}

public void setServerName(String value)
{
serverName = value;
}

}