public interface RepoServerMgmtMBean
Modifier and Type | Method and Description |
---|---|
int |
getMaxUsers()
Get limit for max users
If number of non-expired logins is greater or equal to the limit then further logins will be prevented
otherwise valid login attempt will be permitted.
|
int |
getTicketCountAll()
Get count of all tickets
This may be higher than the user count, since a user can have more than one ticket/session
|
int |
getTicketCountNonExpired()
Get count of non-expired tickets
This may be higher than the user count, since a user can have more than one ticket/session
|
int |
getUserCountAll()
Get count of all users
This may be lower than the ticket count, since a user can have more than one ticket/session
|
int |
getUserCountNonExpired()
Get count of non-expired users
This may be lower than the ticket count, since a user can have more than one ticket/session
|
int |
invalidateTicketsAll()
Invalidate all tickets
Note: This operation can be clustered (ie.
|
int |
invalidateTicketsExpired()
Invalidate expired tickets
|
void |
invalidateUser(String username)
Invalidate given users tickets
|
boolean |
isReadOnly()
Does the Repository allows writes or not ?
|
String[] |
listUserNamesAll()
Get set of all unique usernames
|
String[] |
listUserNamesNonExpired()
Get set of unique non-expired usernames
|
boolean isReadOnly()
int getTicketCountNonExpired()
int getTicketCountAll()
int getUserCountNonExpired()
int getUserCountAll()
String[] listUserNamesNonExpired()
String[] listUserNamesAll()
int invalidateTicketsExpired()
int invalidateTicketsAll()
void invalidateUser(String username)
int getMaxUsers()
Copyright © 2005–2017 Alfresco Software. All rights reserved.