A B C D E F G H I J L M N O P R S T U V Z

A

AbstractEventProcessor - Class in org.alfresco.bm.event
Basic services for the event processor implementations

Read 'good practice' notes for documenting behaviour.

AbstractEventProcessor() - Constructor for class org.alfresco.bm.event.AbstractEventProcessor
Default constructor
AuthenticatedHttpEventProcessor - Class in org.alfresco.bm.http
A base class used for EventProcessors that makes use of HTTP-calls that should be done when authenticated against Alfresco.
AuthenticatedHttpEventProcessor(HttpClientProvider, AuthenticationDetailsProvider) - Constructor for class org.alfresco.bm.http.AuthenticatedHttpEventProcessor
 
AuthenticatedHttpEventProcessor.HttpRequestCallback<T> - Interface in org.alfresco.bm.http
Callback used when executing HTTP-request.
AuthenticationDetailsProvider - Interface in org.alfresco.bm.http
Provides details to allow users to authenticate against alfresco.

B

BMTestRunner - Class in org.alfresco.bm.tools
Utility code to assist with starting up a test context to aid development by instantiating a test-only context for execution.
BMTestRunner(String, int, String, String, String, Properties) - Constructor for class org.alfresco.bm.tools.BMTestRunner
Construct the help class that will start and stop the test application context

C

checkIndexes(MongoTemplate, String) - Static method in class org.alfresco.bm.event.Event
Ensure that the MongoDB collection has the required indexes for events.
checkIndexes(MongoTemplate, String) - Static method in class org.alfresco.bm.event.EventRecord
Ensure that the MongoDB collection has the required indexes for events.
checkIndexes() - Method in class org.alfresco.bm.user.UserDataService
Ensure that the MongoDB collection has the required indexes associated with this user bean.
cleanData() - Method in class org.alfresco.bm.event.Event
Ensure that any locally-stored data is cleaned up
ConfigConstants - Interface in org.alfresco.bm.config
Define commonly-used constants
ConfigConstants.RunState - Enum in org.alfresco.bm.config
An instruction to the main process on what action to take for the server.
ConfigException - Exception in org.alfresco.bm.config
Exception thrown for any unexpected result or data in ZooKeeper
ConfigException(String) - Constructor for exception org.alfresco.bm.config.ConfigException
 
ConfigException(String, Throwable) - Constructor for exception org.alfresco.bm.config.ConfigException
 
count() - Method in interface org.alfresco.bm.event.EventService
 
countCreatedUsers() - Method in class org.alfresco.bm.user.UserDataService
Get a count of usernames that are created in alfresco
countEventsByName(String) - Method in interface org.alfresco.bm.event.ResultService
Count the number of previously-completed events with the given name.
countUsers() - Method in class org.alfresco.bm.user.UserDataService
 
countUsersPendingCreation() - Method in class org.alfresco.bm.user.UserDataService
Get a count of usernames that are NOT created in alfresco
createNewUser(UserData) - Method in class org.alfresco.bm.user.UserDataService
Creates a new user in mongo.
CreateUser - Class in org.alfresco.bm.user
Event processor that creates a test-user in the alfresco-system based on the username present in the event and inserts an entry in mongo.
CreateUser(UserDataService, HttpClientProvider, AuthenticationDetailsProvider) - Constructor for class org.alfresco.bm.user.CreateUser
 
CreateUsers - Class in org.alfresco.bm.user
Input
CreateUsers(UserDataService, long) - Constructor for class org.alfresco.bm.user.CreateUsers
Creates a new instance.
CRITERIA_SUCCESS - Static variable in interface org.alfresco.bm.report.ReportService
Record field indicating successful event completion.

D

DEFAULT_RUNSTATE - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
DEFAULT_SERVER_ID - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
DEFAULT_WARN_DELAY - Static variable in class org.alfresco.bm.event.AbstractEventProcessor
 
deleteEvent(Event) - Method in interface org.alfresco.bm.event.EventService
Delete an event from the provider.
DoNothingEventProcessor - Class in org.alfresco.bm.event
This processor does nothing with the event and produces no further output.
DoNothingEventProcessor() - Constructor for class org.alfresco.bm.event.DoNothingEventProcessor
 

E

equals(Object) - Method in class org.alfresco.bm.event.Event
 
Event - Class in org.alfresco.bm.event
An event that is persisted and retrieved for processing.
Event(String, long, Object) - Constructor for class org.alfresco.bm.event.Event
Construct a scheduled event with some data.
Event(String, long, Object, boolean) - Constructor for class org.alfresco.bm.event.Event
Construct a scheduled event with some data, optionally forcing the data to be stored in memory.
EVENT_BEAN_PREFIX - Static variable in class org.alfresco.bm.event.Event
 
EVENT_NAME_CREATE_USER - Static variable in class org.alfresco.bm.user.CreateUsers
 
EVENT_NAME_CREATE_USERS - Static variable in class org.alfresco.bm.user.CreateUsers
 
EVENT_NAME_START - Static variable in class org.alfresco.bm.event.Event
 
EVENT_NAME_STOP - Static variable in class org.alfresco.bm.event.Event
 
EVENT_NAME_USERS_CREATED - Static variable in class org.alfresco.bm.user.CreateUsers
 
EVENT_NAME_USERS_PREPARED - Static variable in class org.alfresco.bm.user.PrepareUsers
 
EventProcessor - Interface in org.alfresco.bm.event
Basic interface that test runner code needs to implement in order to be processed by the Benchmark Server framework.
EventProcessorRegistry - Class in org.alfresco.bm.event
A registry of event processors that allow for simple registration (TODO: make link to register code in AbstractEventProcessor).
EventProcessorRegistry() - Constructor for class org.alfresco.bm.event.EventProcessorRegistry
 
EventRecord - Class in org.alfresco.bm.event
The record of a processed event.
EventRecord(boolean, long, long, Serializable, Event) - Constructor for class org.alfresco.bm.event.EventRecord
 
EventResult - Class in org.alfresco.bm.event
The result of event processing.
EventResult(List<Event>) - Constructor for class org.alfresco.bm.event.EventResult
Constructor for successful results containing future events without any additional data to record.
EventResult(Serializable, List<Event>) - Constructor for class org.alfresco.bm.event.EventResult
Constructor for successful results containing future events with additional data to record.
EventResult(Serializable, Event) - Constructor for class org.alfresco.bm.event.EventResult
Constructor for successful results containing a future event with additional data to record.
EventResult(Serializable, List<Event>, boolean) - Constructor for class org.alfresco.bm.event.EventResult
Constructor for results containing future events with additional data to record.
EventService - Interface in org.alfresco.bm.event
Interface for classes that handle persistence and retrieval of events.
executeHttpMethodAsAdmin(HttpMethod, AuthenticatedHttpEventProcessor.HttpRequestCallback<T>) - Method in class org.alfresco.bm.http.AuthenticatedHttpEventProcessor
Execute the given method, authenticated as the Alfresco Administrator.
executeHttpMethodAuthenticated(HttpMethod, String, AuthenticatedHttpEventProcessor.HttpRequestCallback<T>) - Method in class org.alfresco.bm.http.AuthenticatedHttpEventProcessor
Execute the given method, authenticated as the given user.
export(String, int, int) - Method in interface org.alfresco.bm.report.ReportService
Exports results in a csv format to a file.
export(String, int, int) - Method in class org.alfresco.bm.report.ReportServiceImpl
 

F

FAILED_LABEL_PREFIX - Static variable in class org.alfresco.bm.report.ReportUtil
 
FIELD_CREATED - Static variable in class org.alfresco.bm.user.UserData
 
FIELD_DATA_OWNER - Static variable in class org.alfresco.bm.event.Event
 
FIELD_EVENT_NAME - Static variable in class org.alfresco.bm.event.EventRecord
 
FIELD_ID - Static variable in class org.alfresco.bm.event.Event
 
FIELD_ID - Static variable in class org.alfresco.bm.event.EventRecord
 
FIELD_ID - Static variable in class org.alfresco.bm.user.UserData
 
FIELD_LOCK_OWNER - Static variable in class org.alfresco.bm.event.Event
 
FIELD_LOCK_TIME - Static variable in class org.alfresco.bm.event.Event
 
FIELD_NAME - Static variable in class org.alfresco.bm.event.Event
 
FIELD_NODE_ID - Static variable in class org.alfresco.bm.user.UserData
 
FIELD_PASSWORD - Static variable in class org.alfresco.bm.user.UserData
 
FIELD_QUEUE_TIME - Static variable in class org.alfresco.bm.event.Event
 
FIELD_SCHEDULED_TIME - Static variable in class org.alfresco.bm.event.Event
 
FIELD_START_TIME - Static variable in class org.alfresco.bm.event.EventRecord
 
FIELD_TICKET - Static variable in class org.alfresco.bm.user.UserData
 
FIELD_USERNAME - Static variable in class org.alfresco.bm.user.UserData
 
findEvents(String, int, int) - Method in interface org.alfresco.bm.event.EventService
Find any event matching the given name, using the paging criteria
findEventsByName(String, int, int) - Method in interface org.alfresco.bm.event.ResultService
Find previously-completed events with the given name
findUserByUserName(String) - Method in class org.alfresco.bm.user.UserDataService
Find a user by it's username.
FORM_PROCESSOR_JSON_PERSISTED_OBJECT - Static variable in class org.alfresco.bm.json.JSONUtil
 
formatHeaders(String) - Static method in class org.alfresco.bm.report.ReportUtil
Helper method to format collection of names into a csv format.

G

getAdminPassword() - Method in interface org.alfresco.bm.http.AuthenticationDetailsProvider
 
getAdminPassword() - Method in class org.alfresco.bm.http.UserDataAutheticationDetailsProvider
 
getAdminUserName() - Method in interface org.alfresco.bm.http.AuthenticationDetailsProvider
 
getAdminUserName() - Method in class org.alfresco.bm.http.UserDataAutheticationDetailsProvider
 
getArray(JSONObject, String) - Static method in class org.alfresco.bm.json.JSONUtil
 
getAuthDetailProvider() - Method in class org.alfresco.bm.http.AuthenticatedHttpEventProcessor
 
getCreatedUsers(int, int) - Method in class org.alfresco.bm.user.UserDataService
Get a list of usernames that are created in alfresco with paging
getCtx() - Method in class org.alfresco.bm.tools.BMTestRunner
 
getData() - Method in class org.alfresco.bm.event.EventRecord
 
getData() - Method in class org.alfresco.bm.event.EventResult
 
getDataArrayFromResponse(HttpMethod) - Static method in class org.alfresco.bm.json.JSONUtil
Extract the "data" JSON-array from the method's response.
getDataFromResponse(HttpMethod) - Static method in class org.alfresco.bm.json.JSONUtil
Extract the "data" JSON-object from the method's response.
getDataKey() - Method in class org.alfresco.bm.event.Event
 
getDataObject() - Method in class org.alfresco.bm.event.Event
Client-safe method to retrieve data based on in-memory or persisted storage
getDataOwner() - Method in class org.alfresco.bm.event.Event
 
getEvent() - Method in class org.alfresco.bm.event.EventRecord
 
getEvent(String) - Method in interface org.alfresco.bm.event.EventService
Fetch a specific event by unique ID
getEventNames() - Method in interface org.alfresco.bm.report.ReportService
Retrieves distinct collection of event names from the result collection in MongoDB.
getEventNames() - Method in class org.alfresco.bm.report.ReportServiceImpl
 
getFullAlfrescoUrlForPath(String) - Method in interface org.alfresco.bm.http.HttpClientProvider
 
getFullAlfrescoUrlForPath(String) - Method in class org.alfresco.bm.http.SharedHttpClientProvider
 
getHttpClient() - Method in interface org.alfresco.bm.http.HttpClientProvider
 
getHttpClient() - Method in class org.alfresco.bm.http.SharedHttpClientProvider
 
getHttpProvider() - Method in class org.alfresco.bm.http.AuthenticatedHttpEventProcessor
 
getId() - Method in class org.alfresco.bm.event.Event
 
getId() - Method in class org.alfresco.bm.event.EventRecord
 
getId() - Method in class org.alfresco.bm.user.UserData
 
getLockOwner() - Method in class org.alfresco.bm.event.Event
 
getLockTime() - Method in class org.alfresco.bm.event.Event
 
getName() - Method in class org.alfresco.bm.event.Event
 
getNextEvents() - Method in class org.alfresco.bm.event.EventResult
 
getNodeId() - Method in class org.alfresco.bm.user.UserData
 
getObject(JSONObject, String) - Static method in class org.alfresco.bm.json.JSONUtil
 
getObjectFromResponse(HttpMethod) - Static method in class org.alfresco.bm.json.JSONUtil
Extract JSON-object from the method's response.
getPassword() - Method in class org.alfresco.bm.user.UserData
 
getPasswordForUser(String) - Method in interface org.alfresco.bm.http.AuthenticationDetailsProvider
 
getPasswordForUser(String) - Method in class org.alfresco.bm.http.UserDataAutheticationDetailsProvider
 
getProcessor(String) - Method in class org.alfresco.bm.event.EventProcessorRegistry
Get the processor that must handle events with the given name
getQueueTime() - Method in class org.alfresco.bm.event.Event
 
getResults(int, int) - Method in interface org.alfresco.bm.report.ReportService
Retrieves results of a test run from MongoDB.
getResults(int, int) - Method in class org.alfresco.bm.report.ReportServiceImpl
 
getScheduledTime() - Method in class org.alfresco.bm.event.Event
 
getStartDelay() - Method in class org.alfresco.bm.event.EventRecord
 
getStartTime() - Method in class org.alfresco.bm.event.EventRecord
 
getString(JSONObject, String, String) - Static method in class org.alfresco.bm.json.JSONUtil
Gets a string-value from the given JSON-object for the given key.
getTicket() - Method in class org.alfresco.bm.user.UserData
 
getTicketForUser(String) - Method in interface org.alfresco.bm.http.AuthenticationDetailsProvider
 
getTicketForUser(String) - Method in class org.alfresco.bm.http.UserDataAutheticationDetailsProvider
 
getTime() - Method in class org.alfresco.bm.event.EventRecord
 
getUserName() - Method in class org.alfresco.bm.user.UserData
 
getUsersPendingCreation(int, int) - Method in class org.alfresco.bm.user.UserDataService
Get a list of usernames that are NOT created in alfresco with paging
getWarnDelay() - Method in class org.alfresco.bm.event.AbstractEventProcessor
 
getWarnDelay() - Method in interface org.alfresco.bm.event.EventProcessor
Provide a hint for the processing framework on how much time should elapse before the warnings need to be issued over the delay
getWarning() - Method in class org.alfresco.bm.event.EventRecord
 

H

hashCode() - Method in class org.alfresco.bm.event.Event
 
HEADER_ACCEPT - Static variable in class org.alfresco.bm.json.JSONUtil
 
HEADER_CONTENT_TYPE - Static variable in class org.alfresco.bm.json.JSONUtil
 
HttpClientProvider - Interface in org.alfresco.bm.http
Provides HttpClient instance to be used to perform HTTP-calls.

I

INDEX_EVENT_NAME - Static variable in class org.alfresco.bm.event.EventRecord
 
INDEX_NAME - Static variable in class org.alfresco.bm.event.Event
 
INDEX_NEXT_AVAILABLE_EVENT - Static variable in class org.alfresco.bm.event.Event
 
INDEX_START_TIME - Static variable in class org.alfresco.bm.event.EventRecord
 
isCreated() - Method in class org.alfresco.bm.user.UserData
 
isSuccess() - Method in class org.alfresco.bm.event.EventRecord
 
isSuccess() - Method in class org.alfresco.bm.event.EventResult
 

J

JSON_DATA - Static variable in class org.alfresco.bm.json.JSONUtil
 
JSON_ID - Static variable in class org.alfresco.bm.json.JSONUtil
 
JSON_ITEMS - Static variable in class org.alfresco.bm.json.JSONUtil
 
JSON_NAME - Static variable in class org.alfresco.bm.json.JSONUtil
 
JSONArrayCallback - Class in org.alfresco.bm.json
A AuthenticatedHttpEventProcessor.HttpRequestCallback that parses the response body as a JSONArrayin the 'data' property (RestConstants#JSON_DATA) of the JSON body.
JSONArrayCallback() - Constructor for class org.alfresco.bm.json.JSONArrayCallback
 
JSONObjectCallback - Class in org.alfresco.bm.json
A AuthenticatedHttpEventProcessor.HttpRequestCallback that parses the response body as a JSONObject.
JSONObjectCallback(boolean) - Constructor for class org.alfresco.bm.json.JSONObjectCallback
 
JSONUtil - Class in org.alfresco.bm.json
Utilities for JSON-parsing.
JSONUtil() - Constructor for class org.alfresco.bm.json.JSONUtil
 

L

lockEvent(Event, String) - Method in interface org.alfresco.bm.event.EventService
Lock an event for processing by the given owner
logger - Variable in class org.alfresco.bm.event.AbstractEventProcessor
Resource for derived classes to use for logging

M

main(String...) - Static method in class org.alfresco.bm.report.ReportClient
Report main method
main(String...) - Static method in class org.alfresco.bm.tools.ZooKeeperClassImporter
Real main method
markUserAsCreated(String) - Method in class org.alfresco.bm.user.UserDataService
Mark the given user as "created in alfresco"
MIME_TYPE_JSON - Static variable in class org.alfresco.bm.json.JSONUtil
 

N

nextEvent(String, long, long) - Method in interface org.alfresco.bm.event.EventService
Retrieve the next event in the queue.

O

onCallSuccess(HttpMethod) - Method in interface org.alfresco.bm.http.AuthenticatedHttpEventProcessor.HttpRequestCallback
Called when call was successful.
onCallSuccess(HttpMethod) - Method in class org.alfresco.bm.json.JSONArrayCallback
 
onCallSuccess(HttpMethod) - Method in class org.alfresco.bm.json.JSONObjectCallback
 
onCallSuccess(HttpMethod) - Method in class org.alfresco.bm.user.PickUserCallback
 
onError(HttpMethod, Throwable) - Method in interface org.alfresco.bm.http.AuthenticatedHttpEventProcessor.HttpRequestCallback
Called when an error occurs when sending the request.
onError(HttpMethod, Throwable) - Method in class org.alfresco.bm.json.JSONArrayCallback
 
onError(HttpMethod, Throwable) - Method in class org.alfresco.bm.json.JSONObjectCallback
 
onError(HttpMethod, Throwable) - Method in class org.alfresco.bm.user.PickUserCallback
 
org.alfresco.bm.config - package org.alfresco.bm.config
 
org.alfresco.bm.event - package org.alfresco.bm.event
 
org.alfresco.bm.http - package org.alfresco.bm.http
 
org.alfresco.bm.json - package org.alfresco.bm.json
 
org.alfresco.bm.report - package org.alfresco.bm.report
 
org.alfresco.bm.tools - package org.alfresco.bm.tools
 
org.alfresco.bm.user - package org.alfresco.bm.user
 

P

PATH_CLASSES - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_CLUSTERS - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_DEFINITION - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_JARS - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_LOADED - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_PROPERTIES - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_RUNS - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_SERVER - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_SERVERS - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PATH_TESTS - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PEOPLE_JSON_EMAIL - Static variable in class org.alfresco.bm.user.CreateUser
 
PEOPLE_JSON_FIRSTNAME - Static variable in class org.alfresco.bm.user.CreateUser
 
PEOPLE_JSON_LASTNAME - Static variable in class org.alfresco.bm.user.CreateUser
 
PEOPLE_JSON_NODEREF - Static variable in class org.alfresco.bm.user.CreateUser
 
PEOPLE_JSON_PASSWORD - Static variable in class org.alfresco.bm.user.CreateUser
 
PEOPLE_JSON_USERNAME - Static variable in class org.alfresco.bm.user.CreateUser
 
PEOPLE_PICKER_URL - Static variable in class org.alfresco.bm.user.CreateUser
URL for getting a single cm:person object based on a username.
PEOPLE_URL - Static variable in class org.alfresco.bm.user.CreateUser
URL for people-related operations
PickUserCallback - Class in org.alfresco.bm.user
Callback that extracts the nodeRef from the picked user.
PickUserCallback(String) - Constructor for class org.alfresco.bm.user.PickUserCallback
 
populateRequestBody(EntityEnclosingMethod, JSONObject) - Static method in class org.alfresco.bm.json.JSONUtil
Adds the JSON as request-body the the method and sets the correct content-type.
PrepareUsers - Class in org.alfresco.bm.user
Input
PrepareUsers(String, long, UserDataService) - Constructor for class org.alfresco.bm.user.PrepareUsers
 
processEvent(Event) - Method in class org.alfresco.bm.event.DoNothingEventProcessor
 
processEvent(Event) - Method in interface org.alfresco.bm.event.EventProcessor
Process an event.
processEvent(Event) - Method in class org.alfresco.bm.event.RaiseEventsEventProcessor
 
processEvent(Event) - Method in class org.alfresco.bm.http.AuthenticatedHttpEventProcessor
 
processEvent(Event) - Method in class org.alfresco.bm.user.CreateUser
 
processEvent(Event) - Method in class org.alfresco.bm.user.CreateUsers
 
processEvent(Event) - Method in class org.alfresco.bm.user.PrepareUsers
 
PROP_CLUSTER - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_CONTROL_CLUSTER - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_CONTROL_RUN_STATE - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_EVENT_PROCESSOR_THREADS - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_MONGO_URI - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_SERVER_ID - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_TEST_NAME - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_TEST_RUN_FQN - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
PROP_TEST_RUN_NAME - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
putEvent(Event) - Method in interface org.alfresco.bm.event.EventService
Adds an event to the provider.

R

RaiseEventsEventProcessor - Class in org.alfresco.bm.event
Raises the prescribed number of event with the given event name.
RaiseEventsEventProcessor(String, int) - Constructor for class org.alfresco.bm.event.RaiseEventsEventProcessor
Constructor with essential values
recordResult(EventRecord) - Method in interface org.alfresco.bm.event.ResultService
Simply store an event for later use
register() - Method in class org.alfresco.bm.event.AbstractEventProcessor
Register this instance for the event names that are handled.
register(String, EventProcessor) - Method in class org.alfresco.bm.event.EventProcessorRegistry
Register a processor for a given event name
ReportClient - Class in org.alfresco.bm.report
Client class to extract reports of a given test run stored in MongoDB
ReportClient() - Constructor for class org.alfresco.bm.report.ReportClient
 
ReportService - Interface in org.alfresco.bm.report
Service interface providing methods to access results and export it to a given format.
ReportServiceImpl - Class in org.alfresco.bm.report
Service class that retrieves test run results from MongoDB and generates a csv output file from the result.
ReportServiceImpl(MongoTemplate, String, String) - Constructor for class org.alfresco.bm.report.ReportServiceImpl
Constructor.
ReportUtil - Class in org.alfresco.bm.report
Report utility class that exports and formats data to a csv file.
ReportUtil() - Constructor for class org.alfresco.bm.report.ReportUtil
 
ResultService - Interface in org.alfresco.bm.event
Service interface providing methods to store and query for event results.

S

SEPARATOR - Static variable in interface org.alfresco.bm.config.ConfigConstants
 
setBatchSize(int) - Method in class org.alfresco.bm.user.CreateUsers
Override the default batch size
setBeanName(String) - Method in class org.alfresco.bm.event.AbstractEventProcessor
 
setCreated(boolean) - Method in class org.alfresco.bm.user.UserData
 
setData(Serializable) - Method in class org.alfresco.bm.event.EventRecord
 
setDataOwner(String) - Method in class org.alfresco.bm.event.Event
 
setEvent(Event) - Method in class org.alfresco.bm.event.EventRecord
 
setEventName(String) - Method in class org.alfresco.bm.event.AbstractEventProcessor
Set the single event name that this processor can handle
setEventNameCreateUsers(String) - Method in class org.alfresco.bm.user.CreateUsers
Override the default event name for more user creation scheduling
setEventNames(List<String>) - Method in class org.alfresco.bm.event.AbstractEventProcessor
Set the names of the events that this processor can handle
setEventNameUsersCreated(String) - Method in class org.alfresco.bm.user.CreateUsers
Override the default event name indicating that enough users have been created
setEventNameUsersCreated(String) - Method in class org.alfresco.bm.user.PrepareUsers
Override the default event name when users have been prepared.
setId(String) - Method in class org.alfresco.bm.event.Event
 
setId(String) - Method in class org.alfresco.bm.event.EventRecord
 
setId(String) - Method in class org.alfresco.bm.user.UserData
 
setIgnoreExistingUsers(boolean) - Method in class org.alfresco.bm.user.CreateUser
 
setJSONExpected(HttpMethod) - Static method in class org.alfresco.bm.json.JSONUtil
Sets a header to notify server we expect a JSON-repsponse for this method.
setLockOwner(String) - Method in class org.alfresco.bm.event.Event
 
setLockTime(long) - Method in class org.alfresco.bm.event.Event
 
setName(String) - Method in class org.alfresco.bm.event.Event
 
setNodeId(String) - Method in class org.alfresco.bm.user.UserData
 
setPassword(String) - Method in class org.alfresco.bm.user.UserData
 
setQueueTime(long) - Method in class org.alfresco.bm.event.Event
 
setRegistry(EventProcessorRegistry) - Method in class org.alfresco.bm.event.AbstractEventProcessor
Inject the registry that this instance will register with.
setScheduledTime(long) - Method in class org.alfresco.bm.event.Event
 
setStartDelay(long) - Method in class org.alfresco.bm.event.EventRecord
 
setStartTime(long) - Method in class org.alfresco.bm.event.EventRecord
 
setSuccess(boolean) - Method in class org.alfresco.bm.event.EventRecord
 
setTicket(String) - Method in class org.alfresco.bm.user.UserData
 
setTicketBasedAuthentication(boolean) - Method in class org.alfresco.bm.http.AuthenticatedHttpEventProcessor
Enable ticket-based authentication.
setTicketForUser(String, String) - Method in class org.alfresco.bm.user.UserDataService
Set the ticket value for the user with the given username.
setTime(long) - Method in class org.alfresco.bm.event.EventRecord
 
setUserName(String) - Method in class org.alfresco.bm.user.UserData
 
setWarnDelay(long) - Method in class org.alfresco.bm.event.AbstractEventProcessor
 
setWarning(String) - Method in class org.alfresco.bm.event.EventRecord
 
SharedHttpClientProvider - Class in org.alfresco.bm.http
A class responsible for managing one shared HttpClient instance.
SharedHttpClientProvider(String, int) - Constructor for class org.alfresco.bm.http.SharedHttpClientProvider
 
sortHeaders(List<String>) - Static method in class org.alfresco.bm.report.ReportUtil
Helper method to order header labels of csv file.
start() - Method in class org.alfresco.bm.tools.BMTestRunner
Start the application context
stop() - Method in class org.alfresco.bm.tools.BMTestRunner
Stop the application context

T

toString() - Method in class org.alfresco.bm.event.Event
 

U

updateTicketForUser(String, String) - Method in interface org.alfresco.bm.http.AuthenticationDetailsProvider
Update the value of the ticket for the given user.
updateTicketForUser(String, String) - Method in class org.alfresco.bm.http.UserDataAutheticationDetailsProvider
 
updateUserNodeId(UserData, String) - Method in class org.alfresco.bm.user.UserDataService
Update the alfresco node-id for the given user in mongo and in given object.
UserData - Class in org.alfresco.bm.user
Data representing a single user.
UserData() - Constructor for class org.alfresco.bm.user.UserData
 
UserDataAutheticationDetailsProvider - Class in org.alfresco.bm.http
AuthenticationDetailsProvider using UserData to store user-details.
UserDataAutheticationDetailsProvider(UserDataService, String, String) - Constructor for class org.alfresco.bm.http.UserDataAutheticationDetailsProvider
 
UserDataService - Class in org.alfresco.bm.user
Service providing access to UserData storage.
UserDataService(MongoTemplate, String) - Constructor for class org.alfresco.bm.user.UserDataService
 

V

valueOf(String) - Static method in enum org.alfresco.bm.config.ConfigConstants.RunState
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.alfresco.bm.config.ConfigConstants.RunState
Returns an array containing the constants of this enum type, in the order they are declared.

Z

ZooKeeperClassImporter - Class in org.alfresco.bm.tools
Import classes off the classpath into a ZooKeeper location
ZooKeeperClassImporter() - Constructor for class org.alfresco.bm.tools.ZooKeeperClassImporter
 

A B C D E F G H I J L M N O P R S T U V Z

Copyright © 2012. All Rights Reserved.