com.opensymphony.xwork2.config.entities.InterceptorMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwork Show documentation
Show all versions of xwork Show documentation
XWork is an command-pattern framework that is used to power WebWork
as well as other applications. XWork provides an Inversion of Control
container, a powerful expression language, data type conversion,
validation, and pluggable configuration.
/*
* Copyright (c) 2002-2006 by OpenSymphony
* All rights reserved.
*/
package com.opensymphony.xwork2.config.entities;
import com.opensymphony.xwork2.interceptor.Interceptor;
import java.io.Serializable;
/**
* InterceptorMapping
*
* @author Rainer Hermanns
* @version $Id: InterceptorMapping.java 1703 2007-12-09 12:03:31Z mrdon $
*/
public class InterceptorMapping implements Serializable {
private String name;
private Interceptor interceptor;
public InterceptorMapping(String name, Interceptor interceptor) {
this.name = name;
this.interceptor = interceptor;
}
public String getName() {
return name;
}
public Interceptor getInterceptor() {
return interceptor;
}
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final InterceptorMapping that = (InterceptorMapping) o;
if (name != null ? !name.equals(that.name) : that.name != null) return false;
return true;
}
public int hashCode() {
int result;
result = (name != null ? name.hashCode() : 0);
return result;
}
}