Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
floodlight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
croft1
floodlight
Commits
ed5c4310
Commit
ed5c4310
authored
12 years ago
by
Ananth Suryanarayana
Browse files
Options
Downloads
Patches
Plain Diff
minor cleanup
parent
7d74f94f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/net/floodlightcontroller/core/Main.java
+14
-6
14 additions, 6 deletions
src/main/java/net/floodlightcontroller/core/Main.java
with
14 additions
and
6 deletions
src/main/java/net/floodlightcontroller/core/Main.java
+
14
−
6
View file @
ed5c4310
...
@@ -14,11 +14,16 @@ import net.floodlightcontroller.restserver.IRestApiService;
...
@@ -14,11 +14,16 @@ import net.floodlightcontroller.restserver.IRestApiService;
* @author alexreimers
* @author alexreimers
*/
*/
public
class
Main
{
public
class
Main
{
private
static
IFloodlightModuleContext
moduleContext
;
private
static
IFloodlightModuleContext
staticModuleContext
;
public
static
IFloodlightModuleContext
floodlightContextGet
()
{
public
static
IFloodlightModuleContext
getFloodlightContext
()
{
return
moduleContext
;
return
staticModuleContext
;
}
public
static
void
setFloodlightContext
(
IFloodlightModuleContext
moduleContext
)
{
staticModuleContext
=
moduleContext
;
}
}
/**
/**
...
@@ -42,7 +47,10 @@ public class Main {
...
@@ -42,7 +47,10 @@ public class Main {
// Load modules
// Load modules
FloodlightModuleLoader
fml
=
new
FloodlightModuleLoader
();
FloodlightModuleLoader
fml
=
new
FloodlightModuleLoader
();
moduleContext
=
fml
.
loadModulesFromConfig
(
settings
.
getModuleFile
());
IFloodlightModuleContext
moduleContext
=
fml
.
loadModulesFromConfig
(
settings
.
getModuleFile
());
setFloodlightContext
(
moduleContext
);
// Run REST server
// Run REST server
IRestApiService
restApi
=
moduleContext
.
getServiceImpl
(
IRestApiService
.
class
);
IRestApiService
restApi
=
moduleContext
.
getServiceImpl
(
IRestApiService
.
class
);
restApi
.
run
();
restApi
.
run
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment