You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
375 B
18 lines
375 B
6 years ago
|
package com.fr.plugin.core.secondary;
|
||
|
|
||
|
import com.fr.stable.fun.impl.AbstractResourcePathTransformer;
|
||
|
|
||
|
/**
|
||
|
* 资源路径接口
|
||
|
*/
|
||
|
public class ResourcePathTransformerImpl extends AbstractResourcePathTransformer{
|
||
|
@Override
|
||
|
public boolean accept(String s) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String transform(String s) {
|
||
|
return s;
|
||
|
}
|
||
|
}
|