Open Source Repository

Home /xwork/xwork-core-2.1.6 | Repository Home



com/opensymphony/xwork2/config/entities/InterceptorListHolder.java
/*
 * Copyright (c) 2002-2006 by OpenSymphony
 * All rights reserved.
 */
package com.opensymphony.xwork2.config.entities;

import java.util.List;

/**
 * InterceptorListHolder
 *
 @author Jason Carreira
 *         Created Jun 1, 2003 1:02:48 AM
 */
public interface InterceptorListHolder {

    InterceptorListHolder addInterceptor(InterceptorMapping interceptor);

    InterceptorListHolder addInterceptors(List<InterceptorMapping> interceptors);
}