📄 resourcemapping.java
字号:
/*
* Copyright 2004-2005 wangz.
* Project shufe_newsroom
*/
package com.skyon.um.security.acegi.intercept.web;
/**
* @since 2005-8-4
* @author 王政
* @version $Id: ResourceMapping.java,v 1.1 2005/08/25 08:04:14 wangzheng Exp $
*/
public class ResourceMapping {
private String resourcePath;
private String[] recipients = new String[0];
public ResourceMapping() {
}
/**
* @param recipients
* @param path
*/
public ResourceMapping(String path, String[] recipients) {
this.resourcePath = path;
this.recipients = recipients;
}
/**
* @return Returns the recipients.
*/
public String[] getRecipients() {
return recipients;
}
/**
* @param recipients The recipients to set.
*/
public void setRecipients(String[] recipients) {
this.recipients = recipients;
}
/**
* @return Returns the resourcePath.
*/
public String getResourcePath() {
return resourcePath;
}
/**
* @param resourcePath The resourcePath to set.
*/
public void setResourcePath(String resourcePath) {
this.resourcePath = resourcePath;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -