Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
MKCLOS
Core Development Platform
corepkgv2
Merge requests
!60
An error occurred while fetching the assigned milestone of the selected merge_request.
getDataInterface on Abstract bussiness logic holder
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
getDataInterface on Abstract bussiness logic holder
Roshanp-GetDataInterfaceAdded
into
devbranch
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Roshan Patil
requested to merge
Roshanp-GetDataInterfaceAdded
into
devbranch
6 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
devbranch
devbranch (base)
and
latest version
latest version
acc4a59f
1 commit,
6 years ago
1 file
+
10
−
0
Expand all files
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
servicebuildermdl/servicebuildermdl.go
+
10
−
0
Options
@@ -67,6 +67,16 @@ func (ab *AbstractBusinessLogicHolder) GetDataInt(key string) (int64, bool) {
return
value
,
true
}
// GetDataInterface will give you int
func
(
ab
*
AbstractBusinessLogicHolder
)
GetDataInterface
(
key
string
)
(
interface
{},
bool
)
{
//check in map
temp
,
found
:=
ab
.
localServiceData
[
key
]
if
errormdl
.
CheckBool
(
!
found
)
{
return
nil
,
false
}
return
temp
,
true
}
// GetDataResultset will give you int
func
(
ab
*
AbstractBusinessLogicHolder
)
GetDataResultset
(
key
string
)
(
*
gjson
.
Result
,
bool
)
{
//check in map
Menu
Explore
Projects
Groups
Topics
Snippets