/* * #%L * BroadleafCommerce Common Libraries * %% * Copyright (C) 2009 - 2014 Broadleaf 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.broadleafcommerce.common.extensibility.context.merge; import org.springframework.core.PriorityOrdered; /** * Use this merge bean post processor for collection member removal tasks that should take place before the persistence layer is * initialized. This would include removing class transformers for load time weaving, and the like. See * {@link org.broadleafcommerce.common.extensibility.context.merge.AbstractRemoveBeanPostProcessor} for usage information. * * @see org.broadleafcommerce.common.extensibility.context.merge.AbstractRemoveBeanPostProcessor * @author Jeff Fischer */ public class EarlyStageRemoveBeanPostProcessor extends AbstractRemoveBeanPostProcessor implements PriorityOrdered { protected int order = Integer.MIN_VALUE; /** * This is the priority order for this post processor and will determine when this processor is run in relation * to other priority ordered processors (e.g. {@link org.springframework.context.annotation.CommonAnnotationBeanPostProcessor}) * The default value if Integer.MIN_VALUE. */ @Override public int getOrder() { return order; } /** * This is the priority order for this post processor and will determine when this processor is run in relation * to other priority ordered processors (e.g. {@link org.springframework.context.annotation.CommonAnnotationBeanPostProcessor}) * The default value if Integer.MIN_VALUE. * * @param order the priority ordering */ public void setOrder(int order) { this.order = order; } }