blob: 8a460e25965abf9c056921baa96327963f3f9b11 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.lenya.config.impl;
import org.apache.lenya.config.core.Configuration;
import org.apache.lenya.config.core.Parameter;
/**
* Server Parameter web.app.server
*/
public class ServerParameter extends Parameter {
/**
*
*/
public boolean test(String value) {
if (value.equals("Jetty") || value.equals("Tomcat") || value.equals("WLS")) {
return true;
}
return false;
}
/**
*
*/
public String[] getAvailableValues() {
String[] aValues = new String[3];
aValues[0] = "Jetty";
aValues[1] = "Tomcat";
aValues[2] = "WLS";
return aValues;
}
/**
*
*/
public Parameter[] getSubsequentParameters(String value, Configuration config) {
if (value.equals("Jetty")) {
Parameter[] p = new Parameter[2];
p[0] = config.getParameter("web.app.server.jetty.port");
p[1] = config.getParameter("web.app.server.jetty.admin.port");
return p;
} else if (value.equals("Tomcat")) {
Parameter[] p = new Parameter[4];
p[0] = config.getParameter("tomcat.home.dir");
p[1] = config.getParameter("tomcat.webapps.dir");
p[2] = config.getParameter("tomcat.cache.dir");
p[3] = config.getParameter("tomcat.endorsed.dir");
return p;
}
return null;
}
}