org.sparkcommerce.admin.web.rulebuilder.service.options.InventoryTypeEnumOptionsExtensionListener.java Source code

Java tutorial

Introduction

Here is the source code for org.sparkcommerce.admin.web.rulebuilder.service.options.InventoryTypeEnumOptionsExtensionListener.java

Source

/*
 * #%L
 * SparkCommerce Admin Module
 * %%
 * Copyright (C) 2009 - 2013 Spark Commerce
 * %%
 * 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.
 * #L%
 */
package org.sparkcommerce.admin.web.rulebuilder.service.options;

import org.apache.commons.lang3.reflect.FieldUtils;
import org.sparkcommerce.common.SparkEnumerationType;
import org.sparkcommerce.common.time.HourOfDayType;
import org.sparkcommerce.core.inventory.service.type.InventoryType;
import org.sparkcommerce.openadmin.web.rulebuilder.enums.AbstractRuleBuilderEnumOptionsExtensionListener;
import org.springframework.stereotype.Component;

import java.util.HashMap;
import java.util.Map;

/**
 * Rule Builder enum options provider for {@link HourOfDayType}
 * 
 * @author Andre Azzolini (apazzolini)
 */
@Component("blInventoryTypeOptionsExtensionListener")
public class InventoryTypeEnumOptionsExtensionListener extends AbstractRuleBuilderEnumOptionsExtensionListener {

    /**
     * Overridden to remove deprecated options
     */
    @Override
    protected Map<String, ? extends SparkEnumerationType> getTypes(Class<? extends SparkEnumerationType> clazz) {

        try {
            Map<String, ? extends SparkEnumerationType> options = (Map<String, ? extends SparkEnumerationType>) FieldUtils
                    .readStaticField(clazz, "TYPES", true);
            options.remove("NONE");
            options.remove("BASIC");
            return options;
        } catch (IllegalAccessException e) {
            throw new RuntimeException(e);
        }
    }

    @Override
    protected Map<String, Class<? extends SparkEnumerationType>> getValuesToGenerate() {
        Map<String, Class<? extends SparkEnumerationType>> map = new HashMap<String, Class<? extends SparkEnumerationType>>();

        map.put("blcOptions_InventoryType", InventoryType.class);

        return map;
    }

}