org.wso2.carbon.registry.core.jdbc.handlers.HandlerManager.addHandler()
Registers handlers with the handler manager. Each handler should be registered with a Filter. If a handler should be engaged only to a subset of allowed methods, those methods can be specified as a string array.
@param methods Methods for which the registered handler should be engaged. Allowed values inthe string array are "GET", "PUT", "IMPORT", "DELETE", "PUT_CHILD", "IMPORT_CHILD", "MOVE", "COPY", "RENAME", "CREATE_LINK", "REMOVE_LINK", "ADD_ASSOCIATION", "RESOURCE_EXISTS", "REMOVE_ASSOCIATION", "GET_ASSOCIATIONS", "GET_ALL_ASSOCIATIONS", "APPLY_TAG", "GET_RESOURCE_PATHS_WITH_TAG", "GET_TAGS", "REMOVE_TAG", "ADD_COMMENT", "EDIT_COMMENT", "GET_COMMENTS", "RATE_RESOURCE", "GET_AVERAGE_RATING", "GET_RATING", "CREATE_VERSION", "GET_VERSIONS", "RESTORE_VERSION", "EXECUTE_QUERY", "SEARCH_CONTENT", and "INVOKE_ASPECT". If null is given, handler will be engaged to all methods.
@param filter Filter instance associated with the handler.
@param handler Handler instance to be registered.