org.sarons.spring4me.web.widget.bind.support.WidgetConfigWebArgumentResolver.java Source code

Java tutorial

Introduction

Here is the source code for org.sarons.spring4me.web.widget.bind.support.WidgetConfigWebArgumentResolver.java

Source

/*
 * Copyright 2011-2012 the original author or authors
 *
 * Licensed 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.sarons.spring4me.web.widget.bind.support;

import org.sarons.spring4me.web.widget.config.WidgetConfig;
import org.sarons.spring4me.web.widget.http.HttpWidgetRequest;
import org.sarons.spring4me.web.widget.utils.WidgetConfigUtils;
import org.springframework.core.MethodParameter;
import org.springframework.web.bind.support.WebArgumentResolver;
import org.springframework.web.context.request.NativeWebRequest;

/**
 * 
 * @author gavin
 * @since 0.4.0
 * @create Feb 12, 2012 - 11:26:06 AM
 */
public class WidgetConfigWebArgumentResolver implements WebArgumentResolver {

    public Object resolveArgument(MethodParameter methodParameter, NativeWebRequest webRequest) throws Exception {
        if (WidgetConfig.class.isAssignableFrom(methodParameter.getParameterType())) {
            return getWidgetConfig(webRequest);
        }
        return WebArgumentResolver.UNRESOLVED;
    }

    private WidgetConfig getWidgetConfig(NativeWebRequest webRequest) {
        HttpWidgetRequest widgetRequest = webRequest.getNativeRequest(HttpWidgetRequest.class);
        return WidgetConfigUtils.getWidgetConfig(widgetRequest);
    }

}