interceptormapping.java

来自「在Struts2中的jar包xwork的源代码.版本为2.0.7」· Java 代码 · 共 64 行

JAVA
64
字号
/* * 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;/** * <code>InterceptorMapping</code> * * @author <a href="mailto:hermanns@aixcept.de">Rainer Hermanns</a> * @version $Id: InterceptorMapping.java 1063 2006-07-10 00:30:29Z mrdon $ */public class InterceptorMapping implements Serializable {    private String name;    private Interceptor interceptor;    public InterceptorMapping() {    }    public InterceptorMapping(String name, Interceptor interceptor) {        this.name = name;        this.interceptor = interceptor;    }    public String getName() {        return name;    }    public void setName(String name) {        this.name = name;    }    public Interceptor getInterceptor() {        return interceptor;    }    public void setInterceptor(Interceptor interceptor) {        this.interceptor = 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;    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?