44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# File 'lib/cmis_server/repository.rb', line 44
def to_h
{
acl: @acl,
all_versions_searchable: @all_versions_searchable,
changes: @changes,
content_stream_updatability: @content_stream_updatability,
get_descendants: @get_descendants,
get_folder_tree: @get_folder_tree,
multifiling: @multifiling,
pwc_searchable: @pwc_searchable,
pwc_updatable: @pwc_updatable,
query: @query,
renditions: @renditions,
unfiling: @unfiling,
version_specific_filing: @version_specific_filing,
join: @join,
secondary_types: @secondary_types,
create_type: @create_type,
bulk_update: @bulk_update,
append_content_stream: @append_content_stream,
update_type: @update_type,
delete_type: @delete_type,
bulk_delete_properties: @bulk_delete_properties,
bulk_move: @bulk_move,
extended_query: @extended_query,
extended_acl: @extended_acl
}
end
|