-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Use GxProperties for properties and pass context to invoked o…
- Loading branch information
Showing
3 changed files
with
58 additions
and
31 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
gxdynamiccall/src/main/java/com/genexus/gxdynamiccall/GXDynCallProperties.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package com.genexus.gxdynamiccall; | ||
|
||
public class GXDynCallProperties { | ||
private String externalName; | ||
private String packageName; | ||
|
||
public String getExternalName() { | ||
return externalName; | ||
} | ||
public void setExternalName(String name) { | ||
externalName = name; | ||
} | ||
public String getPackageName() { | ||
return packageName; | ||
} | ||
public void setPackageName(String packageN) { | ||
packageName = packageN; | ||
} | ||
|
||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters