-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # README.md # admin-tools-core/pom.xml # admin-tools-dbbrowser/pom.xml # admin-tools-demo-core/pom.xml # admin-tools-demo-jar/pom.xml # admin-tools-demo-war/pom.xml # admin-tools-filebrowser/pom.xml # admin-tools-jminix/pom.xml # admin-tools-log4j2/pom.xml # admin-tools-melody/pom.xml # admin-tools-properties/pom.xml # admin-tools-quartz/pom.xml # admin-tools-security/admin-tools-security-simple/pom.xml # pom.xml
- Loading branch information
Showing
34 changed files
with
2,607 additions
and
2,069 deletions.
There are no files selected for viewing
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
23 changes: 12 additions & 11 deletions
23
admin-tools-core/src/main/resources/i18n/admintool/core-messages.properties
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 |
---|---|---|
@@ -1,12 +1,13 @@ | ||
ui.admintool.core.menu.headline=MAINMENU | ||
|
||
ui.admintool.core.modal.error.title=Error | ||
ui.admintool.core.modal.error.text=An Error has been occurred | ||
|
||
ui.admintool.core.modal.confirm.title=Confirm | ||
ui.admintool.core.modal.confirm.text=Do you confirm? | ||
|
||
ui.admintool.core.modal.btn.save=Save | ||
ui.admintool.core.modal.btn.delete=Delete | ||
ui.admintool.core.modal.btn.close=Close | ||
ui.admintool.core.menu.headline=MAINMENU | ||
|
||
ui.admintool.core.modal.error.title=Error | ||
ui.admintool.core.modal.error.text=An Error has been occurred | ||
|
||
ui.admintool.core.modal.confirm.title=Confirm | ||
ui.admintool.core.modal.confirm.text=Do you confirm? | ||
|
||
ui.admintool.core.modal.btn.save=Save | ||
ui.admintool.core.modal.btn.add=Add | ||
ui.admintool.core.modal.btn.delete=Delete | ||
ui.admintool.core.modal.btn.close=Close | ||
ui.admintool.core.modal.btn.confirm=Confirm |
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
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
43 changes: 43 additions & 0 deletions
43
admin-tools-demo-core/src/main/java/de/chandre/admintool/ExampleMXBean.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,43 @@ | ||
package de.chandre.admintool; | ||
|
||
import java.time.LocalDate; | ||
import java.time.LocalDateTime; | ||
import java.util.Date; | ||
|
||
import org.springframework.stereotype.Component; | ||
|
||
import de.chandre.admintool.core.AdminToolConfig; | ||
|
||
@Component | ||
public class ExampleMXBean implements AdminToolConfig { | ||
|
||
public Date getDate() { | ||
return new Date(); | ||
} | ||
|
||
public LocalDate getLocalDate() { | ||
return LocalDate.now(); | ||
} | ||
|
||
public LocalDateTime getLocalDateTime() { | ||
return LocalDateTime.now(); | ||
} | ||
|
||
public Double getDouble() { | ||
return Double.valueOf(123.456d); | ||
} | ||
|
||
public double getPrimitiveDouble() { | ||
return 654.321d; | ||
} | ||
|
||
@Override | ||
public void printConfig() { | ||
|
||
} | ||
|
||
@Override | ||
public boolean isEnabled() { | ||
return true; | ||
} | ||
} |
117 changes: 0 additions & 117 deletions
117
admin-tools-demo-core/src/main/java/de/chandre/admintool/JavaMelodyConfiguration.java
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.