forked from demo/example
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.
23 lines
426 B
23 lines
426 B
package com.fr.plugin.core.secondary; |
|
|
|
import com.fr.stable.fun.impl.AbstractSiteTransformer; |
|
|
|
/** |
|
* cloudcenter地址接口 |
|
*/ |
|
public class SiteTransformerImpl extends AbstractSiteTransformer{ |
|
@Override |
|
public boolean match(String s) { |
|
return true; |
|
} |
|
|
|
@Override |
|
public String transform() { |
|
return ""; |
|
} |
|
|
|
@Override |
|
public String transform(String s) { |
|
return s; |
|
} |
|
} |