add refresh trigger to user profile
This commit is contained in:
parent
ebf8e781c8
commit
b06a1df806
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,3 @@
|
||||||
group = org.xbib
|
group = org.xbib
|
||||||
name = net
|
name = net
|
||||||
version = 4.7.0
|
version = 4.8.0
|
||||||
|
|
|
@ -21,6 +21,8 @@ public interface UserProfile {
|
||||||
|
|
||||||
String ATTRIBUTES = "attrs";
|
String ATTRIBUTES = "attrs";
|
||||||
|
|
||||||
|
String REFRESH = "refresh";
|
||||||
|
|
||||||
void setUserId(String uid);
|
void setUserId(String uid);
|
||||||
|
|
||||||
String getUserId();
|
String getUserId();
|
||||||
|
@ -64,4 +66,8 @@ public interface UserProfile {
|
||||||
Attributes getAttributes();
|
Attributes getAttributes();
|
||||||
|
|
||||||
Map<String, Object> asMap();
|
Map<String, Object> asMap();
|
||||||
|
|
||||||
|
void triggerRefresh(boolean refresh);
|
||||||
|
|
||||||
|
boolean isRefreshTriggered();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue