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.
39 lines
780 B
39 lines
780 B
3 years ago
|
package com.fr.plugin.oauth;
|
||
|
|
||
|
import com.fr.decision.fun.impl.AbstractSystemOptionProvider;
|
||
|
import com.fr.decision.web.MainComponent;
|
||
|
import com.fr.plugin.transform.ExecuteFunctionRecord;
|
||
|
import com.fr.plugin.transform.FunctionRecorder;
|
||
|
import com.fr.web.struct.Atom;
|
||
|
|
||
|
public class MyFunction extends AbstractSystemOptionProvider {
|
||
|
public MyFunction() {
|
||
|
System.out.println("zc");
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String id() {
|
||
|
return "mb";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String displayName() {
|
||
|
return "mb";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int sortIndex() {
|
||
|
return 2;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Atom attach() {
|
||
|
return MainComponent.KEY;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public Atom client() {
|
||
|
return LoginOutComponent.KEY;
|
||
|
}
|
||
|
}
|