01: package nl.hippo.cms.wizard.engines;
02:
03: import nl.hippo.cms.wizard.components.AbstractComponentContainer;
04:
05: public class ConfigurationEngine extends AbstractComponentContainer
06: implements Engine {
07:
08: private static final String CONFIGURATION_ENGINE_TYPE = "configuration";
09:
10: /* (non-Javadoc)
11: * @see nl.hippo.cms.wizard.component.Component#getType()
12: */
13: public String getType() {
14: return CONFIGURATION_ENGINE_TYPE;
15: }
16:
17: }
|