Package com.alibaba.citrus.service.form.impl.FormParameters

Examples of com.alibaba.citrus.service.form.impl.FormParameters.FormParameter


            Enumeration<String> e = request.getParameterNames();
            FormParameters params = new FormParameters(request);

            while (e.hasMoreElements()) {
                String key = e.nextElement();
                FormParameter param = parseParameterKey(key);

                // param为null表示该参数不是从form service生成的,忽略之
                if (param != null) {
                    if (!logStarted) {
                        logStarted = true;
View Full Code Here


        if (additionalInfo != null) {
            normalizedKey += FIELD_KEY_SEPARATOR + additionalInfo;
        }

        return new FormParameter(groupKey, fieldKey, instanceKey, additionalInfo, paramKey, normalizedKey);
    }
View Full Code Here

TOP

Related Classes of com.alibaba.citrus.service.form.impl.FormParameters.FormParameter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.