Skip to content

Commit 407fb58

Browse files
Merge pull request #53 from genexuslabs/GamDummyClasses
Added dummy entry point for STS GAM to be used when GAM is disabled.
2 parents 88740f6 + d66e178 commit 407fb58

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package com.genexus.webpanels;
2+
import com.genexus.internet.HttpContext;
3+
4+
public class agamstsauthappgetaccesstokenDummy extends GXWebObjectStub
5+
{
6+
protected void doExecute(HttpContext context) throws Exception
7+
{
8+
}
9+
protected boolean IntegratedSecurityEnabled( )
10+
{
11+
return false;
12+
}
13+
14+
protected int IntegratedSecurityLevel( )
15+
{
16+
return 0;
17+
}
18+
19+
protected String IntegratedSecurityPermissionPrefix( )
20+
{
21+
return "";
22+
}
23+
24+
protected void init(HttpContext context )
25+
{
26+
}
27+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package com.genexus.webpanels;
2+
import com.genexus.internet.HttpContext;
3+
4+
public class agamstsauthappvalidaccesstokenDummy extends GXWebObjectStub
5+
{
6+
protected void doExecute(HttpContext context) throws Exception
7+
{
8+
}
9+
protected boolean IntegratedSecurityEnabled( )
10+
{
11+
return false;
12+
}
13+
14+
protected int IntegratedSecurityLevel( )
15+
{
16+
return 0;
17+
}
18+
19+
protected String IntegratedSecurityPermissionPrefix( )
20+
{
21+
return "";
22+
}
23+
24+
protected void init(HttpContext context )
25+
{
26+
}
27+
}

0 commit comments

Comments
 (0)