Progress on ConfigPage

This commit is contained in:
Ziver Koc 2016-07-28 23:30:03 +02:00
parent 9997bcd91a
commit b995063b43
14 changed files with 59 additions and 42 deletions

View file

@ -6,7 +6,7 @@ import zutil.ui.Configurator;
import java.io.PrintStream;
@WAConfiguration.WAConfig(service=ApacheService.PAGE_NAME, id="proxy", name="Proxy")
@WAConfiguration.WAConfig(servicePage=ApacheService.SERVICE_NAME, serviceName=ApacheService.NAVIGATION_NAME, pageName ="proxy", name="Proxy")
public class ApacheConfigProxy extends ApacheAbstractConfig {
@Configurator.Configurable("Proxy Target")

View file

@ -6,7 +6,7 @@ import zutil.ui.Configurator;
import java.io.PrintStream;
@WAConfiguration.WAConfig(service=ApacheService.PAGE_NAME, id="vhost", name="VirtualHost")
@WAConfiguration.WAConfig(servicePage=ApacheService.SERVICE_NAME, serviceName=ApacheService.NAVIGATION_NAME, pageName ="vhost", name="VirtualHost")
public class ApacheConfigVirtualHost extends ApacheAbstractConfig {
@Configurator.Configurable("Document Root")

View file

@ -4,6 +4,7 @@
"interfaces": [
{"wa.server.page.WAPage": "wa.server.plugin.apache.ApacheService"},
{"wa.server.plugin.WAServiceStatus": "wa.server.plugin.apache.ApacheStatus"},
{"wa.server.page.WAPage": "wa.server.plugin.apache.ApacheConfigVirtualHost"}
{"wa.server.plugin.WAConfiguration": "wa.server.plugin.apache.ApacheConfigProxy"},
{"wa.server.plugin.WAConfiguration": "wa.server.plugin.apache.ApacheConfigVirtualHost"}
]
}