Skip to content

Commit af04d94

Browse files
Merge remote-tracking branch 'origin/master' into GridStateProperty
2 parents 8e29a05 + 71e326c commit af04d94

File tree

1 file changed

+52
-1
lines changed

1 file changed

+52
-1
lines changed

java/src/main/java/com/genexus/sap/SessionManager.java

Lines changed: 52 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ public class SessionManager
3838
private String language = "";
3939
private String poolCapacity = "10";
4040
private String peekLimit = "10";
41+
private String registrationCount = "3";
42+
private String programID = "";
43+
private String serverName = "";
44+
4145
private ModelContext _context = null;
4246

4347
DestinationProvider destinationProvider = null;
@@ -142,6 +146,22 @@ public void Connect()
142146
}
143147
}
144148

149+
public void DocumentReceiverStart()
150+
{
151+
}
152+
153+
public void DocumentSenderStart()
154+
{
155+
}
156+
157+
public void DocumentSenderStop()
158+
{
159+
}
160+
161+
public void DocumentReceiverStop()
162+
{
163+
}
164+
145165
public void TransactionBegin()
146166
{
147167

@@ -295,6 +315,22 @@ public String getErrorMessage()
295315
{
296316
return errorMessage;
297317
}
318+
319+
public String getRegistrationCount()
320+
{
321+
return registrationCount;
322+
}
323+
324+
public String getProgramID()
325+
{
326+
return programID;
327+
}
328+
329+
public String getServerName()
330+
{
331+
return serverName;
332+
}
333+
298334

299335
/* Setters */
300336

@@ -400,6 +436,21 @@ public void setErrorCode( Integer value )
400436
public void setErrorMessage( String value )
401437
{
402438
errorMessage = value;
403-
}
439+
}
440+
441+
public void setRegistrationCount(String value)
442+
{
443+
registrationCount = value;
444+
}
445+
446+
public void setProgramID(String value)
447+
{
448+
programID = value;
449+
}
404450

451+
public void setServerName(String value)
452+
{
453+
serverName = value;
454+
}
455+
405456
}

0 commit comments

Comments
 (0)