package org.springframework.extensions.config.element;
/*
* GenericConfigElement.java
*
* Copyright (c) 2007 Starlasoft. All rights reserved.
*/
import org.springframework.extensions.config.ConfigElement;
/**
* Generic Config Element Class
*
* <P>This class needs to match the Alfresco version of the class.
*/
public class GenericConfigElement extends ConfigElement {
/**
* Class constructor
*
* @param name String
*/
public GenericConfigElement(String name) {
super( name, "");
}
}