*/
public class DataNamespacesNewAction extends ConfigAction {
public ActionForward execute(ActionMapping mapping, ActionForm form,
UserContainer user, HttpServletRequest request, HttpServletResponse response)
throws IOException, ServletException {
DataNamespacesNewForm namespacesForm = (DataNamespacesNewForm) form;
String prefix = namespacesForm.getPrefix();
NameSpaceConfig config = new NameSpaceConfig();
config.setPrefix(prefix);
getUserContainer(request).setNamespaceConfig(config);