specGuide.xml 125 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: ps
  5. (C) Copyright IBM Corp. 2005, 2015
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <!--
  9. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  10. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  11. -->
  12. <!-- +++++++++++++++++++++++++ -->
  13. <!--
  14. This file contains all the CC supported so.select valid subject values, used when calling CC select.xts
  15. -->
  16. <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  17. <!-- Specification Guide -->
  18. <specGuide>
  19. <!-- Global param definitions -->
  20. <globalParams>
  21. <param name="permissions" description="default permissions when not specified for subject">[permission('write') or permission('traverse')]</param>
  22. <param name="returns">
  23. <return name="so.id"/>
  24. <return name="so.searchPath"/>
  25. <return name="so.storeID"/>
  26. </param>
  27. <param name="search-container">
  28. <search>
  29. <contents>
  30. <param name="basic"/>
  31. </contents>
  32. <method/>
  33. <types>
  34. <param name="folder"/>
  35. <param name="package"/>
  36. <param name="metricsPackage"/>
  37. </types>
  38. <types_index>
  39. <param name="folder"/>
  40. <param name="package"/>
  41. <param name="metricsPackage"/>
  42. </types_index>
  43. <modified/>
  44. <scopes>
  45. <param name="fb"/>
  46. <param name="fo"/>
  47. <param name="p"/>
  48. <param name="m"/>
  49. </scopes>
  50. </search>
  51. </param>
  52. <param name="search-packages">
  53. <search>
  54. <contents>
  55. <param name="basic"/>
  56. </contents>
  57. <method/>
  58. <types>
  59. <param name="package"/>
  60. <param name="metricsPackage"/>
  61. </types>
  62. <types_index>
  63. <param name="package"/>
  64. <param name="metricsPackage"/>
  65. </types_index>
  66. <modified/>
  67. <scopes>
  68. <param name="fb"/>
  69. <param name="fo"/>
  70. <param name="p"/>
  71. <param name="m"/>
  72. </scopes>
  73. </search>
  74. </param>
  75. <param name="search-metricspackages">
  76. <search>
  77. <contents>
  78. <param name="basic"/>
  79. </contents>
  80. <method/>
  81. <types>
  82. <param name="metricsPackage"/>
  83. </types>
  84. <types_index>
  85. <param name="metricsPackage"/>
  86. </types_index>
  87. <modified/>
  88. <scopes>
  89. <param name="fb"/>
  90. <param name="fo"/>
  91. <param name="p"/>
  92. <param name="m"/>
  93. </scopes>
  94. </search>
  95. </param>
  96. <param name="search-namespacecontainer">
  97. <search>
  98. <contents>
  99. <param name="basic"/>
  100. </contents>
  101. <method/>
  102. <types>
  103. <param name="namespaceFolder"/>
  104. </types>
  105. <types_index>
  106. <param name="namespaceFolder"/>
  107. </types_index>
  108. <scopes>
  109. <param name="fb"/>
  110. <param name="fo"/>
  111. </scopes>
  112. </search>
  113. </param>
  114. <param name="search-configurationcontainer">
  115. <search>
  116. <contents>
  117. <param name="basic"/>
  118. </contents>
  119. <method/>
  120. <types>
  121. <param name="configurationFolder"/>
  122. </types>
  123. <types_index>
  124. <param name="configurationFolder"/>
  125. </types_index>
  126. <scopes>
  127. <param name="fb"/>
  128. <param name="fo"/>
  129. </scopes>
  130. </search>
  131. </param>
  132. <param name="search-reports">
  133. <search>
  134. <contents>
  135. <param name="basic"/>
  136. <param name="index"/>
  137. </contents>
  138. <method/>
  139. <types>
  140. <param name="analysis"/>
  141. <param name="powerPlayReport"/>
  142. <param name="powerPlay8Report"/>
  143. <param name="powerPlay8ReportView"/>
  144. <param name="query"/>
  145. <param name="report"/>
  146. <param name="reportView"/>
  147. </types>
  148. <types_index>
  149. <param name="analysis"/>
  150. <param name="powerPlayReport"/>
  151. <param name="powerPlay8Report"/>
  152. <param name="powerPlay8ReportView"/>
  153. <param name="query"/>
  154. <param name="report"/>
  155. <param name="reportView"/>
  156. </types_index>
  157. <modified/>
  158. <scopes>
  159. <param name="fb"/>
  160. <param name="fo"/>
  161. <param name="p"/>
  162. <param name="m"/>
  163. </scopes>
  164. </search>
  165. </param>
  166. <param name="search-admin-container">
  167. <search>
  168. <contents>
  169. <param name="basic"/>
  170. </contents>
  171. <method/>
  172. <types>
  173. <param name="adminFolder"/>
  174. </types>
  175. <modified/>
  176. <scopes>
  177. <param name="fb"/>
  178. <param name="fo"/>
  179. </scopes>
  180. </search>
  181. </param>
  182. <param name="search-catalog-container">
  183. <search>
  184. <contents>
  185. <param name="basic"/>
  186. </contents>
  187. <method/>
  188. <types>
  189. <param name="catalogFolder"/>
  190. </types>
  191. <modified/>
  192. <scopes>
  193. <param name="fb"/>
  194. <param name="fo"/>
  195. </scopes>
  196. </search>
  197. </param>
  198. <param name="search-capability-container">
  199. <search>
  200. <contents>
  201. <param name="basic"/>
  202. </contents>
  203. <method/>
  204. <types>
  205. <param name="capability"/>
  206. </types>
  207. <modified/>
  208. <scopes>
  209. <param name="fb"/>
  210. <param name="fo"/>
  211. </scopes>
  212. </search>
  213. </param>
  214. <param name="search-deployment-container">
  215. <search>
  216. <contents>
  217. <param name="basic"/>
  218. </contents>
  219. <method/>
  220. <types>
  221. <param name="folder"/>
  222. <param name="package"/>
  223. <param name="metricsPackage"/>
  224. </types>
  225. <types_index>
  226. <param name="folder"/>
  227. <param name="package"/>
  228. <param name="metricsPackage"/>
  229. </types_index>
  230. <modified/>
  231. <scopes>
  232. <param name="fb"/>
  233. <param name="fo"/>
  234. <param name="p"/>
  235. </scopes>
  236. </search>
  237. </param>
  238. <param name="virtualRootDisplayNodes">
  239. <displayNodes>
  240. <node id="contentId"/>
  241. <node id="myFoldersId"/>
  242. </displayNodes>
  243. </param>
  244. <param name="folderActions">
  245. <action name="new" dialogType="regular" messageId="action.new.folder">
  246. <param name="new_class">folder</param>
  247. </action>
  248. </param>
  249. <param name="adminFolderActions">
  250. <action name="new" dialogType="regular" messageId="action.new.folder">
  251. <param name="new_class">adminFolder</param>
  252. </action>
  253. </param>
  254. <param name="catalogFolderActions">
  255. <action name="new" dialogType="regular" messageId="action.new.folder">
  256. <param name="new_class">catalogFolder</param>
  257. </action>
  258. </param>
  259. <param name="namespaceFolderActions">
  260. <action name="new" dialogType="regular" messageId="action.new.folder">
  261. <param name="new_class">namespaceFolder</param>
  262. </action>
  263. </param>
  264. <!-- general filters -->
  265. <param name="filterToSelectContainerObjects" description="Filter for objects that are containers and that can be selected. Specify value in AWK format regular expression">(.*write.*traverse.*)|(.*traverse.*write.*)</param>
  266. <param name="filterToSelectNonContainerObjects" description="Filter for objects that are not containers and that can be selected. Specify value in AWK format regular expression">(.*read.*)|(.*execute.*)</param>
  267. <param name="filterToDrillContainerObjects" description="Filter to be able to navigate into objects that are containers. Specify value in AWK format regular expression">(.*traverse.*)</param>
  268. <!-- specific filters -->
  269. <param name="filterToExcludeReportViewWithBaseObject" description="Filter used to restrict selection of the reportView of a base object. The reportView is displayed in the list of entries">
  270. <object>interactiveReport</object>
  271. </param>
  272. </globalParams>
  273. <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  274. <!-- +++++++++++++++++++++++++ -->
  275. <!-- +++++++++++++++++++++++++ -->
  276. <!-- +++++++++++++++++++++++++ -->
  277. <!--
  278. THE "MATCH" ATTRIBUTE CONTAINS ONE OR MORE VALUES THAT WILL BE USED WHEN COMPARING
  279. THE SUBJECT THAT IS SPECIFIED IN THE INPUT PARAMETER SO.SELECT
  280. TO DETERMINE WHAT IS TO BE USED TO GENERATE THE CORRESPONDING SELECTION SPECIFICATION.
  281. -->
  282. <!-- +++++++++++++++++++++++++ -->
  283. <!-- +++++++++++++++++++++++++ -->
  284. <!-- +++++++++++++++++++++++++ -->
  285. <!-- Container subjects -->
  286. <subject match="jobDefinition.container shortcut.container URL.container agentDefinition.container agentDefinitionView.container analysis.container pagelet.container dashboard.container powerPlayCube.container powerPlayReport.container powerPlay8Report.container powerPlay8ReportView.container query.container report.container interactiveReport.container reportTemplate.container reportView.container metricsDataSourceETLTask.container metricsExportTask.container metricsFileImportTask.container metricsMaintenanceTask.container document.container planningTask.container adaptiveAnalytics.container dataMovementTask.container dataMovementTaskAlias.container">
  287. <param name="objects">
  288. <object isContainer="true" isSelectable="false">content</object>
  289. <object isContainer="true" isSelectable="true">package</object>
  290. <object isContainer="true" isSelectable="true">folder</object>
  291. </param>
  292. <param name="defaultRootId">contentId</param>
  293. <param name="presentation" messageId="default">
  294. <options>
  295. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  296. <option name="displayRootDisabled"/>
  297. </options>
  298. </param>
  299. <param name="actions" references="folderActions"/>
  300. <param name="modes" default="navigate">
  301. <search references="search-container"/>
  302. </param>
  303. </subject>
  304. <subject match="adaptiveAnalytics.package.container">
  305. <param name="objects">
  306. <object isContainer="true" isSelectable="true">content</object>
  307. <object isContainer="true" isSelectable="false">package</object>
  308. <object isContainer="true" isSelectable="true">folder</object>
  309. </param>
  310. <param name="defaultRootId">contentId</param>
  311. <param name="presentation" messageId="default">
  312. <options>
  313. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  314. <option name="onMove" objectIsContainer="false"/>
  315. <option name="onCopy" objectIsContainer="false"/>
  316. </options>
  317. </param>
  318. <param name="actions" references="folderActions"/>
  319. <param name="modes" default="navigate">
  320. <search>
  321. <contents>
  322. <param name="basic"/>
  323. </contents>
  324. <method/>
  325. <types>
  326. <param name="folder"/>
  327. </types>
  328. <types_index>
  329. <param name="folder"/>
  330. </types_index>
  331. <modified/>
  332. <scopes>
  333. <param name="fb"/>
  334. <param name="fo"/>
  335. <param name="p"/>
  336. <param name="m"/>
  337. </scopes>
  338. </search>
  339. </param>
  340. </subject>
  341. <subject match="drillPath.container">
  342. <param name="objects">
  343. <object isContainer="true" isSelectable="false">content</object>
  344. <object isContainer="true" isSelectable="true">package</object>
  345. <object isContainer="true" isSelectable="false">folder</object>
  346. </param>
  347. <param name="defaultRootId">contentId</param>
  348. <param name="presentation" messageId="default">
  349. <options>
  350. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  351. <option name="displayRootDisabled"/>
  352. </options>
  353. </param>
  354. <param name="modes" default="navigate">
  355. <search references="search-container"/>
  356. </param>
  357. </subject>
  358. <subject match="planning.package.container">
  359. <param name="objects">
  360. <object isContainer="true" isSelectable="true">content</object>
  361. <object isContainer="true" isSelectable="false">package</object>
  362. <object isContainer="true" isSelectable="true">folder</object>
  363. </param>
  364. <param name="defaultRootId">contentId</param>
  365. <param name="presentation" messageId="default">
  366. <options>
  367. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  368. <option name="onMove" objectIsContainer="false"/>
  369. <option name="onCopy" objectIsContainer="false"/>
  370. </options>
  371. </param>
  372. <param name="actions" references="folderActions"/>
  373. <param name="modes" default="navigate">
  374. <search>
  375. <contents>
  376. <param name="basic"/>
  377. </contents>
  378. <method/>
  379. <types>
  380. <param name="folder"/>
  381. </types>
  382. <types_index>
  383. <param name="folder"/>
  384. </types_index>
  385. <modified/>
  386. <scopes>
  387. <param name="fb"/>
  388. <param name="fo"/>
  389. <param name="p"/>
  390. <param name="m"/>
  391. </scopes>
  392. </search>
  393. </param>
  394. </subject>
  395. <subject match="folder.container package.container launchable.container">
  396. <param name="objects">
  397. <object isContainer="true" isSelectable="true">content</object>
  398. <object isContainer="true" isSelectable="true">package</object>
  399. <object isContainer="true" isSelectable="true">folder</object>
  400. </param>
  401. <param name="defaultRootId">contentId</param>
  402. <param name="presentation" messageId="default">
  403. <options>
  404. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  405. <option name="onMove" objectIsContainer="false"/>
  406. <option name="onCopy" objectIsContainer="false"/>
  407. </options>
  408. </param>
  409. <param name="actions" references="folderActions"/>
  410. <param name="modes" default="navigate">
  411. <search references="search-container"/>
  412. </param>
  413. </subject>
  414. <subject match="capability.container securedFunction.container">
  415. <param name="objects">
  416. <object isContainer="true" isSelectable="true">capability</object>
  417. </param>
  418. <param name="defaultRootId">capabilityId</param>
  419. <param name="presentation" messageId="default">
  420. <options>
  421. <option name="onMove" objectIsContainer="false"/>
  422. <option name="onCopy" objectIsContainer="false"/>
  423. </options>
  424. </param>
  425. <param name="actions">
  426. <action name="new" dialogType="regular" messageId="action.new.folder">
  427. <param name="new_class">capability</param>
  428. </action>
  429. </param>
  430. <param name="modes" default="navigate">
  431. <search references="search-capability-container"/>
  432. </param>
  433. </subject>
  434. <subject match="securedFeature.container">
  435. <param name="objects">
  436. <object isContainer="true" isSelectable="false">capability</object>
  437. <object isContainer="true" isSelectable="true">securedFunction</object>
  438. </param>
  439. <param name="defaultRootId">capabilityId</param>
  440. <param name="presentation" messageId="default">
  441. <options>
  442. <option name="onMove" objectIsContainer="false"/>
  443. <option name="onCopy" objectIsContainer="false"/>
  444. </options>
  445. </param>
  446. <param name="actions">
  447. <action name="new" dialogType="regular" messageId="action.new.folder">
  448. <param name="new_class">capability</param>
  449. </action>
  450. </param>
  451. <param name="modes" default="navigate">
  452. <search references="search-capability-container"/>
  453. </param>
  454. </subject>
  455. <subject match="fragments.booklet.selection">
  456. <param name="objects">
  457. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*traverse.*)">content</object>
  458. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*traverse.*)">package</object>
  459. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*traverse.*)">folder</object>
  460. </param>
  461. <param name="defaultRootId">contentId</param>
  462. <param name="presentation" messageId="default">
  463. <options>
  464. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  465. <option name="onMove" objectIsContainer="false"/>
  466. <option name="onCopy" objectIsContainer="false"/>
  467. </options>
  468. </param>
  469. <param name="actions" references="folderActions"/>
  470. <param name="modes" default="navigate">
  471. <search references="search-container"/>
  472. </param>
  473. </subject>
  474. <subject match="remote_content">
  475. <param name="objects">
  476. <object isContainer="true" isSelectable="true">content</object>
  477. <object isContainer="true" isSelectable="true">package</object>
  478. <object isContainer="true" isSelectable="true">folder</object>
  479. </param>
  480. <param name="defaultRootId">contentId</param>
  481. <param name="presentation" messageId="remote_content">
  482. <options>
  483. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  484. <option name="onMove" objectIsContainer="false"/>
  485. <option name="onCopy" objectIsContainer="false"/>
  486. </options>
  487. </param>
  488. <param name="actions" references="folderActions"/>
  489. <param name="modes" default="navigate">
  490. <search references="search-container"/>
  491. </param>
  492. </subject>
  493. <subject match="contentTask.container indexUpdateTask.container importDeployment.container exportDeployment.container planningMacroTask.container queryServiceTask.container migrationTask.container jobDefinition.container.admin shortcut.container.admin">
  494. <param name="objects">
  495. <object isContainer="true" isSelectable="true">adminFolder</object>
  496. </param>
  497. <param name="defaultRootId">adminId</param>
  498. <param name="presentation" messageId="default"/>
  499. <param name="actions" references="adminFolderActions"/>
  500. <param name="modes" default="navigate">
  501. <search references="search-admin-container"/>
  502. </param>
  503. </subject>
  504. <subject match="visualization.container catalogFolder.container">
  505. <param name="objects">
  506. <object isContainer="true" isSelectable="true">catalogFolder</object>
  507. </param>
  508. <param name="defaultRootId">catalogId</param>
  509. <param name="presentation" messageId="default">
  510. <options>
  511. <option name="onMove" objectIsContainer="false"/>
  512. <option name="onCopy" objectIsContainer="false"/>
  513. </options>
  514. </param>
  515. <param name="actions" references="catalogFolderActions"/>
  516. <param name="modes" default="navigate">
  517. <search references="search-catalog-container"/>
  518. </param>
  519. </subject>
  520. <subject match="adminFolder.container">
  521. <param name="objects">
  522. <object isContainer="true" isSelectable="true">adminFolder</object>
  523. </param>
  524. <param name="defaultRootId">adminId</param>
  525. <param name="presentation" messageId="default">
  526. <options>
  527. <option name="onMove" objectIsContainer="false"/>
  528. <option name="onCopy" objectIsContainer="false"/>
  529. </options>
  530. </param>
  531. <param name="actions" references="adminFolderActions"/>
  532. <param name="modes" default="navigate">
  533. <search references="search-admin-container"/>
  534. </param>
  535. </subject>
  536. <subject match="account.container">
  537. <param name="objects">
  538. <object isContainer="true" isSelectable="true">namespaceFolder</object>
  539. <object isContainer="true" isSelectable="true">namespace</object>
  540. </param>
  541. <param name="defaultRootId">directoryId</param>
  542. <param name="presentation" messageId="default"/>
  543. <param name="actions" references="namespaceFolderActions"/>
  544. <param name="modes" default="navigate">
  545. <search references="search-container"/>
  546. </param>
  547. </subject>
  548. <subject match="account.container.withName">
  549. <param name="objects">
  550. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*read.*traverse.*)|(.*traverse.*read.*)">namespaceFolder</object>
  551. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*read.*traverse.*)|(.*traverse.*read.*)">namespace</object>
  552. </param>
  553. <param name="defaultRootId">directoryId</param>
  554. <param name="returns">
  555. <return name="so.searchPath"/>
  556. <return name="so.id"/>
  557. <return name="so.storeID"/>
  558. <return name="so.defaultName"/>
  559. </param>
  560. <param name="presentation" messageId="default"/>
  561. <param name="permissions"/>
  562. <param name="modes" default="navigate">
  563. <search references="search-container"/>
  564. </param>
  565. </subject>
  566. <subject match="distributionList.container contact.container group.container role.container">
  567. <param name="objects">
  568. <object isContainer="true" isSelectable="true">namespaceFolder</object>
  569. <object isContainer="true" isSelectable="true">namespace</object>
  570. </param>
  571. <param name="defaultRootId">directoryId</param>
  572. <param name="presentation" messageId="default">
  573. <options>
  574. <option name="startDisplayAt">namespace</option>
  575. </options>
  576. </param>
  577. <param name="actions" references="namespaceFolderActions"/>
  578. <param name="modes" default="navigate">
  579. <search references="search-namespacecontainer"/>
  580. </param>
  581. </subject>
  582. <subject match="namespaceFolder.container">
  583. <param name="objects">
  584. <object isContainer="true" isSelectable="true">namespaceFolder</object>
  585. <object isContainer="true" isSelectable="true">namespace</object>
  586. </param>
  587. <param name="defaultRootId">directoryId</param>
  588. <param name="presentation" messageId="default">
  589. <options>
  590. <option name="startDisplayAt">namespace</option>
  591. <option name="onMove" objectIsContainer="false"/>
  592. <option name="onCopy" objectIsContainer="false"/>
  593. </options>
  594. </param>
  595. <param name="actions" references="namespaceFolderActions"/>
  596. <param name="modes" default="navigate">
  597. <search references="search-namespacecontainer"/>
  598. </param>
  599. </subject>
  600. <subject match="dataSourceConnection.container">
  601. <param name="objects">
  602. <object isContainer="false" isSelectable="true">dataSource</object>
  603. <object isContainer="true" isSelectable="false">namespace</object>
  604. </param>
  605. <param name="defaultRootId">directoryId</param>
  606. <param name="presentation" messageId="default">
  607. <options>
  608. <option name="startDisplayAt">namespace</option>
  609. </options>
  610. </param>
  611. <param name="modes" default="navigate"/>
  612. </subject>
  613. <subject match="dataSourceSignon.container">
  614. <param name="objects">
  615. <object isContainer="false" isSelectable="true">dataSourceConnection</object>
  616. <object isContainer="true" isSelectable="false">dataSource</object>
  617. <object isContainer="true" isSelectable="false">namespace</object>
  618. </param>
  619. <param name="defaultRootId">directoryId</param>
  620. <param name="presentation" messageId="default">
  621. <options>
  622. <option name="startDisplayAt">namespace</option>
  623. </options>
  624. </param>
  625. <param name="modes" default="navigate"/>
  626. </subject>
  627. <subject match="dispatcher.container">
  628. <param name="objects">
  629. <object isContainer="false" isSelectable="true">configuration</object>
  630. <object isContainer="true" isSelectable="true">configurationFolder</object>
  631. </param>
  632. <param name="defaultRootId">configurationId</param>
  633. <param name="presentation" messageId="toolmove.dispatcher.configurationfolder"/>
  634. <param name="modes" default="navigate">
  635. <search references="search-configurationcontainer"/>
  636. </param>
  637. </subject>
  638. <subject match="configurationFolder.container">
  639. <param name="objects">
  640. <object isContainer="false" isSelectable="true">configuration</object>
  641. <object isContainer="true" isSelectable="true">configurationFolder</object>
  642. </param>
  643. <param name="defaultRootId">configurationId</param>
  644. <param name="presentation" messageId="toolmove.dispatcher.configurationfolder">
  645. <options>
  646. <option name="onMove" objectIsContainer="false"/>
  647. <option name="onCopy" objectIsContainer="false"/>
  648. </options>
  649. </param>
  650. <param name="actions">
  651. <action name="new" dialogType="regular" messageId="action.new.folder">
  652. <param name="new_class">configurationFolder</param>
  653. </action>
  654. </param>
  655. <param name="modes" default="navigate">
  656. <search>
  657. <contents>
  658. <param name="basic"/>
  659. </contents>
  660. <method/>
  661. <types>
  662. <param name="configurationFolder"/>
  663. </types>
  664. <types_index>
  665. <param name="configurationFolder"/>
  666. </types_index>
  667. <modified/>
  668. <scopes>
  669. <param name="fb"/>
  670. <param name="fo"/>
  671. </scopes>
  672. </search>
  673. </param>
  674. </subject>
  675. <subject match="pageDefinition.container">
  676. <param name="objects">
  677. <object isContainer="false" isSelectable="true">dispatcher</object>
  678. </param>
  679. <param name="defaultRootId">configurationId</param>
  680. <param name="presentation" messageId="default"/>
  681. <param name="modes" default="navigate">
  682. <search references="search-container"/>
  683. </param>
  684. </subject>
  685. <subject match="subscriptionFolder.container reportDataServiceAgentDefinition.container">
  686. <param name="objects">
  687. <object isContainer="true" isSelectable="true">subscriptionFolder</object>
  688. </param>
  689. <param name="defaultRootId">subscriptionFolderId</param>
  690. <param name="presentation" messageId="default">
  691. <options>
  692. <option name="startDisplayAt">subscriptionFolder</option>
  693. </options>
  694. </param>
  695. <param name="actions">
  696. <action name="new" dialogType="regular" messageId="action.new.folder">
  697. <param name="new_class">subscriptionFolder</param>
  698. </action>
  699. </param>
  700. <param name="modes" default="navigate">
  701. <search>
  702. <contents>
  703. <param name="basic"/>
  704. <param name="index"/>
  705. </contents>
  706. <method/>
  707. <types>
  708. <param name="subscriptionFolder"/>
  709. </types>
  710. <types_index>
  711. <param name="subscriptionFolder"/>
  712. </types_index>
  713. <modified/>
  714. <scopes>
  715. <param name="fb"/>
  716. <param name="fo"/>
  717. </scopes>
  718. </search>
  719. </param>
  720. </subject>
  721. <subject match="migration.container">
  722. <param name="objects">
  723. <object isContainer="true" isSelectable="false">content</object>
  724. <object isContainer="true" isSelectable="true">package</object>
  725. <object isContainer="true" isSelectable="true">folder</object>
  726. </param>
  727. <param name="defaultRootId">contentId</param>
  728. <param name="returns">
  729. <return name="so.searchPath"/>
  730. <return name="so.id"/>
  731. <return name="so.storeID"/>
  732. <return name="so.defaultName"/>
  733. <return name="so.ancestors" type="xml"/>
  734. </param>
  735. <param name="presentation" messageId="default">
  736. <options>
  737. <option name="onMove" objectIsContainer="false"/>
  738. <option name="onCopy" objectIsContainer="false"/>
  739. </options>
  740. </param>
  741. <param name="actions" references="folderActions"/>
  742. <param name="modes" default="navigate">
  743. <search references="search-container"/>
  744. </param>
  745. </subject>
  746. <subject match="powerPlay8Drill.container">
  747. <param name="objects">
  748. <object isContainer="true" isSelectable="false">content</object>
  749. <object isContainer="true" isSelectable="true" userInterfacesFilter="(.*powerPlayStudio.*)">package</object>
  750. <object isContainer="true" isSelectable="false">folder</object>
  751. </param>
  752. <param name="requestPredicate">[@objectClass="folder" or (@objectClass="package" and (@userInterfaces='powerPlayStudio' or not(@userInterfaces)))]</param>
  753. <param name="defaultRootId">contentId</param>
  754. <param name="presentation" messageId="drillpathPP8Container">
  755. <options>
  756. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  757. <option name="onMove" objectIsContainer="false"/>
  758. <option name="onCopy" objectIsContainer="false"/>
  759. </options>
  760. </param>
  761. <param name="actions" references="folderActions"/>
  762. <param name="modes" default="navigate">
  763. <search>
  764. <contents>
  765. <param name="basic"/>
  766. <param name="index"/>
  767. </contents>
  768. <method/>
  769. <types>
  770. <param name="package"/>
  771. </types>
  772. <types_index>
  773. <param name="powerPlay8Cube"/>
  774. </types_index>
  775. <modified/>
  776. <scopes>
  777. <param name="fb"/>
  778. <param name="fo"/>
  779. <param name="p"/>
  780. <param name="m"/>
  781. </scopes>
  782. </search>
  783. </param>
  784. </subject>
  785. <subject match="powerPlay8Drill.container.wizard">
  786. <param name="objects">
  787. <object isContainer="true" isSelectable="false">content</object>
  788. <object isContainer="true" isSelectable="true" userInterfacesFilter="(.*powerPlayStudio.*)">package</object>
  789. <object isContainer="true" isSelectable="false">folder</object>
  790. </param>
  791. <param name="requestPredicate">[@objectClass="folder" or (@objectClass="package" and (@userInterfaces='powerPlayStudio' or not(@userInterfaces)))]</param>
  792. <param name="defaultRootId">contentId</param>
  793. <param name="presentation" messageId="drillpathPP8ContainerWizard">
  794. <options>
  795. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  796. <option name="onMove" objectIsContainer="false"/>
  797. <option name="onCopy" objectIsContainer="false"/>
  798. </options>
  799. </param>
  800. <param name="actions" references="folderActions"/>
  801. <param name="modes" default="navigate">
  802. <search>
  803. <contents>
  804. <param name="basic"/>
  805. <param name="index"/>
  806. </contents>
  807. <method/>
  808. <types>
  809. <param name="package"/>
  810. </types>
  811. <types_index>
  812. <param name="package"/>
  813. </types_index>
  814. <modified/>
  815. <scopes>
  816. <param name="fb"/>
  817. <param name="fo"/>
  818. <param name="p"/>
  819. <param name="m"/>
  820. </scopes>
  821. </search>
  822. </param>
  823. </subject>
  824. <!-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
  825. <!-- Non-container subjects-->
  826. <!-- AAA -->
  827. <subject match="account">
  828. <param name="objects">
  829. <object isContainer="false" isSelectable="true">account</object>
  830. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  831. <object isContainer="true" isSelectable="false">namespace</object>
  832. </param>
  833. <param name="defaultRootId">directoryId</param>
  834. <param name="presentation" messageId="accountAndCopyuserprofile"/>
  835. <param name="permissions"/>
  836. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  837. </subject>
  838. <subject match="adminconsole.users">
  839. <param name="objects">
  840. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">account</object>
  841. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  842. <object isContainer="true" isSelectable="false">namespace</object>
  843. </param>
  844. <param name="defaultRootId">directoryId</param>
  845. <param name="presentation" messageId="adminconsole.users"/>
  846. <param name="permissions"/>
  847. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  848. <param name="returns">
  849. <return name="so.id"/>
  850. <return name="so.searchPath"/>
  851. <return name="so.storeID"/>
  852. <return name="so.defaultName"/>
  853. </param>
  854. <param name="modes" default="navigate">
  855. <search disabledAtContainer="directory">
  856. <contents>
  857. <param name="basic"/>
  858. </contents>
  859. <method/>
  860. <types>
  861. <param name="_users"/>
  862. </types>
  863. <scopes>
  864. <param name="fb"/>
  865. <param name="fo"/>
  866. <param name="ns"/>
  867. </scopes>
  868. </search>
  869. </param>
  870. </subject>
  871. <subject match="adminconsole.scopes.admin">
  872. <param name="objects">
  873. <object isContainer="true" isSelectable="true">package</object>
  874. <object isContainer="true" isSelectable="true">folder</object>
  875. <object isContainer="true" isSelectable="true">content</object>
  876. <object isContainer="true" isSelectable="true">adminFolder</object>
  877. <object isContainer="true" isSelectable="true">subscriptionFolder</object>
  878. </param>
  879. <param name="defaultRootId">contentId</param>
  880. <param name="presentation" messageId="adminconsole.scopes">
  881. <options>
  882. <option name="displayVirtualRootNode">
  883. <displayNodes>
  884. <node id="contentId"/>
  885. <node id="myFoldersId"/>
  886. <node id="subscriptionFolderId"/>
  887. <node id="adminId"/>
  888. </displayNodes>
  889. </option>
  890. </options>
  891. </param>
  892. <param name="returns">
  893. <return name="so.id"/>
  894. <return name="so.searchPath"/>
  895. <return name="so.defaultName"/>
  896. </param>
  897. <param name="modes" default="navigate">
  898. <search>
  899. <contents>
  900. <param name="basic"/>
  901. </contents>
  902. <method/>
  903. <types>
  904. <param name="folder"/>
  905. <param name="package"/>
  906. <param name="metricsPackage"/>
  907. <param name="adminFolder"/>
  908. <param name="subscriptionFolder"/>
  909. </types>
  910. <types_index>
  911. <param name="folder"/>
  912. <param name="package"/>
  913. <param name="metricsPackage"/>
  914. <param name="adminFolder"/>
  915. <param name="subscriptionFolder"/>
  916. </types_index>
  917. <modified/>
  918. <scopes>
  919. <param name="fb"/>
  920. <param name="fo"/>
  921. <param name="p"/>
  922. <param name="m"/>
  923. <param name="s"/>
  924. </scopes>
  925. </search>
  926. </param>
  927. </subject>
  928. <subject match="adminconsole.scopes">
  929. <param name="objects">
  930. <object isContainer="true" isSelectable="true">package</object>
  931. <object isContainer="true" isSelectable="true">folder</object>
  932. <object isContainer="true" isSelectable="true">content</object>
  933. <object isContainer="true" isSelectable="true">subscriptionFolder</object>
  934. </param>
  935. <param name="defaultRootId">contentId</param>
  936. <param name="presentation" messageId="adminconsole.scopes">
  937. <options>
  938. <option name="displayVirtualRootNode">
  939. <displayNodes>
  940. <node id="contentId"/>
  941. <node id="myFoldersId"/>
  942. <node id="subscriptionFolderId"/>
  943. </displayNodes>
  944. </option>
  945. </options>
  946. </param>
  947. <param name="returns">
  948. <return name="so.id"/>
  949. <return name="so.searchPath"/>
  950. <return name="so.defaultName"/>
  951. </param>
  952. <param name="modes" default="navigate">
  953. <search>
  954. <contents>
  955. <param name="basic"/>
  956. </contents>
  957. <method/>
  958. <types>
  959. <param name="folder"/>
  960. <param name="package"/>
  961. <param name="metricsPackage"/>
  962. <param name="subscriptionFolder"/>
  963. </types>
  964. <types_index>
  965. <param name="folder"/>
  966. <param name="package"/>
  967. <param name="metricsPackage"/>
  968. <param name="subscriptionFolder"/>
  969. </types_index>
  970. <modified/>
  971. <scopes>
  972. <param name="fb"/>
  973. <param name="fo"/>
  974. <param name="p"/>
  975. <param name="m"/>
  976. <param name="s"/>
  977. </scopes>
  978. </search>
  979. </param>
  980. </subject>
  981. <subject match="adminconsole.dispatchers">
  982. <param name="objects">
  983. <object isContainer="true" isSelectable="false">configurationFolder</object>
  984. <object isContainer="false" isSelectable="true">dispatcher</object>
  985. </param>
  986. <param name="defaultRootId">configurationId</param>
  987. <param name="presentation" messageId="adminconsole.dispatchers"/>
  988. <param name="returns">
  989. <return name="so.defaultName"/>
  990. <return name="so.searchPath"/>
  991. <return name="so.dispatcherID"/>
  992. </param>
  993. <param name="modes" default="navigate">
  994. <search>
  995. <contents>
  996. <param name="basic"/>
  997. </contents>
  998. <method/>
  999. <types>
  1000. <param name="dispatcher"/>
  1001. </types>
  1002. <modified/>
  1003. <scopes>
  1004. <param name="fb"/>
  1005. <param name="fo"/>
  1006. </scopes>
  1007. </search>
  1008. </param>
  1009. </subject>
  1010. <subject match="agentDefinition">
  1011. <param name="objects">
  1012. <object isContainer="true" isSelectable="false">package</object>
  1013. <object isContainer="true" isSelectable="false">folder</object>
  1014. <object isContainer="false" isSelectable="true">agentDefinition</object>
  1015. </param>
  1016. <param name="defaultRootId">contentId</param>
  1017. <param name="presentation" messageId="select.default">
  1018. <options>
  1019. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1020. </options>
  1021. </param>
  1022. </subject>
  1023. <subject match="agentDefinitionView">
  1024. <param name="objects">
  1025. <object isContainer="true" isSelectable="false">package</object>
  1026. <object isContainer="true" isSelectable="false">folder</object>
  1027. <object isContainer="false" isSelectable="true">agentDefinitionView</object>
  1028. </param>
  1029. <param name="defaultRootId">contentId</param>
  1030. <param name="presentation" messageId="select.default">
  1031. <options>
  1032. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1033. </options>
  1034. </param>
  1035. </subject>
  1036. <subject match="agentDefinitionViewBase">
  1037. <param name="objects">
  1038. <object isContainer="true" isSelectable="false">package</object>
  1039. <object isContainer="true" isSelectable="false">folder</object>
  1040. <object isContainer="false" isSelectable="true">agentDefinition</object>
  1041. <object isContainer="true" isSelectable="false">content</object>
  1042. </param>
  1043. <param name="defaultRootId">contentId</param>
  1044. <!-- The permissions are inline with those required for user to create an agent view -->
  1045. <param name="permissions">[permission('read') and permission('execute')]</param>
  1046. <param name="presentation" messageId="agentdefinitionviewBase">
  1047. <options>
  1048. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1049. </options>
  1050. </param>
  1051. </subject>
  1052. <subject match="agents.es">
  1053. <param name="objects">
  1054. <object isContainer="true" isSelectable="false">package</object>
  1055. <object isContainer="true" isSelectable="false">folder</object>
  1056. <object isContainer="false" isSelectable="true">agentDefinition</object>
  1057. <object isContainer="true" isSelectable="false">content</object>
  1058. </param>
  1059. <param name="defaultRootId">contentId</param>
  1060. <param name="presentation" messageId="agentdefinition.es">
  1061. <options>
  1062. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1063. </options>
  1064. </param>
  1065. <param name="modes" default="navigate">
  1066. <search>
  1067. <contents>
  1068. <param name="basic"/>
  1069. <param name="index"/>
  1070. </contents>
  1071. <method/>
  1072. <types>
  1073. <param name="agentDefinition"/>
  1074. <param name="agentDefinitionView"/>
  1075. </types>
  1076. <types_index>
  1077. <param name="agentDefinition"/>
  1078. <param name="agentDefinitionView"/>
  1079. </types_index>
  1080. <modified/>
  1081. <scopes>
  1082. <param name="fb"/>
  1083. <param name="fo"/>
  1084. <param name="p"/>
  1085. <param name="m"/>
  1086. </scopes>
  1087. </search>
  1088. </param>
  1089. </subject>
  1090. <subject match="agentTask.es">
  1091. <param name="objects">
  1092. <object isContainer="true" isSelectable="false">package</object>
  1093. <object isContainer="true" isSelectable="false">folder</object>
  1094. <object isContainer="false" isSelectable="true">agentDefinition</object>
  1095. <object isContainer="false" isSelectable="true">agentDefinitionView</object>
  1096. <object isContainer="true" isSelectable="false">content</object>
  1097. </param>
  1098. <param name="defaultRootId">contentId</param>
  1099. <param name="presentation" messageId="agenttask.es">
  1100. <options>
  1101. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1102. </options>
  1103. </param>
  1104. <param name="modes" default="navigate">
  1105. <search>
  1106. <contents>
  1107. <param name="basic"/>
  1108. <param name="index"/>
  1109. </contents>
  1110. <method/>
  1111. <types>
  1112. <param name="agentDefinition"/>
  1113. <param name="agentDefinitionView"/>
  1114. </types>
  1115. <types_index>
  1116. <param name="agentDefinition"/>
  1117. <param name="agentDefinitionView"/>
  1118. </types_index>
  1119. <modified/>
  1120. <scopes>
  1121. <param name="fb"/>
  1122. <param name="fo"/>
  1123. <param name="p"/>
  1124. <param name="m"/>
  1125. </scopes>
  1126. </search>
  1127. </param>
  1128. </subject>
  1129. <subject match="analysis">
  1130. <param name="objects">
  1131. <object isContainer="true" isSelectable="false">package</object>
  1132. <object isContainer="true" isSelectable="false">folder</object>
  1133. <object isContainer="false" isSelectable="true">analysis</object>
  1134. <object isContainer="true" isSelectable="false">content</object>
  1135. </param>
  1136. <param name="defaultRootId">contentId</param>
  1137. <param name="presentation" messageId="defaultAnalysis">
  1138. <options>
  1139. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1140. </options>
  1141. </param>
  1142. <param name="modes" default="navigate">
  1143. <search>
  1144. <contents>
  1145. <param name="basic"/>
  1146. <param name="index"/>
  1147. </contents>
  1148. <method/>
  1149. <types>
  1150. <param name="analysis"/>
  1151. </types>
  1152. <types_index>
  1153. <param name="analysis"/>
  1154. </types_index>
  1155. <modified/>
  1156. <scopes>
  1157. <param name="fb"/>
  1158. <param name="fo"/>
  1159. <param name="p"/>
  1160. <param name="m"/>
  1161. </scopes>
  1162. </search>
  1163. </param>
  1164. </subject>
  1165. <subject match="analysisPackage">
  1166. <param name="objects">
  1167. <object isContainer="true" isSelectable="false">package</object>
  1168. <object isContainer="true" isSelectable="false">folder</object>
  1169. </param>
  1170. <param name="defaultRootId">contentId</param>
  1171. <param name="presentation" messageId="select.default">
  1172. <options>
  1173. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1174. </options>
  1175. </param>
  1176. </subject>
  1177. <!-- BBB -->
  1178. <!-- CCC -->
  1179. <subject match="cmm.metricpackages">
  1180. <param name="objects">
  1181. <object isContainer="true" isSelectable="false">content</object>
  1182. <object isContainer="true" isSelectable="true" userInterfacesFilter="(.*metricStudio.*)">package</object>
  1183. <object isContainer="true" isSelectable="false">folder</object>
  1184. </param>
  1185. <param name="defaultRootId">contentId</param>
  1186. <param name="requestPredicate">[permission('traverse') and permission('execute') and (@objectClass='package' or @objectClass='content' or @objectClass='folder')]</param>
  1187. <param name="permissions">[permission('traverse') and permission('execute')]</param>
  1188. <param name="presentation" messageId="package">
  1189. <options>
  1190. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1191. <option name="onMove" objectIsContainer="false"/>
  1192. <option name="onCopy" objectIsContainer="false"/>
  1193. </options>
  1194. </param>
  1195. <param name="returns">
  1196. <return name="so.id"/>
  1197. <return name="so.searchPath"/>
  1198. <return name="so.storeID"/>
  1199. <return name="so.objectClass"/>
  1200. <return name="so.userInterfaces"/>
  1201. <return name="so.permissions"/>
  1202. </param>
  1203. </subject>
  1204. <subject match="cmd.metricpackages">
  1205. <param name="objects">
  1206. <object isContainer="true" isSelectable="false">content</object>
  1207. <object isContainer="true" isSelectable="true" userInterfacesFilter="(.*metricStudio.*)">package</object>
  1208. <object isContainer="true" isSelectable="false">folder</object>
  1209. </param>
  1210. <param name="defaultRootId">contentId</param>
  1211. <param name="requestPredicate">[permission('traverse') and permission('execute') and (@objectClass='package' or @objectClass='content' or @objectClass='folder' )]</param>
  1212. <param name="permissions">[permission('traverse') and permission('execute')]</param>
  1213. <param name="presentation" messageId="package">
  1214. <options>
  1215. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1216. <option name="onMove" objectIsContainer="false"/>
  1217. <option name="onCopy" objectIsContainer="false"/>
  1218. </options>
  1219. </param>
  1220. <param name="returns">
  1221. <return name="so.id"/>
  1222. <return name="so.searchPath"/>
  1223. <return name="so.storeID"/>
  1224. <return name="so.objectClass"/>
  1225. <return name="so.userInterfaces"/>
  1226. <return name="so.permissions"/>
  1227. </param>
  1228. <param name="modes" default="navigate">
  1229. <search>
  1230. <contents>
  1231. <param name="basic"/>
  1232. <param name="index"/>
  1233. </contents>
  1234. <method/>
  1235. <types>
  1236. <param name="metricsPackage"/>
  1237. </types>
  1238. <types_index>
  1239. <param name="metricsPackage"/>
  1240. </types_index>
  1241. <modified/>
  1242. <scopes>
  1243. <param name="fb"/>
  1244. <param name="fo"/>
  1245. <param name="p"/>
  1246. <param name="m"/>
  1247. </scopes>
  1248. </search>
  1249. </param>
  1250. </subject>
  1251. <subject match="cmd.packages">
  1252. <param name="objects">
  1253. <object isContainer="true" isSelectable="false">content</object>
  1254. <object isContainer="true" isSelectable="true">package</object>
  1255. <object isContainer="true" isSelectable="false">folder</object>
  1256. </param>
  1257. <param name="defaultRootId">contentId</param>
  1258. <param name="requestPredicate">[permission('read') and permission('traverse') and permission('execute') and ( (@objectClass='package' and @userInterfaces!='applicationStudio')or @objectClass='content' or @objectClass='folder' )]</param>
  1259. <param name="permissions">[permission('read') and permission('traverse') and permission('execute')]</param>
  1260. <param name="presentation" messageId="default">
  1261. <options>
  1262. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1263. <option name="onMove" objectIsContainer="false"/>
  1264. <option name="onCopy" objectIsContainer="false"/>
  1265. </options>
  1266. </param>
  1267. <param name="returns">
  1268. <return name="so.id"/>
  1269. <return name="so.searchPath"/>
  1270. <return name="so.storeID"/>
  1271. <return name="so.objectClass"/>
  1272. <return name="so.userInterfaces"/>
  1273. <return name="so.permissions"/>
  1274. </param>
  1275. <param name="modes" default="navigate">
  1276. <search references="search-container"/>
  1277. </param>
  1278. </subject>
  1279. <subject match="contacts">
  1280. <param name="objects">
  1281. <object isContainer="true" isSelectable="false">namespace</object>
  1282. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  1283. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">group</object>
  1284. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">role</object>
  1285. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">distributionList</object>
  1286. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">contact</object>
  1287. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">account</object>
  1288. </param>
  1289. <param name="defaultRootId">directoryId</param>
  1290. <param name="permissions"/>
  1291. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  1292. <param name="presentation" messageId="contact">
  1293. <options>
  1294. <option name="displayCheckbox" oncheckDisplay="account" state="unchecked" disabledAtContainer="directory"/>
  1295. </options>
  1296. </param>
  1297. <param name="returns">
  1298. <return name="so.id"/>
  1299. <return name="so.searchPath"/>
  1300. <return name="so.storeID"/>
  1301. <return name="so.defaultName"/>
  1302. <return name="so.email"/>
  1303. </param>
  1304. <param name="modes" default="navigate">
  1305. <search disabledAtContainer="directory">
  1306. <contents>
  1307. <param name="basic"/>
  1308. </contents>
  1309. <method/>
  1310. <types default="_groupsAndRoles">
  1311. <param name="_distributionListsAndContacts"/>
  1312. <param name="_groupsAndRoles"/>
  1313. <param name="_users"/>
  1314. <param name="_usersGroupsAndRoles"/>
  1315. </types>
  1316. <scopes>
  1317. <param name="fb"/>
  1318. <param name="fo"/>
  1319. <param name="ns"/>
  1320. </scopes>
  1321. </search>
  1322. </param>
  1323. </subject>
  1324. <subject match="contentTask.es">
  1325. <param name="objects">
  1326. <object isContainer="true" isSelectable="false">adminFolder</object>
  1327. <object isContainer="false" isSelectable="true">contentTask</object>
  1328. </param>
  1329. <param name="defaultRootId">adminId</param>
  1330. <param name="presentation" messageId="contenttask.es">
  1331. <options>
  1332. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1333. </options>
  1334. </param>
  1335. <param name="modes" default="navigate">
  1336. <search>
  1337. <contents>
  1338. <param name="basic"/>
  1339. </contents>
  1340. <method/>
  1341. <types>
  1342. <param name="contentTask"/>
  1343. </types>
  1344. <modified/>
  1345. <scopes>
  1346. <param name="fb"/>
  1347. <param name="fo"/>
  1348. </scopes>
  1349. </search>
  1350. </param>
  1351. </subject>
  1352. <subject match="copy_user_profile">
  1353. <param name="objects">
  1354. <object isContainer="true" isSelectable="false" overrideFilterToDrillContainerObjects="(.*write.*traverse.*)|(.*traverse.*write.*)">namespace</object>
  1355. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  1356. <object isContainer="false" isSelectable="true">account</object>
  1357. </param>
  1358. <param name="defaultRootId">directoryId</param>
  1359. <param name="presentation" messageId="accountAndCopyuserprofile"/>
  1360. <param name="permissions"/>
  1361. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  1362. <param name="modes" default="navigate">
  1363. <search disabledAtContainer="directory">
  1364. <contents>
  1365. <param name="basic"/>
  1366. </contents>
  1367. <method/>
  1368. <types>
  1369. <param name="account"/>
  1370. </types>
  1371. <scopes>
  1372. <param name="fb"/>
  1373. <param name="fo"/>
  1374. <param name="ns"/>
  1375. </scopes>
  1376. </search>
  1377. </param>
  1378. <param name="returns">
  1379. <return name="so.id"/>
  1380. <return name="so.searchPath"/>
  1381. <return name="so.storeID"/>
  1382. <return name="so.defaultName"/>
  1383. <return name="so.userName"/>
  1384. </param>
  1385. </subject>
  1386. <!-- DDD -->
  1387. <subject match="dataMovementTaskAliasBase">
  1388. <param name="objects">
  1389. <object isContainer="true" isSelectable="false">package</object>
  1390. <object isContainer="true" isSelectable="false">folder</object>
  1391. <object isContainer="false" isSelectable="true">dataMovementTask</object>
  1392. <object isContainer="true" isSelectable="false">content</object>
  1393. </param>
  1394. <param name="defaultRootId">contentId</param>
  1395. <param name="permissions">[permission('read') or permission('write') or permission('setPolicy')]</param>
  1396. <param name="presentation" messageId="datamovementtaskaliasBase">
  1397. <options>
  1398. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1399. </options>
  1400. </param>
  1401. <param name="modes" default="navigate">
  1402. <search>
  1403. <contents>
  1404. <param name="basic"/>
  1405. </contents>
  1406. <method />
  1407. <types>
  1408. <param name="dataMovementTask"/>
  1409. </types>
  1410. <modified />
  1411. <scopes>
  1412. <param name="fb"/>
  1413. <param name="fo"/>
  1414. <param name="p"/>
  1415. <param name="m"/>
  1416. </scopes>
  1417. </search>
  1418. </param>
  1419. </subject>
  1420. <subject match="dataSourceAccessAccount">
  1421. <param name="objects">
  1422. <object isContainer="true" isSelectable="false">namespace</object>
  1423. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  1424. <object isContainer="true" isSelectable="false">role</object>
  1425. <object isContainer="true" isSelectable="false">group</object>
  1426. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">contact</object>
  1427. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="nil">account</object>
  1428. </param>
  1429. <param name="defaultRootId">directoryId</param>
  1430. <param name="overrideRoleChildRequirement">true</param>
  1431. <param name="permissions"/>
  1432. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  1433. <param name="presentation" messageId="dataSourceAccessAccount"/>
  1434. <param name="returns">
  1435. <return name="so.id"/>
  1436. <return name="so.searchPath"/>
  1437. <return name="so.storeID"/>
  1438. <return name="so.defaultName"/>
  1439. <return name="so.email"/>
  1440. </param>
  1441. <param name="modes" default="navigate">
  1442. <search disabledAtContainer="directory">
  1443. <contents>
  1444. <param name="basic"/>
  1445. </contents>
  1446. <method/>
  1447. <types default="_groupsAndRoles">
  1448. <param name="_users"/>
  1449. </types>
  1450. <scopes>
  1451. <param name="fb"/>
  1452. <param name="fo"/>
  1453. <param name="ns"/>
  1454. </scopes>
  1455. </search>
  1456. </param>
  1457. </subject>
  1458. <subject match="dataSourceConnection">
  1459. <param name="objects">
  1460. <object isContainer="true" isSelectable="false">dataSource</object>
  1461. <object isContainer="false" isSelectable="true">dataSourceConnection</object>
  1462. </param>
  1463. <param name="defaultRootId">directoryId</param>
  1464. <param name="presentation" messageId="select.default"/>
  1465. </subject>
  1466. <subject match="dataSourceSignon">
  1467. <param name="objects" appendObject="true">
  1468. <object isContainer="true" isSelectable="false">dataSource</object>
  1469. <object isContainer="true" isSelectable="false">dataSourceConnection</object>
  1470. <object isContainer="false" isSelectable="true">dataSourceSignon</object>
  1471. </param>
  1472. <param name="defaultRootId">directoryId</param>
  1473. <param name="presentation" messageId="select.default"/>
  1474. </subject>
  1475. <subject match="distributionList">
  1476. <param name="objects">
  1477. <object isContainer="true" isSelectable="false">namespace</object>
  1478. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  1479. <object isContainer="false" isSelectable="true">distributionList</object>
  1480. </param>
  1481. <param name="defaultRootId">directoryId</param>
  1482. <param name="permissions"/>
  1483. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  1484. <param name="presentation" messageId="contact">
  1485. <options>
  1486. <option name="startDisplayAt">directory</option>
  1487. </options>
  1488. </param>
  1489. </subject>
  1490. <subject match="drillPath">
  1491. <param name="objects">
  1492. <object isContainer="true" isSelectable="false">package</object>
  1493. <object isContainer="true" isSelectable="false">folder</object>
  1494. <object isContainer="false" isSelectable="true">drillPath</object>
  1495. </param>
  1496. <param name="defaultRootId">contentId</param>
  1497. <param name="presentation" messageId="select.default"/>
  1498. </subject>
  1499. <subject match="drillPathTargets">
  1500. <param name="objects">
  1501. <object isContainer="true" isSelectable="false">package</object>
  1502. <object isContainer="true" isSelectable="false">folder</object>
  1503. <object isContainer="false" isSelectable="true">report</object>
  1504. <object isContainer="false" isSelectable="true">analysis</object>
  1505. <object isContainer="false" isSelectable="true">query</object>
  1506. <object isContainer="false" isSelectable="true">reportView</object>
  1507. <object isContainer="true" isSelectable="false">content</object>
  1508. </param>
  1509. <param name="permissions" description="default permissions when not specified for subject">[permission('read') or permission('execute') or permission('write') or permission('setPolicy') or permission('traverse')]</param>
  1510. <param name="defaultRootId">contentId</param>
  1511. <param name="presentation" messageId="drillpathTargets">
  1512. <options>
  1513. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1514. </options>
  1515. </param>
  1516. <param name="modes" default="navigate">
  1517. <search>
  1518. <contents>
  1519. <param name="basic"/>
  1520. <param name="index"/>
  1521. </contents>
  1522. <method/>
  1523. <types>
  1524. <param name="analysis"/>
  1525. <param name="query"/>
  1526. <param name="report"/>
  1527. <param name="reportView"/>
  1528. </types>
  1529. <types_index>
  1530. <param name="analysis"/>
  1531. <param name="query"/>
  1532. <param name="report"/>
  1533. <param name="reportView"/>
  1534. </types_index>
  1535. <modified/>
  1536. <scopes>
  1537. <param name="fb"/>
  1538. <param name="fo"/>
  1539. <param name="p"/>
  1540. <param name="m"/>
  1541. </scopes>
  1542. </search>
  1543. </param>
  1544. </subject>
  1545. <subject match="drillPathPP8Targets">
  1546. <param name="objects">
  1547. <object isContainer="true" isSelectable="false">package</object>
  1548. <object isContainer="true" isSelectable="false">folder</object>
  1549. <object isContainer="false" isSelectable="true">report</object>
  1550. <object isContainer="false" isSelectable="true">powerPlay8Report</object>
  1551. <object isContainer="false" isSelectable="true">powerPlay8ReportView</object>
  1552. <object isContainer="false" isSelectable="true">analysis</object>
  1553. <object isContainer="false" isSelectable="true">query</object>
  1554. <object isContainer="false" isSelectable="true">reportView</object>
  1555. <object isContainer="true" isSelectable="false">content</object>
  1556. </param>
  1557. <param name="permissions" description="default permissions when not specified for subject">[permission('read') or permission('execute') or permission('write') or permission('setPolicy') or permission('traverse')]</param>
  1558. <param name="defaultRootId">contentId</param>
  1559. <param name="presentation" messageId="drillpathPP8Targets">
  1560. <options>
  1561. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1562. </options>
  1563. </param>
  1564. <param name="modes" default="navigate">
  1565. <search>
  1566. <contents>
  1567. <param name="basic"/>
  1568. <param name="index"/>
  1569. </contents>
  1570. <method/>
  1571. <types>
  1572. <param name="analysis"/>
  1573. <param name="query"/>
  1574. <param name="powerPlay8Report"/>
  1575. <param name="powerPlay8ReportView"/>
  1576. <param name="report"/>
  1577. <param name="reportView"/>
  1578. </types>
  1579. <types_index>
  1580. <param name="analysis"/>
  1581. <param name="query"/>
  1582. <param name="powerPlay8Report"/>
  1583. <param name="powerPlay8ReportView"/>
  1584. <param name="report"/>
  1585. <param name="reportView"/>
  1586. </types_index>
  1587. <modified/>
  1588. <scopes>
  1589. <param name="fb"/>
  1590. <param name="fo"/>
  1591. <param name="p"/>
  1592. <param name="m"/>
  1593. </scopes>
  1594. </search>
  1595. </param>
  1596. </subject>
  1597. <subject match="drillPathTargets.wizard">
  1598. <param name="objects">
  1599. <object isContainer="true" isSelectable="false">package</object>
  1600. <object isContainer="true" isSelectable="false">folder</object>
  1601. <object isContainer="false" isSelectable="true">report</object>
  1602. <object isContainer="false" isSelectable="true">analysis</object>
  1603. <object isContainer="false" isSelectable="true">query</object>
  1604. <object isContainer="false" isSelectable="true">reportView</object>
  1605. <object isContainer="true" isSelectable="false">content</object>
  1606. </param>
  1607. <param name="permissions" description="default permissions when not specified for subject">[permission('read') or permission('execute') or permission('write') or permission('setPolicy') or permission('traverse')]</param>
  1608. <param name="defaultRootId">contentId</param>
  1609. <param name="presentation" messageId="drillpathTargetsWizard">
  1610. <options>
  1611. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1612. </options>
  1613. </param>
  1614. <param name="modes" default="navigate">
  1615. <search>
  1616. <contents>
  1617. <param name="basic"/>
  1618. <param name="index"/>
  1619. </contents>
  1620. <method/>
  1621. <types>
  1622. <param name="analysis"/>
  1623. <param name="query"/>
  1624. <param name="report"/>
  1625. <param name="reportView"/>
  1626. </types>
  1627. <types_index>
  1628. <param name="analysis"/>
  1629. <param name="query"/>
  1630. <param name="report"/>
  1631. <param name="reportView"/>
  1632. </types_index>
  1633. <modified/>
  1634. <scopes>
  1635. <param name="fb"/>
  1636. <param name="fo"/>
  1637. <param name="p"/>
  1638. <param name="m"/>
  1639. </scopes>
  1640. </search>
  1641. </param>
  1642. </subject>
  1643. <subject match="drillPathPP8Targets.wizard">
  1644. <param name="objects">
  1645. <object isContainer="true" isSelectable="false">package</object>
  1646. <object isContainer="true" isSelectable="false">folder</object>
  1647. <object isContainer="false" isSelectable="true">report</object>
  1648. <object isContainer="false" isSelectable="true">powerPlay8Report</object>
  1649. <object isContainer="false" isSelectable="true">powerPlay8ReportView</object>
  1650. <object isContainer="false" isSelectable="true">analysis</object>
  1651. <object isContainer="false" isSelectable="true">query</object>
  1652. <object isContainer="false" isSelectable="true">reportView</object>
  1653. <object isContainer="true" isSelectable="false">content</object>
  1654. </param>
  1655. <param name="permissions" description="default permissions when not specified for subject">[permission('read') or permission('execute') or permission('write') or permission('setPolicy') or permission('traverse')]</param>
  1656. <param name="defaultRootId">contentId</param>
  1657. <param name="presentation" messageId="drillpathPP8TargetsWizard">
  1658. <options>
  1659. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1660. </options>
  1661. </param>
  1662. <param name="modes" default="navigate">
  1663. <search>
  1664. <contents>
  1665. <param name="basic"/>
  1666. <param name="index"/>
  1667. </contents>
  1668. <method/>
  1669. <types>
  1670. <param name="analysis"/>
  1671. <param name="query"/>
  1672. <param name="powerPlay8Report"/>
  1673. <param name="powerPlay8ReportView"/>
  1674. <param name="report"/>
  1675. <param name="reportView"/>
  1676. </types>
  1677. <types_index>
  1678. <param name="analysis"/>
  1679. <param name="query"/>
  1680. <param name="powerPlay8Report"/>
  1681. <param name="powerPlay8ReportView"/>
  1682. <param name="report"/>
  1683. <param name="reportView"/>
  1684. </types_index>
  1685. <modified/>
  1686. <scopes>
  1687. <param name="fb"/>
  1688. <param name="fo"/>
  1689. <param name="p"/>
  1690. <param name="m"/>
  1691. </scopes>
  1692. </search>
  1693. </param>
  1694. </subject>
  1695. <!-- EEE -->
  1696. <subject match="exportDeployment.es">
  1697. <param name="objects">
  1698. <object isContainer="true" isSelectable="false">adminFolder</object>
  1699. <object isContainer="false" isSelectable="true">exportDeployment</object>
  1700. </param>
  1701. <param name="defaultRootId">adminId</param>
  1702. <param name="presentation" messageId="exportdeployment.es"/>
  1703. <param name="modes" default="navigate">
  1704. <search>
  1705. <contents>
  1706. <param name="basic"/>
  1707. </contents>
  1708. <method/>
  1709. <types>
  1710. <param name="exportDeployment"/>
  1711. </types>
  1712. <modified/>
  1713. <scopes>
  1714. <param name="fb"/>
  1715. <param name="fo"/>
  1716. </scopes>
  1717. </search>
  1718. </param>
  1719. </subject>
  1720. <!-- FFF -->
  1721. <subject match="folder.es">
  1722. <param name="objects">
  1723. <object isContainer="true" isSelectable="true">package</object>
  1724. <object isContainer="true" isSelectable="true">folder</object>
  1725. <object isContainer="true" isSelectable="false">content</object>
  1726. </param>
  1727. <param name="defaultRootId">contentId</param>
  1728. <param name="presentation" messageId="select.default">
  1729. <options>
  1730. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1731. </options>
  1732. </param>
  1733. <param name="modes" default="navigate">
  1734. <search references="search-container"/>
  1735. </param>
  1736. <param name="actions" references="folderActions"/>
  1737. </subject>
  1738. <subject match="fragments.universalviewer.selection">
  1739. <param name="permissions">[permission('read') or permission('write') or permission('execute') or permission('traverse') or permission('setPolicy')]</param>
  1740. <param name="objects">
  1741. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*)">content</object>
  1742. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*)">package</object>
  1743. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*)">folder</object>
  1744. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">analysis</object>
  1745. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">document</object>
  1746. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">pagelet</object>
  1747. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">powerPlayCube</object>
  1748. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">powerPlayReport</object>
  1749. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">powerPlay8Report</object>
  1750. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">powerPlay8ReportView</object>
  1751. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">query</object>
  1752. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">report</object>
  1753. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">reportView</object>
  1754. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">shortcut</object>
  1755. <object isContainer="false" isSelectable="true" overrideFilterToSelectNonContainerObjects="(.*)">URL</object>
  1756. </param>
  1757. <param name="shortcut-targets">
  1758. <object>folder</object>
  1759. <object>package</object>
  1760. <object>analysis</object>
  1761. <object>document</object>
  1762. <object>pagelet</object>
  1763. <object>powerPlayCube</object>
  1764. <object>powerPlayReport</object>
  1765. <object>powerPlay8Report</object>
  1766. <object>powerPlay8ReportView</object>
  1767. <object>query</object>
  1768. <object>report</object>
  1769. <object>reportView</object>
  1770. <object>URL</object>
  1771. </param>
  1772. <param name="defaultRootId">contentId</param>
  1773. <param name="presentation" messageId="fragments.uviewer">
  1774. <options>
  1775. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1776. </options>
  1777. </param>
  1778. <param name="modes" default="navigate">
  1779. <search>
  1780. <contents>
  1781. <param name="basic"/>
  1782. </contents>
  1783. <method/>
  1784. <types>
  1785. <param name="dashboard"/>
  1786. <param name="document"/>
  1787. <param name="folder"/>
  1788. <param name="package"/>
  1789. <param name="metricsPackage"/>
  1790. <param name="_pages" pagesSearchRoot="content"/>
  1791. <param name="powerPlayCube"/>
  1792. <param name="_reports"/>
  1793. <param name="URL"/>
  1794. </types>
  1795. <modified/>
  1796. <scopes>
  1797. <param name="fb"/>
  1798. <param name="fo"/>
  1799. <param name="p"/>
  1800. <param name="m"/>
  1801. </scopes>
  1802. </search>
  1803. </param>
  1804. </subject>
  1805. <!-- GGG -->
  1806. <subject match="group">
  1807. <param name="objects">
  1808. <object isContainer="true" isSelectable="false">namespace</object>
  1809. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  1810. <object isContainer="false" isSelectable="true">group</object>
  1811. </param>
  1812. <param name="defaultRootId">directoryId</param>
  1813. <param name="permissions"/>
  1814. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  1815. <param name="presentation" messageId="contact">
  1816. <options>
  1817. <option name="startDisplayAt">directory</option>
  1818. </options>
  1819. </param>
  1820. </subject>
  1821. <!-- HHH -->
  1822. <!-- III -->
  1823. <subject match="importDeployment.es">
  1824. <param name="objects">
  1825. <object isContainer="true" isSelectable="false">adminFolder</object>
  1826. <object isContainer="false" isSelectable="true">importDeployment</object>
  1827. </param>
  1828. <param name="defaultRootId">adminId</param>
  1829. <param name="presentation" messageId="importdeployment.es"/>
  1830. <param name="modes" default="navigate">
  1831. <search>
  1832. <contents>
  1833. <param name="basic"/>
  1834. </contents>
  1835. <method/>
  1836. <types>
  1837. <param name="importDeployment"/>
  1838. </types>
  1839. <modified/>
  1840. <scopes>
  1841. <param name="fb"/>
  1842. <param name="fo"/>
  1843. </scopes>
  1844. </search>
  1845. </param>
  1846. </subject>
  1847. <subject match="indexUpdateTask.es">
  1848. <param name="objects">
  1849. <object isContainer="true" isSelectable="false">adminFolder</object>
  1850. <object isContainer="false" isSelectable="true">indexUpdateTask</object>
  1851. </param>
  1852. <param name="defaultRootId">adminId</param>
  1853. <param name="permissions">[permission('write') or permission('traverse')]</param>
  1854. <param name="presentation" messageId="indexupdatetask.es">
  1855. </param>
  1856. <param name="modes" default="navigate">
  1857. <search>
  1858. <contents>
  1859. <param name="basic"/>
  1860. </contents>
  1861. <method/>
  1862. <types>
  1863. <param name="indexUpdateTask"/>
  1864. </types>
  1865. <modified/>
  1866. <scopes>
  1867. <param name="fb"/>
  1868. <param name="fo"/>
  1869. </scopes>
  1870. </search>
  1871. </param>
  1872. </subject>
  1873. <subject match="interactiveReport">
  1874. <param name="objects">
  1875. <object isContainer="true" isSelectable="false">content</object>
  1876. <object isContainer="true" isSelectable="false">package</object>
  1877. <object isContainer="true" isSelectable="false">folder</object>
  1878. <object isContainer="false" isSelectable="true">interactiveReport</object>
  1879. </param>
  1880. <param name="defaultRootId">contentId</param>
  1881. <param name="presentation" messageId="select.default">
  1882. <options>
  1883. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1884. </options>
  1885. </param>
  1886. </subject>
  1887. <!-- JJJ -->
  1888. <subject match="jobDefinition">
  1889. <param name="objects">
  1890. <object isContainer="true" isSelectable="false">content</object>
  1891. <object isContainer="true" isSelectable="false">package</object>
  1892. <object isContainer="true" isSelectable="false">folder</object>
  1893. <object isContainer="false" isSelectable="true">jobDefinition</object>
  1894. </param>
  1895. <param name="defaultRootId">contentId</param>
  1896. <param name="presentation" messageId="select.default">
  1897. <options>
  1898. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  1899. </options>
  1900. </param>
  1901. </subject>
  1902. <subject match="jobDefinition.admin">
  1903. <param name="objects">
  1904. <object isContainer="true" isSelectable="false">adminFolder</object>
  1905. <object isContainer="false" isSelectable="true">jobDefinition</object>
  1906. </param>
  1907. <param name="defaultRootId">adminId</param>
  1908. <param name="presentation" messageId="select.default"/>
  1909. </subject>
  1910. <subject match="jobs.es">
  1911. <param name="objects">
  1912. <object isContainer="true" isSelectable="false">package</object>
  1913. <object isContainer="true" isSelectable="false">folder</object>
  1914. <object isContainer="false" isSelectable="true">jobDefinition</object>
  1915. <object isContainer="true" isSelectable="false">adminFolder</object>
  1916. <object isContainer="true" isSelectable="false">content</object>
  1917. </param>
  1918. <param name="defaultRootId">contentId</param>
  1919. <param name="presentation" messageId="jobs.es">
  1920. <options>
  1921. <option name="displayVirtualRootNode">
  1922. <displayNodes>
  1923. <node id="contentId"/>
  1924. <node id="myFoldersId"/>
  1925. <node id="adminId"/>
  1926. </displayNodes>
  1927. </option>
  1928. </options>
  1929. </param>
  1930. <param name="modes" default="navigate">
  1931. <search>
  1932. <contents>
  1933. <param name="basic"/>
  1934. </contents>
  1935. <method/>
  1936. <types>
  1937. <param name="jobDefinition"/>
  1938. </types>
  1939. <modified/>
  1940. <scopes>
  1941. <param name="fb"/>
  1942. <param name="fo"/>
  1943. <param name="p"/>
  1944. <param name="m"/>
  1945. <param name="adm"/>
  1946. </scopes>
  1947. </search>
  1948. </param>
  1949. </subject>
  1950. <subject match="jobStepBase">
  1951. <param name="objects">
  1952. <object isContainer="true" isSelectable="false">content</object>
  1953. <object isContainer="true" isSelectable="false">package</object>
  1954. <object isContainer="true" isSelectable="false">folder</object>
  1955. <object isContainer="true" isSelectable="false">adminFolder</object>
  1956. <object isContainer="false" isSelectable="true">contentTask</object>
  1957. <object isContainer="false" isSelectable="true">jobDefinition</object>
  1958. <object isContainer="false" isSelectable="true">exportDeployment</object>
  1959. <object isContainer="false" isSelectable="true">importDeployment</object>
  1960. <object isContainer="false" isSelectable="true">report</object>
  1961. <object isContainer="false" isSelectable="true">interactiveReport</object>
  1962. <object isContainer="false" isSelectable="true">query</object>
  1963. <object isContainer="false" isSelectable="true">analysis</object>
  1964. <object isContainer="false" isSelectable="true">reportView</object>
  1965. <object isContainer="false" isSelectable="true">metricsFileImportTask</object>
  1966. <object isContainer="false" isSelectable="true">metricsDataSourceETLTask</object>
  1967. <object isContainer="false" isSelectable="true">metricsExportTask</object>
  1968. <object isContainer="false" isSelectable="true">metricsMaintenanceTask</object>
  1969. <object isContainer="false" isSelectable="true">agentDefinition</object>
  1970. <object isContainer="false" isSelectable="true">agentDefinitionView</object>
  1971. </param>
  1972. <param name="defaultRootId">contentId</param>
  1973. <param name="presentation" messageId="jobstepBase">
  1974. <options>
  1975. <option name="displayVirtualRootNode">
  1976. <displayNodes>
  1977. <node id="contentId"/>
  1978. <node id="myFoldersId"/>
  1979. <node id="adminId"/>
  1980. </displayNodes>
  1981. </option>
  1982. </options>
  1983. </param>
  1984. <param name="filterToExcludeReportViewWithBaseObject"/>
  1985. <param name="modes" default="navigate">
  1986. <search disabledAtContainer="root">
  1987. <contents>
  1988. <param name="basic"/>
  1989. </contents>
  1990. <method/>
  1991. <types>
  1992. <param name="contentTask"/>
  1993. <param name="jobDefinition"/>
  1994. <param name="exportDeployment"/>
  1995. <param name="importDeployment"/>
  1996. <param name="report"/>
  1997. <param name="interactiveReport"/>
  1998. <param name="query"/>
  1999. <param name="analysis"/>
  2000. <param name="reportView"/>
  2001. <param name="metricsFileImportTask"/>
  2002. <param name="metricsDataSourceETLTask"/>
  2003. <param name="metricsExportTask"/>
  2004. <param name="metricsMaintenanceTask"/>
  2005. <param name="agentDefinition"/>
  2006. <param name="agentDefinitionView"/>
  2007. </types>
  2008. <modified/>
  2009. <scopes>
  2010. <param name="fb"/>
  2011. <param name="fo"/>
  2012. </scopes>
  2013. </search>
  2014. </param>
  2015. </subject>
  2016. <subject match="jobStepBase.admin">
  2017. <param name="objects">
  2018. <object isContainer="true" isSelectable="false">content</object>
  2019. <object isContainer="true" isSelectable="false">package</object>
  2020. <object isContainer="true" isSelectable="false">folder</object>
  2021. <object isContainer="true" isSelectable="false">adminFolder</object>
  2022. <object isContainer="false" isSelectable="true">contentTask</object>
  2023. <object isContainer="false" isSelectable="true">jobDefinition</object>
  2024. <object isContainer="false" isSelectable="true">exportDeployment</object>
  2025. <object isContainer="false" isSelectable="true">importDeployment</object>
  2026. <object isContainer="false" isSelectable="true">report</object>
  2027. <object isContainer="false" isSelectable="true">interactiveReport</object>
  2028. <object isContainer="false" isSelectable="true">query</object>
  2029. <object isContainer="false" isSelectable="true">analysis</object>
  2030. <object isContainer="false" isSelectable="true">reportView</object>
  2031. <object isContainer="false" isSelectable="true">metricsFileImportTask</object>
  2032. <object isContainer="false" isSelectable="true">metricsDataSourceETLTask</object>
  2033. <object isContainer="false" isSelectable="true">metricsExportTask</object>
  2034. <object isContainer="false" isSelectable="true">metricsMaintenanceTask</object>
  2035. <object isContainer="false" isSelectable="true">agentDefinition</object>
  2036. <object isContainer="false" isSelectable="true">agentDefinitionView</object>
  2037. <object isContainer="false" isSelectable="true">queryServiceTask</object>
  2038. <object isContainer="false" isSelectable="true">indexUpdateTask</object>
  2039. </param>
  2040. <param name="defaultRootId">adminId</param>
  2041. <param name="presentation" messageId="jobstepBase">
  2042. <options>
  2043. <option name="displayVirtualRootNode">
  2044. <displayNodes>
  2045. <node id="contentId"/>
  2046. <node id="myFoldersId"/>
  2047. <node id="adminId"/>
  2048. </displayNodes>
  2049. </option>
  2050. </options>
  2051. </param>
  2052. <param name="filterToExcludeReportViewWithBaseObject"/>
  2053. <param name="modes" default="navigate">
  2054. <search disabledAtContainer="root">
  2055. <contents>
  2056. <param name="basic"/>
  2057. </contents>
  2058. <method/>
  2059. <types>
  2060. <param name="contentTask"/>
  2061. <param name="jobDefinition"/>
  2062. <param name="exportDeployment"/>
  2063. <param name="importDeployment"/>
  2064. <param name="report"/>
  2065. <param name="interactiveReport"/>
  2066. <param name="query"/>
  2067. <param name="analysis"/>
  2068. <param name="reportView"/>
  2069. <param name="metricsFileImportTask"/>
  2070. <param name="metricsDataSourceETLTask"/>
  2071. <param name="metricsExportTask"/>
  2072. <param name="metricsMaintenanceTask"/>
  2073. <param name="agentDefinition"/>
  2074. <param name="agentDefinitionView"/>
  2075. <param name="queryServiceTask"/>
  2076. <param name="indexUpdateTask"/>
  2077. </types>
  2078. <modified/>
  2079. <scopes>
  2080. <param name="fb"/>
  2081. <param name="fo"/>
  2082. </scopes>
  2083. </search>
  2084. </param>
  2085. </subject>
  2086. <!-- KKK -->
  2087. <!-- LLL -->
  2088. <subject match="launch.AnalysisStudio">
  2089. <param name="objects">
  2090. <object isContainer="true" isSelectable="false">content</object>
  2091. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2092. <object isContainer="true" isSelectable="false">folder</object>
  2093. </param>
  2094. <param name="defaultRootId">contentId</param>
  2095. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2096. <param name="permissions">[permission('traverse')]</param>
  2097. <param name="presentation" messageId="package">
  2098. <options>
  2099. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2100. <option name="displayMRU">
  2101. <param name="filter">analysisStudio</param>
  2102. </option>
  2103. <option name="executeBackURLOnCancel"/>
  2104. <option name="isLaunchable">
  2105. <userInterfaces>[@userInterfaces='analysisStudio' or not(@userInterfaces)]</userInterfaces>
  2106. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2107. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2108. <capability>canUseAnalysisStudio</capability>
  2109. </option>
  2110. </options>
  2111. </param>
  2112. <param name="modes" default="navigate">
  2113. <search references="search-packages"/>
  2114. </param>
  2115. </subject>
  2116. <subject match="launch.AdaptiveAnalytics">
  2117. <param name="objects">
  2118. <object isContainer="true" isSelectable="false">content</object>
  2119. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2120. <object isContainer="true" isSelectable="false">folder</object>
  2121. </param>
  2122. <param name="defaultRootId">contentId</param>
  2123. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2124. <param name="permissions">[permission('traverse')]</param>
  2125. <param name="presentation" messageId="package">
  2126. <options>
  2127. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2128. <option name="displayMRU">
  2129. <param name="filter">adaptiveAnalytics</param>
  2130. </option>
  2131. <option name="executeBackURLOnCancel"/>
  2132. <option name="isLaunchable">
  2133. <userInterfaces>[@userInterfaces='adaptiveAnalytics']</userInterfaces>
  2134. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2135. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2136. <capability>canUseAdaptiveAnalyticsAdministration</capability>
  2137. </option>
  2138. </options>
  2139. </param>
  2140. <param name="modes" default="navigate">
  2141. <search references="search-packages"/>
  2142. </param>
  2143. </subject>
  2144. <subject match="launch.AnalysisStudioPPReport">
  2145. <param name="objects">
  2146. <object isContainer="true" isSelectable="false">content</object>
  2147. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2148. <object isContainer="true" isSelectable="false">folder</object>
  2149. </param>
  2150. <param name="defaultRootId">contentId</param>
  2151. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2152. <param name="permissions">[permission('traverse')]</param>
  2153. <param name="presentation" messageId="package">
  2154. <options>
  2155. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2156. <option name="displayMRU">
  2157. <param name="filter">analysisStudio</param>
  2158. </option>
  2159. <option name="executeBackURLOnCancel"/>
  2160. <option name="isLaunchable">
  2161. <userInterfaces>[@userInterfaces='analysisStudio' or not(@userInterfaces)]</userInterfaces>
  2162. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2163. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2164. <capability>canUseAnalysisStudio</capability>
  2165. </option>
  2166. </options>
  2167. </param>
  2168. <param name="modes" default="navigate">
  2169. <search references="search-container"/>
  2170. </param>
  2171. </subject>
  2172. <subject match="launch.Contributor">
  2173. <param name="objects">
  2174. <object isContainer="true" isSelectable="false">content</object>
  2175. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2176. <object isContainer="true" isSelectable="false">folder</object>
  2177. </param>
  2178. <param name="defaultRootId">contentId</param>
  2179. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2180. <param name="permissions">[permission('traverse')]</param>
  2181. <param name="presentation" messageId="package">
  2182. <options>
  2183. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2184. <option name="displayMRU">
  2185. <param name="filter">planningContributor</param>
  2186. </option>
  2187. <option name="isLaunchable">
  2188. <userInterfaces>[@userInterfaces='planningContributor' or not(@userInterfaces)]</userInterfaces>
  2189. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2190. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2191. <capability>canUsePlanningContributor</capability>
  2192. </option>
  2193. </options>
  2194. </param>
  2195. <param name="modes" default="navigate">
  2196. <search>
  2197. <contents>
  2198. <param name="basic"/>
  2199. </contents>
  2200. <method/>
  2201. <types>
  2202. <param name="package"/>
  2203. </types>
  2204. <types_index>
  2205. <param name="package"/>
  2206. </types_index>
  2207. <modified/>
  2208. <scopes>
  2209. <param name="fb"/>
  2210. <param name="fo"/>
  2211. <param name="p"/>
  2212. <param name="m"/>
  2213. </scopes>
  2214. </search>
  2215. </param>
  2216. </subject>
  2217. <subject match="launch.EVStudio">
  2218. <param name="objects">
  2219. <object isContainer="true" isSelectable="false">content</object>
  2220. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2221. <object isContainer="true" isSelectable="false">folder</object>
  2222. </param>
  2223. <param name="defaultRootId">contentId</param>
  2224. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2225. <param name="permissions">[permission('traverse')]</param>
  2226. <param name="presentation" messageId="package">
  2227. <options>
  2228. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2229. <option name="displayMRU">
  2230. <param name="filter">EVStudio</param>
  2231. </option>
  2232. <option name="executeBackURLOnCancel"/>
  2233. <option name="isLaunchable">
  2234. <userInterfaces>[@userInterfaces='EVStudio' or not(@userInterfaces)]</userInterfaces>
  2235. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2236. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2237. <capability>canUseEV</capability>
  2238. </option>
  2239. </options>
  2240. </param>
  2241. <param name="modes" default="navigate">
  2242. <search>
  2243. <contents>
  2244. <param name="basic"/>
  2245. </contents>
  2246. <method/>
  2247. <types>
  2248. <param name="package"/>
  2249. </types>
  2250. <types_index>
  2251. <param name="package"/>
  2252. </types_index>
  2253. <modified/>
  2254. <scopes>
  2255. <param name="fb"/>
  2256. <param name="fo"/>
  2257. <param name="p"/>
  2258. <param name="m"/>
  2259. </scopes>
  2260. </search>
  2261. </param>
  2262. </subject>
  2263. <subject match="launch.EventStudio">
  2264. <param name="objects">
  2265. <object isContainer="true" isSelectable="false">content</object>
  2266. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2267. <object isContainer="true" isSelectable="false">folder</object>
  2268. </param>
  2269. <param name="defaultRootId">contentId</param>
  2270. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2271. <param name="permissions">[permission('traverse')]</param>
  2272. <param name="presentation" messageId="package">
  2273. <options>
  2274. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2275. <option name="displayMRU">
  2276. <param name="filter">eventStudio</param>
  2277. </option>
  2278. <option name="executeBackURLOnCancel"/>
  2279. <option name="isLaunchable">
  2280. <userInterfaces>[@userInterfaces='eventStudio' or not(@userInterfaces)]</userInterfaces>
  2281. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2282. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2283. <capability>canUseEventStudio</capability>
  2284. </option>
  2285. </options>
  2286. </param>
  2287. <param name="modes" default="navigate">
  2288. <search references="search-packages"/>
  2289. </param>
  2290. </subject>
  2291. <subject match="launch.PowerplayStudio">
  2292. <param name="objects">
  2293. <object isContainer="true" isSelectable="false">content</object>
  2294. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2295. <object isContainer="true" isSelectable="false">folder</object>
  2296. </param>
  2297. <param name="defaultRootId">contentId</param>
  2298. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2299. <param name="permissions">[permission('traverse')]</param>
  2300. <param name="presentation" messageId="package">
  2301. <options>
  2302. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2303. <option name="displayMRU">
  2304. <param name="filter">powerPlayStudio</param>
  2305. </option>
  2306. <option name="executeBackURLOnCancel"/>
  2307. <option name="isLaunchable">
  2308. <userInterfaces>[@userInterfaces='powerPlayStudio' or not(@userInterfaces)]</userInterfaces>
  2309. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2310. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2311. <capability>canUsePowerPlay</capability>
  2312. </option>
  2313. </options>
  2314. </param>
  2315. <param name="modes" default="navigate">
  2316. <search>
  2317. <contents>
  2318. <param name="basic"/>
  2319. </contents>
  2320. <method/>
  2321. <types>
  2322. <param name="package"/>
  2323. </types>
  2324. <types_index>
  2325. <param name="package"/>
  2326. </types_index>
  2327. <modified/>
  2328. <scopes>
  2329. <param name="fb"/>
  2330. <param name="fo"/>
  2331. <param name="p"/>
  2332. <param name="m"/>
  2333. </scopes>
  2334. </search>
  2335. </param>
  2336. </subject>
  2337. <subject match="launch.MetricStudio">
  2338. <param name="objects">
  2339. <object isContainer="true" isSelectable="false">content</object>
  2340. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2341. <object isContainer="true" isSelectable="false">folder</object>
  2342. </param>
  2343. <param name="defaultRootId">contentId</param>
  2344. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2345. <param name="permissions">[permission('traverse')]</param>
  2346. <param name="presentation" messageId="package">
  2347. <options>
  2348. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2349. <option name="displayMRU">
  2350. <param name="filter">metricStudio</param>
  2351. </option>
  2352. <option name="executeBackURLOnCancel"/>
  2353. <option name="isLaunchable">
  2354. <userInterfaces>[@userInterfaces='metricStudio' or not(@userInterfaces)]</userInterfaces>
  2355. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2356. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2357. <capability>canUseMetricStudio</capability>
  2358. </option>
  2359. </options>
  2360. </param>
  2361. <param name="modes" default="navigate">
  2362. <search>
  2363. <contents>
  2364. <param name="basic"/>
  2365. </contents>
  2366. <method/>
  2367. <types>
  2368. <param name="metricsPackage"/>
  2369. </types>
  2370. <types_index>
  2371. <param name="metricsPackage"/>
  2372. </types_index>
  2373. <modified/>
  2374. <scopes>
  2375. <param name="fb"/>
  2376. <param name="fo"/>
  2377. <param name="p"/>
  2378. <param name="m"/>
  2379. </scopes>
  2380. </search>
  2381. </param>
  2382. </subject>
  2383. <subject match="launch.QueryStudio">
  2384. <param name="objects">
  2385. <object isContainer="true" isSelectable="false">content</object>
  2386. <object isContainer="true" isSelectable="false" isLaunchable="true">package</object>
  2387. <object isContainer="true" isSelectable="false">folder</object>
  2388. </param>
  2389. <param name="defaultRootId">contentId</param>
  2390. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2391. <param name="permissions">[permission('traverse')]</param>
  2392. <param name="presentation" messageId="package">
  2393. <options>
  2394. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2395. <option name="displayMRU">
  2396. <param name="filter">queryStudio</param>
  2397. </option>
  2398. <option name="executeBackURLOnCancel"/>
  2399. <option name="isLaunchable">
  2400. <userInterfaces>[@userInterfaces='queryStudio' or not(@userInterfaces)]</userInterfaces>
  2401. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2402. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2403. <capability>canUseQueryStudio</capability>
  2404. </option>
  2405. </options>
  2406. </param>
  2407. <param name="modes" default="navigate">
  2408. <search references="search-packages"/>
  2409. </param>
  2410. </subject>
  2411. <subject match="launch.ReportStudio">
  2412. <param name="objects">
  2413. <object isContainer="true" isSelectable="false">content</object>
  2414. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2415. <object isContainer="true" isSelectable="false">folder</object>
  2416. </param>
  2417. <param name="defaultRootId">contentId</param>
  2418. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2419. <param name="permissions">[permission('traverse')]</param>
  2420. <param name="presentation" messageId="package">
  2421. <options>
  2422. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2423. <option name="displayMRU">
  2424. <param name="filter">reportStudio</param>
  2425. </option>
  2426. <option name="executeBackURLOnCancel"/>
  2427. <option name="isLaunchable">
  2428. <userInterfaces>[@userInterfaces='reportStudio' or not(@userInterfaces)]</userInterfaces>
  2429. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2430. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2431. <capability>canUseReportStudio</capability>
  2432. </option>
  2433. </options>
  2434. </param>
  2435. <param name="modes" default="navigate">
  2436. <search references="search-packages"/>
  2437. </param>
  2438. </subject>
  2439. <subject match="launch.ReportStudioPPReport">
  2440. <param name="objects">
  2441. <object isContainer="true" isSelectable="false">content</object>
  2442. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2443. <object isContainer="true" isSelectable="false">folder</object>
  2444. </param>
  2445. <param name="defaultRootId">contentId</param>
  2446. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2447. <param name="permissions">[permission('traverse')]</param>
  2448. <param name="presentation" messageId="package">
  2449. <options>
  2450. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2451. <option name="displayMRU">
  2452. <param name="filter">reportStudio</param>
  2453. </option>
  2454. <option name="executeBackURLOnCancel"/>
  2455. <option name="isLaunchable">
  2456. <userInterfaces>[@userInterfaces='reportStudio' or not(@userInterfaces)]</userInterfaces>
  2457. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2458. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2459. <capability>canUseReportStudio</capability>
  2460. </option>
  2461. </options>
  2462. </param>
  2463. <param name="modes" default="navigate">
  2464. <search references="search-packages"/>
  2465. </param>
  2466. </subject>
  2467. <!-- MMM -->
  2468. <subject match="metricsDataSourceETLTask">
  2469. <param name="objects">
  2470. <object isContainer="true" isSelectable="false">package</object>
  2471. <object isContainer="true" isSelectable="false">folder</object>
  2472. <object isContainer="false" isSelectable="true">metricsDataSourceETLTask</object>
  2473. </param>
  2474. <param name="defaultRootId">contentId</param>
  2475. <param name="presentation" messageId="select.default">
  2476. <options>
  2477. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2478. </options>
  2479. </param>
  2480. </subject>
  2481. <subject match="metricsExportTask">
  2482. <param name="objects">
  2483. <object isContainer="true" isSelectable="false">package</object>
  2484. <object isContainer="true" isSelectable="false">folder</object>
  2485. <object isContainer="false" isSelectable="true">metricsExportTask</object>
  2486. </param>
  2487. <param name="defaultRootId">contentId</param>
  2488. <param name="presentation" messageId="select.default">
  2489. <options>
  2490. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2491. </options>
  2492. </param>
  2493. </subject>
  2494. <subject match="metricsFileImportTask">
  2495. <param name="objects">
  2496. <object isContainer="true" isSelectable="false">package</object>
  2497. <object isContainer="true" isSelectable="false">folder</object>
  2498. <object isContainer="false" isSelectable="true">metricsFileImportTask</object>
  2499. </param>
  2500. <param name="defaultRootId">contentId</param>
  2501. <param name="presentation" messageId="select.default">
  2502. <options>
  2503. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2504. </options>
  2505. </param>
  2506. </subject>
  2507. <subject match="metricsMaintenanceTask">
  2508. <param name="objects">
  2509. <object isContainer="true" isSelectable="false">package</object>
  2510. <object isContainer="true" isSelectable="false">folder</object>
  2511. <object isContainer="false" isSelectable="true">metricsMaintenanceTask</object>
  2512. </param>
  2513. <param name="defaultRootId">contentId</param>
  2514. <param name="presentation" messageId="select.default">
  2515. <options>
  2516. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2517. </options>
  2518. </param>
  2519. </subject>
  2520. <subject match="metricspackage">
  2521. <param name="objects">
  2522. <object isContainer="true" isSelectable="false">content</object>
  2523. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2524. <object isContainer="true" isSelectable="false">folder</object>
  2525. </param>
  2526. <param name="defaultRootId">contentId</param>
  2527. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2528. <param name="permissions">[permission('traverse')]</param>
  2529. <param name="presentation" messageId="package">
  2530. <options>
  2531. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2532. <option name="executeBackURLOnCancel"/>
  2533. <option name="isLaunchable">
  2534. <userInterfaces>[@userInterfaces='metricStudio' or not(@userInterfaces)]</userInterfaces>
  2535. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2536. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2537. <capability>canUseMetricStudio</capability>
  2538. </option>
  2539. </options>
  2540. </param>
  2541. <param name="modes" default="navigate">
  2542. <search references="search-packages"/>
  2543. </param>
  2544. </subject>
  2545. <subject match="metricspackageBase">
  2546. <param name="objects">
  2547. <object isContainer="true" isSelectable="false">content</object>
  2548. <object isContainer="true" isSelectable="true" userInterfacesFilter="(.*metricStudio.*)" overrideFilterToSelectContainerObjects="(.*traverse.*)">package</object>
  2549. <object isContainer="true" isSelectable="false">folder</object>
  2550. </param>
  2551. <param name="defaultRootId">contentId</param>
  2552. <param name="requestPredicate">[@objectClass='folder' or @objectClass='package' or @objectClass='content']</param>
  2553. <param name="permissions" description="permissions to have to select package">[permission('traverse')]</param>
  2554. <param name="presentation" messageId="metricsBase">
  2555. <options>
  2556. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2557. </options>
  2558. </param>
  2559. <param name="modes" default="navigate">
  2560. <search references="search-metricspackages"/>
  2561. </param>
  2562. </subject>
  2563. <subject match="metricTask.es">
  2564. <param name="objects">
  2565. <object isContainer="true" isSelectable="false">package</object>
  2566. <object isContainer="true" isSelectable="false">folder</object>
  2567. <object isContainer="true" isSelectable="false">content</object>
  2568. <object isContainer="false" isSelectable="true">metricsExportTask</object>
  2569. <object isContainer="false" isSelectable="true">metricsDataSourceETLTask</object>
  2570. <object isContainer="false" isSelectable="true">metricsFileImportTask</object>
  2571. <object isContainer="false" isSelectable="true">metricsMaintenanceTask</object>
  2572. </param>
  2573. <param name="defaultRootId">contentId</param>
  2574. <param name="permissions">[permission('write') or permission('traverse')]</param>
  2575. <param name="presentation" messageId="metricsmaintenancetask.es">
  2576. <options>
  2577. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2578. </options>
  2579. </param>
  2580. <param name="modes" default="navigate">
  2581. <search>
  2582. <contents>
  2583. <param name="basic"/>
  2584. </contents>
  2585. <method/>
  2586. <types>
  2587. <param name="metricsExportTask"/>
  2588. <param name="metricsDataSourceETLTask"/>
  2589. <param name="metricsFileImportTask"/>
  2590. <param name="metricsMaintenanceTask"/>
  2591. </types>
  2592. <modified/>
  2593. <scopes>
  2594. <param name="fb"/>
  2595. <param name="fo"/>
  2596. <param name="p"/>
  2597. <param name="m"/>
  2598. </scopes>
  2599. </search>
  2600. </param>
  2601. </subject>
  2602. <subject match="migrationTask.es">
  2603. <param name="objects">
  2604. <object isContainer="true" isSelectable="false">adminFolder</object>
  2605. <object isContainer="false" isSelectable="true">migrationTask</object>
  2606. </param>
  2607. <param name="defaultRootId">adminId</param>
  2608. <param name="permissions">[permission('write') or permission('traverse')]</param>
  2609. <param name="presentation" messageId="migrationtask.es">
  2610. </param>
  2611. <param name="modes" default="navigate">
  2612. <search>
  2613. <contents>
  2614. <param name="basic"/>
  2615. </contents>
  2616. <method/>
  2617. <types>
  2618. <param name="migrationTask"/>
  2619. </types>
  2620. <modified/>
  2621. <scopes>
  2622. <param name="fb"/>
  2623. <param name="fo"/>
  2624. </scopes>
  2625. </search>
  2626. </param>
  2627. </subject>
  2628. <subject match="rolapDataSource">
  2629. <param name="objects">
  2630. <object isContainer="false" isSelectable="true">rolapVirtualDataSource</object>
  2631. <object isContainer="false" isSelectable="true">rolapDataSource</object>
  2632. </param>
  2633. <param name="defaultRootId">cognosNamespaceId</param>
  2634. <param name="presentation" messageId="select.default"/>
  2635. <param name="permissions"/>
  2636. </subject>
  2637. <!-- NNN -->
  2638. <subject match="namespaceFolder">
  2639. <param name="objects">
  2640. <object isContainer="true" isSelectable="false">namespace</object>
  2641. <object isContainer="true" isSelectable="true">namespaceFolder</object>
  2642. </param>
  2643. <param name="defaultRootId">directoryId</param>
  2644. <param name="presentation" messageId="select.default"/>
  2645. <param name="permissions"/>
  2646. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  2647. </subject>
  2648. <subject match="newmetricstaskspackage">
  2649. <param name="objects">
  2650. <object isContainer="true" isSelectable="false">content</object>
  2651. <object isContainer="true" isSelectable="true" isLaunchable="true">package</object>
  2652. <object isContainer="true" isSelectable="false">folder</object>
  2653. </param>
  2654. <param name="defaultRootId">contentId</param>
  2655. <param name="requestPredicate">[@objectClass="folder" or @objectClass="package"]</param>
  2656. <param name="permissions">[permission('traverse')]</param>
  2657. <param name="returns">
  2658. <return name="so.id" alias="metadataModelPackageId"/>
  2659. <return name="so.searchPath" alias="metadataModelPackagePath"/>
  2660. <return name="so.storeID" alias="m_p_metadataModelPackage"/>
  2661. </param>
  2662. <param name="presentation" messageId="package">
  2663. <options>
  2664. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2665. <option name="executeBackURLOnCancel"/>
  2666. <option name="isLaunchable">
  2667. <userInterfaces>[@userInterfaces='metricStudio' or not(@userInterfaces)]</userInterfaces>
  2668. <modelViewPermissions>[permission('read') or permission('execute')]</modelViewPermissions>
  2669. <packagePermissions>[permission('read') or permission('execute')]</packagePermissions>
  2670. <capability>canUseMetricStudio</capability>
  2671. </option>
  2672. </options>
  2673. </param>
  2674. <param name="modes" default="navigate">
  2675. <search references="search-packages"/>
  2676. </param>
  2677. </subject>
  2678. <subject match="newsitems.es">
  2679. <param name="objects">
  2680. <object isContainer="true" isSelectable="false">content</object>
  2681. <object isContainer="true" isSelectable="false">package</object>
  2682. <object isContainer="true" isSelectable="false">folder</object>
  2683. <object isContainer="true" isSelectable="false">portletFolder</object>
  2684. <object isContainer="false" isSelectable="true">report</object>
  2685. <object isContainer="false" isSelectable="true">query</object>
  2686. <object isContainer="false" isSelectable="true">reportView</object>
  2687. <object isContainer="false" isSelectable="true">analysis</object>
  2688. <object isContainer="false" isSelectable="true">pagelet</object>
  2689. <object isContainer="false" isSelectable="true">agentDefinition</object>
  2690. <object isContainer="false" isSelectable="true">agentDefinitionView</object>
  2691. <object isContainer="false" isSelectable="true">URL</object>
  2692. </param>
  2693. <param name="defaultRootId">contentId</param>
  2694. <param name="presentation" messageId="newsitems.es">
  2695. <options>
  2696. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2697. </options>
  2698. </param>
  2699. <param name="modes" default="navigate">
  2700. <search>
  2701. <contents>
  2702. <param name="basic"/>
  2703. <param name="index"/>
  2704. </contents>
  2705. <method/>
  2706. <types>
  2707. <param name="_agents"/>
  2708. <param name="_pages" pagesSearchRoot="content"/>
  2709. <param name="_reports"/>
  2710. <param name="URL"/>
  2711. </types>
  2712. <types_index>
  2713. <param name="_agents"/>
  2714. <param name="_pages"/>
  2715. <param name="_reports"/>
  2716. <param name="URL"/>
  2717. </types_index>
  2718. <modified/>
  2719. <scopes>
  2720. <param name="fb"/>
  2721. <param name="fo"/>
  2722. <param name="p"/>
  2723. <param name="m"/>
  2724. </scopes>
  2725. </search>
  2726. </param>
  2727. </subject>
  2728. <!-- OOO -->
  2729. <!-- PPP -->
  2730. <subject match="package">
  2731. <param name="objects">
  2732. <object isContainer="true" isSelectable="false">content</object>
  2733. <object isContainer="true" isSelectable="true">package</object>
  2734. <object isContainer="true" isSelectable="false">folder</object>
  2735. </param>
  2736. <param name="defaultRootId">contentId</param>
  2737. <param name="permissions" description="No permissions to be used for this subject"/>
  2738. <param name="presentation" messageId="package">
  2739. <options>
  2740. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2741. </options>
  2742. </param>
  2743. </subject>
  2744. <subject match="package.itk">
  2745. <param name="objects">
  2746. <object isContainer="true" isSelectable="false">content</object>
  2747. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*traverse.*)">package</object>
  2748. <object isContainer="true" isSelectable="false">folder</object>
  2749. </param>
  2750. <param name="defaultRootId">contentId</param>
  2751. <param name="permissions" description="No permissions to be used for this subject"/>
  2752. <param name="presentation" messageId="package">
  2753. <options>
  2754. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2755. </options>
  2756. </param>
  2757. </subject>
  2758. <subject match="packageBase">
  2759. <param name="objects">
  2760. <object isContainer="true" isSelectable="false">content</object>
  2761. <object isContainer="true" isSelectable="true" overrideFilterToSelectContainerObjects="(.*traverse.*)">package</object>
  2762. <object isContainer="true" isSelectable="false">folder</object>
  2763. </param>
  2764. <param name="defaultRootId">contentId</param>
  2765. <param name="permissions" description="permissions to have to select package">[permission('traverse')]</param>
  2766. <param name="presentation" messageId="authoredBase">
  2767. <options>
  2768. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2769. </options>
  2770. </param>
  2771. <param name="modes" default="navigate">
  2772. <search references="search-packages"/>
  2773. </param>
  2774. </subject>
  2775. <subject match="package.deploymentTarget">
  2776. <param name="objects">
  2777. <object isContainer="true" isSelectable="true">content</object>
  2778. <object isContainer="true" isSelectable="true">package</object>
  2779. <object isContainer="true" isSelectable="true">folder</object>
  2780. </param>
  2781. <param name="defaultRootId">contentId</param>
  2782. <param name="presentation" messageId="default">
  2783. <options>
  2784. <option name="displayVirtualRootNode">
  2785. <displayNodes>
  2786. <node id="contentId"/>
  2787. </displayNodes>
  2788. </option>
  2789. <option name="onMove" objectIsContainer="false"/>
  2790. <option name="onCopy" objectIsContainer="false"/>
  2791. </options>
  2792. </param>
  2793. <param name="actions" references="folderActions"/>
  2794. <param name="modes" default="navigate">
  2795. <search references="search-deployment-container"/>
  2796. </param>
  2797. </subject>
  2798. <subject match="package.pps">
  2799. <param name="objects">
  2800. <object isContainer="true" isSelectable="false">content</object>
  2801. <object isContainer="true" isSelectable="true" userInterfacesFilter="(.*powerPlayStudio.*)" overrideFilterToSelectContainerObjects="(.*traverse.*)">package</object>
  2802. <object isContainer="true" isSelectable="false">folder</object>
  2803. </param>
  2804. <param name="requestPredicate">[@objectClass="folder" or (@objectClass="package" and (@userInterfaces='powerPlayStudio' or not(@userInterfaces)))]</param>
  2805. <param name="consumer-root">/content</param>
  2806. <param name="defaultRootId">contentId</param>
  2807. <param name="permissions">[permission('traverse')]</param>
  2808. <param name="presentation" messageId="package">
  2809. <options>
  2810. <option name="displayVirtualRootNode">
  2811. <displayNodes>
  2812. <node id="publicFoldersId"/>
  2813. <node id="myFoldersId"/>
  2814. </displayNodes>
  2815. </option>
  2816. </options>
  2817. </param>
  2818. <param name="returns">
  2819. <return name="so.id"/>
  2820. <return name="so.searchPath"/>
  2821. <return name="so.storeID"/>
  2822. <return name="so.defaultName"/>
  2823. </param>
  2824. <param name="modes" default="navigate">
  2825. <search references="search-packages"/>
  2826. </param>
  2827. </subject>
  2828. <subject match="package.tfr">
  2829. <param name="objects">
  2830. <object isContainer="true" isSelectable="false">content</object>
  2831. <object isContainer="true" isSelectable="true">package</object>
  2832. <object isContainer="true" isSelectable="false">folder</object>
  2833. </param>
  2834. <param name="defaultRootId">contentId</param>
  2835. <param name="permissions" description="No permissions to be used for this subject"/>
  2836. <param name="presentation" messageId="package">
  2837. <options>
  2838. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2839. </options>
  2840. </param>
  2841. <param name="returns">
  2842. <return name="so.id"/>
  2843. <return name="so.searchPath"/>
  2844. <return name="so.storeID"/>
  2845. <return name="so.defaultName"/>
  2846. </param>
  2847. </subject>
  2848. <subject match="pagelet">
  2849. <param name="objects">
  2850. <object isContainer="true" isSelectable="false">content</object>
  2851. <object isContainer="true" isSelectable="false">package</object>
  2852. <object isContainer="true" isSelectable="false">folder</object>
  2853. <object isContainer="false" isSelectable="true">pagelet</object>
  2854. </param>
  2855. <param name="defaultRootId">contentId</param>
  2856. <param name="presentation" messageId="select.default">
  2857. <options>
  2858. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2859. </options>
  2860. </param>
  2861. </subject>
  2862. <subject match="planningMacroTask.es">
  2863. <param name="objects">
  2864. <object isContainer="true" isSelectable="false">adminFolder</object>
  2865. <object isContainer="false" isSelectable="true">planningMacroTask</object>
  2866. </param>
  2867. <param name="defaultRootId">adminId</param>
  2868. <param name="permissions">[permission('write') or permission('traverse')]</param>
  2869. <param name="presentation" messageId="planningMacroTask.es">
  2870. </param>
  2871. <param name="modes" default="navigate">
  2872. <search>
  2873. <contents>
  2874. <param name="basic"/>
  2875. </contents>
  2876. <method/>
  2877. <types>
  2878. <param name="planningMacroTask"/>
  2879. </types>
  2880. <modified/>
  2881. <scopes>
  2882. <param name="fb"/>
  2883. <param name="fo"/>
  2884. </scopes>
  2885. </search>
  2886. </param>
  2887. </subject>
  2888. <subject match="planningTask.es">
  2889. <param name="objects">
  2890. <object isContainer="true" isSelectable="false">package</object>
  2891. <object isContainer="true" isSelectable="false">folder</object>
  2892. <object isContainer="false" isSelectable="true">planningTask</object>
  2893. <object isContainer="true" isSelectable="false">content</object>
  2894. </param>
  2895. <param name="defaultRootId">contentId</param>
  2896. <param name="permissions">[permission('write') or permission('traverse')]</param>
  2897. <param name="presentation" messageId="planningtask.es">
  2898. <options>
  2899. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2900. </options>
  2901. </param>
  2902. <param name="modes" default="navigate">
  2903. <search>
  2904. <contents>
  2905. <param name="basic"/>
  2906. </contents>
  2907. <method/>
  2908. <types>
  2909. <param name="planningTask"/>
  2910. </types>
  2911. <modified/>
  2912. <scopes>
  2913. <param name="fb"/>
  2914. <param name="fo"/>
  2915. <param name="p"/>
  2916. <param name="m"/>
  2917. </scopes>
  2918. </search>
  2919. </param>
  2920. </subject>
  2921. <subject match="portlet">
  2922. <param name="objects">
  2923. <object isContainer="true" isSelectable="false">content</object>
  2924. <object isContainer="true" isSelectable="false">package</object>
  2925. <object isContainer="true" isSelectable="false">folder</object>
  2926. <object isContainer="true" isSelectable="false">portalPackage</object>
  2927. <object isContainer="true" isSelectable="false">portletProducer</object>
  2928. <object isContainer="true" isSelectable="false">portletFolder</object>
  2929. <object isContainer="false" isSelectable="true">portlet</object>
  2930. </param>
  2931. <param name="defaultRootId">adminId</param>
  2932. <param name="presentation" messageId="select.default">
  2933. <options>
  2934. <option name="startDisplayAt">portalPackage</option>
  2935. </options>
  2936. </param>
  2937. <param name="permissions"/>
  2938. </subject>
  2939. <subject match="powerPlayCube">
  2940. <param name="objects">
  2941. <object isContainer="true" isSelectable="false">content</object>
  2942. <object isContainer="true" isSelectable="false">package</object>
  2943. <object isContainer="true" isSelectable="false">folder</object>
  2944. <object isContainer="false" isSelectable="true">powerPlayCube</object>
  2945. </param>
  2946. <param name="defaultRootId">contentId</param>
  2947. <param name="presentation" messageId="select.default">
  2948. <options>
  2949. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2950. </options>
  2951. </param>
  2952. </subject>
  2953. <subject match="powerPlayReport">
  2954. <param name="objects">
  2955. <object isContainer="true" isSelectable="false">content</object>
  2956. <object isContainer="true" isSelectable="false">package</object>
  2957. <object isContainer="true" isSelectable="false">folder</object>
  2958. <object isContainer="false" isSelectable="true">shortcut</object>
  2959. </param>
  2960. <param name="defaultRootId">contentId</param>
  2961. <param name="presentation" messageId="select.default">
  2962. <options>
  2963. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2964. </options>
  2965. </param>
  2966. </subject>
  2967. <subject match="powerPlay8Report">
  2968. <param name="objects">
  2969. <object isContainer="true" isSelectable="false">content</object>
  2970. <object isContainer="true" isSelectable="false">package</object>
  2971. <object isContainer="true" isSelectable="false">folder</object>
  2972. <object isContainer="false" isSelectable="true">powerPlay8Report</object>
  2973. </param>
  2974. <param name="defaultRootId">contentId</param>
  2975. <param name="presentation" messageId="select.pp8r">
  2976. <options>
  2977. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2978. </options>
  2979. </param>
  2980. </subject>
  2981. <subject match="powerPlay8ReportView">
  2982. <param name="objects">
  2983. <object isContainer="true" isSelectable="false">content</object>
  2984. <object isContainer="true" isSelectable="false">package</object>
  2985. <object isContainer="true" isSelectable="false">folder</object>
  2986. <object isContainer="false" isSelectable="true">powerPlay8ReportView</object>
  2987. </param>
  2988. <param name="defaultRootId">contentId</param>
  2989. <param name="presentation" messageId="select.default">
  2990. <options>
  2991. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  2992. </options>
  2993. </param>
  2994. </subject>
  2995. <subject match="powerPlay8ReportViewBase">
  2996. <param name="objects">
  2997. <object isContainer="true" isSelectable="false">content</object>
  2998. <object isContainer="true" isSelectable="false">package</object>
  2999. <object isContainer="true" isSelectable="false">folder</object>
  3000. <object isContainer="false" isSelectable="true">powerPlay8Report</object>
  3001. </param>
  3002. <param name="defaultRootId">contentId</param>
  3003. <!-- The permissions are inline with those required for user to create a pp8 report view -->
  3004. <param name="permissions">[permission('read') or permission('execute')]</param>
  3005. <param name="presentation" messageId="powerplay8reportviewBase">
  3006. <options>
  3007. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3008. </options>
  3009. </param>
  3010. <param name="modes" default="navigate">
  3011. <search>
  3012. <contents>
  3013. <param name="basic"/>
  3014. <param name="index"/>
  3015. </contents>
  3016. <method/>
  3017. <types>
  3018. <param name="powerPlay8Report"/>
  3019. </types>
  3020. <types_index>
  3021. <param name="powerPlay8Report"/>
  3022. </types_index>
  3023. <modified/>
  3024. <scopes>
  3025. <param name="fb"/>
  3026. <param name="fo"/>
  3027. <param name="p"/>
  3028. <param name="m"/>
  3029. </scopes>
  3030. </search>
  3031. </param>
  3032. </subject>
  3033. <!-- QQQ -->
  3034. <subject match="query">
  3035. <param name="objects">
  3036. <object isContainer="true" isSelectable="false">content</object>
  3037. <object isContainer="true" isSelectable="false">package</object>
  3038. <object isContainer="true" isSelectable="false">folder</object>
  3039. <object isContainer="false" isSelectable="true">query</object>
  3040. </param>
  3041. <param name="defaultRootId">contentId</param>
  3042. <param name="presentation" messageId="select.default">
  3043. <options>
  3044. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3045. </options>
  3046. </param>
  3047. </subject>
  3048. <!-- RRR -->
  3049. <subject match="report">
  3050. <param name="objects">
  3051. <object isContainer="true" isSelectable="false">content</object>
  3052. <object isContainer="true" isSelectable="false">package</object>
  3053. <object isContainer="true" isSelectable="false">folder</object>
  3054. <object isContainer="false" isSelectable="true">report</object>
  3055. </param>
  3056. <param name="defaultRootId">contentId</param>
  3057. <param name="presentation" messageId="select.default">
  3058. <options>
  3059. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3060. </options>
  3061. </param>
  3062. </subject>
  3063. <subject match="reportDataServiceAgentDefinitionBase">
  3064. <param name="objects">
  3065. <object isContainer="true" isSelectable="false">content</object>
  3066. <object isContainer="true" isSelectable="false">package</object>
  3067. <object isContainer="true" isSelectable="false">folder</object>
  3068. <object isContainer="false" isSelectable="true">report</object>
  3069. <object isContainer="false" isSelectable="true">query</object>
  3070. <object isContainer="false" isSelectable="true">analysis</object>
  3071. <object isContainer="true" isSelectable="false">content</object>
  3072. </param>
  3073. <param name="defaultRootId">contentId</param>
  3074. <param name="permissions">[permission('write') or permission('setPolicy')]</param>
  3075. <!--<param name="requestPredicate">[@allowSubscription='true']</param>-->
  3076. <param name="presentation" messageId="reportDataServiceAgentDefinitionBase" >
  3077. <options>
  3078. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3079. </options>
  3080. </param>
  3081. <param name="modes" default="navigate">
  3082. <search>
  3083. <contents>
  3084. <param name="basic"/>
  3085. <param name="index"/>
  3086. </contents>
  3087. <method/>
  3088. <types>
  3089. <param name="report"/>
  3090. <param name="query"/>
  3091. <param name="analysis"/>
  3092. </types>
  3093. <types_index>
  3094. <param name="report"/>
  3095. <param name="query"/>
  3096. <param name="analysis"/>
  3097. </types_index>
  3098. <modified/>
  3099. <scopes>
  3100. <param name="fb"/>
  3101. <param name="fo"/>
  3102. <param name="p"/>
  3103. <param name="m"/>
  3104. </scopes>
  3105. </search>
  3106. </param>
  3107. </subject>
  3108. <subject match="reportDataServiceAgentDefinition.es">
  3109. <param name="objects">
  3110. <object isContainer="true" isSelectable="false">subscriptionFolder</object>
  3111. <object isContainer="false" isSelectable="true">reportDataServiceAgentDefinition</object>
  3112. </param>
  3113. <param name="defaultRootId">subscriptionFolderId</param>
  3114. <param name="presentation" messageId="default">
  3115. <options>
  3116. <option name="startDisplayAt">subscriptionFolder</option>
  3117. </options>
  3118. </param>
  3119. <param name="modes" default="navigate">
  3120. <search>
  3121. <contents>
  3122. <param name="basic"/>
  3123. <param name="index"/>
  3124. </contents>
  3125. <method/>
  3126. <types>
  3127. <param name="reportDataServiceAgentDefinition"/>
  3128. </types>
  3129. <types_index>
  3130. <param name="reportDataServiceAgentDefinition"/>
  3131. </types_index>
  3132. <modified/>
  3133. <scopes>
  3134. <param name="fb"/>
  3135. <param name="fo"/>
  3136. </scopes>
  3137. </search>
  3138. </param>
  3139. </subject>
  3140. <subject match="reports.es">
  3141. <param name="filterToExcludeReportViewWithBaseObject"/>
  3142. <param name="objects">
  3143. <object isContainer="true" isSelectable="false">content</object>
  3144. <object isContainer="true" isSelectable="false">package</object>
  3145. <object isContainer="true" isSelectable="false">folder</object>
  3146. <object isContainer="false" isSelectable="true">report</object>
  3147. <object isContainer="false" isSelectable="true">interactiveReport</object>
  3148. <object isContainer="false" isSelectable="true">query</object>
  3149. <object isContainer="false" isSelectable="true">reportView</object>
  3150. <object isContainer="false" isSelectable="true">analysis</object>
  3151. <object isContainer="false" isSelectable="true">powerPlayReport</object>
  3152. <object isContainer="false" isSelectable="true">powerPlay8Report</object>
  3153. <object isContainer="false" isSelectable="true">powerPlay8ReportView</object>
  3154. <object isContainer="true" isSelectable="false">content</object>
  3155. </param>
  3156. <param name="defaultRootId">contentId</param>
  3157. <param name="presentation" messageId="reports.es">
  3158. <options>
  3159. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3160. </options>
  3161. </param>
  3162. <param name="modes" default="navigate">
  3163. <search references="search-reports"/>
  3164. </param>
  3165. </subject>
  3166. <subject match="reportTemplate.query">
  3167. <param name="objects">
  3168. <object isContainer="true" isSelectable="false">content</object>
  3169. <object isContainer="true" isSelectable="false">package</object>
  3170. <object isContainer="true" isSelectable="false">folder</object>
  3171. <object isContainer="false" isSelectable="true">reportTemplate</object>
  3172. </param>
  3173. <param name="defaultRootId">contentId</param>
  3174. <param name="presentation" messageId="reporttemplate.qs">
  3175. <options>
  3176. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3177. </options>
  3178. </param>
  3179. <param name="modes" default="navigate">
  3180. <search>
  3181. <contents>
  3182. <param name="basic"/>
  3183. <param name="index"/>
  3184. </contents>
  3185. <method/>
  3186. <types>
  3187. <param name="reportTemplate"/>
  3188. </types>
  3189. <types_index>
  3190. <param name="reportTemplate"/>
  3191. </types_index>
  3192. <modified/>
  3193. <scopes>
  3194. <param name="fb"/>
  3195. <param name="fo"/>
  3196. <param name="p"/>
  3197. <param name="m"/>
  3198. </scopes>
  3199. </search>
  3200. </param>
  3201. </subject>
  3202. <subject match="queries.qs">
  3203. <param name="objects">
  3204. <object isContainer="true" isSelectable="false">content</object>
  3205. <object isContainer="true" isSelectable="false">package</object>
  3206. <object isContainer="true" isSelectable="false">folder</object>
  3207. <object isContainer="false" isSelectable="true">query</object>
  3208. </param>
  3209. <param name="defaultRootId">contentId</param>
  3210. <param name="presentation" messageId="select.qs">
  3211. <options>
  3212. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3213. <option name="isSelectable">
  3214. <capability class="query">canUseQueryStudio</capability>
  3215. </option>
  3216. </options>
  3217. </param>
  3218. <param name="returns">
  3219. <return name="so.searchPath"/>
  3220. </param>
  3221. <param name="modes" default="navigate">
  3222. <search>
  3223. <contents>
  3224. <param name="basic"/>
  3225. <param name="index"/>
  3226. </contents>
  3227. <method/>
  3228. <types>
  3229. <param name="query"/>
  3230. </types>
  3231. <types_index>
  3232. <param name="query"/>
  3233. </types_index>
  3234. <modified/>
  3235. <scopes>
  3236. <param name="fb"/>
  3237. <param name="fo"/>
  3238. <param name="p"/>
  3239. <param name="m"/>
  3240. </scopes>
  3241. </search>
  3242. </param>
  3243. </subject>
  3244. <subject match="reportView">
  3245. <param name="objects">
  3246. <object isContainer="true" isSelectable="false">content</object>
  3247. <object isContainer="true" isSelectable="false">package</object>
  3248. <object isContainer="true" isSelectable="false">folder</object>
  3249. <object isContainer="false" isSelectable="true">reportView</object>
  3250. </param>
  3251. <param name="defaultRootId">contentId</param>
  3252. <param name="presentation" messageId="select.default">
  3253. <options>
  3254. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3255. </options>
  3256. </param>
  3257. </subject>
  3258. <subject match="reportViewBase">
  3259. <param name="objects">
  3260. <object isContainer="true" isSelectable="false">content</object>
  3261. <object isContainer="true" isSelectable="false">package</object>
  3262. <object isContainer="true" isSelectable="false">folder</object>
  3263. <object isContainer="false" isSelectable="true">report</object>
  3264. <object isContainer="false" isSelectable="true">interactiveReport</object>
  3265. <object isContainer="false" isSelectable="true">query</object>
  3266. <object isContainer="false" isSelectable="true">analysis</object>
  3267. <object isContainer="true" isSelectable="false">content</object>
  3268. </param>
  3269. <param name="defaultRootId">contentId</param>
  3270. <!-- The permissions are inline with those required for user to create a report view -->
  3271. <param name="permissions">[permission('read') or permission('execute')]</param>
  3272. <param name="presentation" messageId="reportviewBase">
  3273. <options>
  3274. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3275. </options>
  3276. </param>
  3277. <param name="modes" default="navigate">
  3278. <search>
  3279. <contents>
  3280. <param name="basic"/>
  3281. <param name="index"/>
  3282. </contents>
  3283. <method/>
  3284. <types>
  3285. <param name="report"/>
  3286. <param name="interactiveReport"/>
  3287. <param name="query"/>
  3288. <param name="analysis"/>
  3289. </types>
  3290. <types_index>
  3291. <param name="report"/>
  3292. <param name="interactiveReport"/>
  3293. <param name="query"/>
  3294. <param name="analysis"/>
  3295. </types_index>
  3296. <modified/>
  3297. <scopes>
  3298. <param name="fb"/>
  3299. <param name="fo"/>
  3300. <param name="p"/>
  3301. <param name="m"/>
  3302. </scopes>
  3303. </search>
  3304. </param>
  3305. </subject>
  3306. <subject match="repositoryDataSource">
  3307. <param name="objects">
  3308. <object isContainer="false" isSelectable="true">dataSource</object>
  3309. <object isContainer="true" isSelectable="false">namespace</object>
  3310. </param>
  3311. <param name="requestPredicate">[@objectClass='dataSource' and @capabilities='http://developer.cognos.com/ceba/constants/dataSourceCapabilityEnum#repository']</param>
  3312. <param name="defaultRootId">cognosNamespaceId</param>
  3313. <param name="presentation" messageId="repositoryDataSource">
  3314. <options>
  3315. <option name="startDisplayAt">namespace</option>
  3316. </options>
  3317. </param>
  3318. <param name="returns">
  3319. <return name="so.defaultName" alias="m_dataSourceName"/>
  3320. <return name="so.searchPath" alias="m_dataSourcePath"/>
  3321. </param>
  3322. <param name="modes" default="navigate">
  3323. <search>
  3324. <contents>
  3325. <param name="basic"/>
  3326. </contents>
  3327. <method/>
  3328. <types>
  3329. <param name="repositoryDatasource"/>
  3330. </types>
  3331. </search>
  3332. </param>
  3333. </subject>
  3334. <subject match="role">
  3335. <param name="objects">
  3336. <object isContainer="true" isSelectable="false">namespace</object>
  3337. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  3338. <object isContainer="false" isSelectable="true">role</object>
  3339. </param>
  3340. <param name="defaultRootId">directoryId</param>
  3341. <param name="permissions"/>
  3342. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  3343. <param name="presentation" messageId="contact">
  3344. <options>
  3345. <option name="startDisplayAt">directory</option>
  3346. </options>
  3347. </param>
  3348. </subject>
  3349. <subject match="rss_content.es">
  3350. <param name="objects">
  3351. <object isContainer="true" isSelectable="false">content</object>
  3352. <object isContainer="true" isSelectable="false">package</object>
  3353. <object isContainer="true" isSelectable="false">folder</object>
  3354. <object isContainer="false" isSelectable="true">report</object>
  3355. <object isContainer="false" isSelectable="true">query</object>
  3356. <object isContainer="false" isSelectable="true">document</object>
  3357. <object isContainer="false" isSelectable="true">reportView</object>
  3358. <object isContainer="false" isSelectable="true">analysis</object>
  3359. <object isContainer="true" isSelectable="false">content</object>
  3360. <object isContainer="false" isSelectable="true">powerPlay8Report</object>
  3361. <object isContainer="false" isSelectable="true">powerPlay8ReportView</object>
  3362. </param>
  3363. <param name="defaultRootId">contentId</param>
  3364. <param name="presentation" messageId="rss_content.es">
  3365. <options>
  3366. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3367. </options>
  3368. </param>
  3369. <param name="modes" default="navigate">
  3370. <search>
  3371. <contents>
  3372. <param name="basic"/>
  3373. <param name="index"/>
  3374. </contents>
  3375. <method/>
  3376. <types>
  3377. <param name="_agents"/>
  3378. <param name="document"/>
  3379. <param name="_pages" pagesSearchRoot="content"/>
  3380. <param name="_reports"/>
  3381. <param name="URL"/>
  3382. </types>
  3383. <types_index>
  3384. <param name="_agents"/>
  3385. <param name="_pages"/>
  3386. <param name="_reports"/>
  3387. <param name="URL"/>
  3388. </types_index>
  3389. <modified/>
  3390. <scopes>
  3391. <param name="fb"/>
  3392. <param name="fo"/>
  3393. <param name="p"/>
  3394. <param name="m"/>
  3395. </scopes>
  3396. </search>
  3397. </param>
  3398. </subject>
  3399. <!-- SSS -->
  3400. <subject match="selfServicePackage">
  3401. <param name="objects">
  3402. <object isContainer="false" isSelectable="true">dataSource</object>
  3403. <object isContainer="true" isSelectable="false">namespace</object>
  3404. </param>
  3405. <param name="requestPredicate">[@objectClass='dataSource' and @capabilities='http://developer.cognos.com/ceba/constants/dataSourceCapabilityEnum#personalPackages'][permission('execute') and permission('traverse')]</param>
  3406. <param name="defaultRootId">cognosNamespaceId</param>
  3407. <param name="presentation" messageId="selfServicePackage.dataSource">
  3408. <options>
  3409. <option name="startDisplayAt">namespace</option>
  3410. </options>
  3411. </param>
  3412. <param name="returns">
  3413. <return name="so.defaultName" alias="m_dataSourceName"/>
  3414. <return name="so.searchPath" alias="m_dataSourcePath"/>
  3415. </param>
  3416. <param name="modes" default="navigate">
  3417. <search>
  3418. <contents>
  3419. <param name="basic"/>
  3420. </contents>
  3421. <method/>
  3422. <types>
  3423. <param name="selfServicePackageDatasource"/>
  3424. </types>
  3425. </search>
  3426. </param>
  3427. </subject>
  3428. <subject match="shortcut">
  3429. <param name="objects">
  3430. <object isContainer="true" isSelectable="false">content</object>
  3431. <object isContainer="true" isSelectable="false">package</object>
  3432. <object isContainer="true" isSelectable="false">folder</object>
  3433. <object isContainer="false" isSelectable="true">shortcut</object>
  3434. </param>
  3435. <param name="defaultRootId">contentId</param>
  3436. <param name="presentation" messageId="select.default">
  3437. <options>
  3438. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3439. </options>
  3440. </param>
  3441. </subject>
  3442. <!-- TTT -->
  3443. <!-- UUU -->
  3444. <subject match="URL">
  3445. <param name="objects">
  3446. <object isContainer="true" isSelectable="false">content</object>
  3447. <object isContainer="true" isSelectable="false">package</object>
  3448. <object isContainer="true" isSelectable="false">folder</object>
  3449. <object isContainer="false" isSelectable="true">URL</object>
  3450. </param>
  3451. <param name="defaultRootId">contentId</param>
  3452. <param name="presentation" messageId="select.default">
  3453. <options>
  3454. <option name="displayVirtualRootNode" references="virtualRootDisplayNodes"/>
  3455. </options>
  3456. </param>
  3457. </subject>
  3458. <subject match="users.pw2">
  3459. <param name="objects">
  3460. <object isContainer="true" isSelectable="false">namespace</object>
  3461. <object isContainer="true" isSelectable="false">namespaceFolder</object>
  3462. <object isContainer="true" isSelectable="true">role</object>
  3463. <object isContainer="false" isSelectable="true">group</object>
  3464. <object isContainer="false" isSelectable="true">account</object>
  3465. </param>
  3466. <param name="defaultRootId">directoryId</param>
  3467. <param name="permissions"/>
  3468. <!-- Permissions dictated by where we are in the directory tree - defined in engine -->
  3469. <param name="presentation" messageId="users.pw2">
  3470. <options>
  3471. <option name="displayCheckbox" oncheckDisplay="account" state="unchecked" disabledAtContainer="directory"/>
  3472. </options>
  3473. </param>
  3474. <param name="returns">
  3475. <return name="so.searchPath"/>
  3476. <return name="so.objectClass"/>
  3477. <return name="so.defaultName"/>
  3478. <return name="so.contentLocale"/>
  3479. <return name="so.name" type="xml"/>
  3480. <return name="so.userName"/>
  3481. <return name="so.email"/>
  3482. </param>
  3483. <param name="modes" default="navigate">
  3484. <search disabledAtContainer="directory">
  3485. <contents>
  3486. <param name="basic"/>
  3487. </contents>
  3488. <method/>
  3489. <types>
  3490. <param name="_usersGroupsAndRoles"/>
  3491. </types>
  3492. <scopes>
  3493. <param name="fb"/>
  3494. <param name="fo"/>
  3495. <param name="ns"/>
  3496. </scopes>
  3497. </search>
  3498. </param>
  3499. </subject>
  3500. <!-- VVV -->
  3501. <!-- WWW -->
  3502. <!-- XXX -->
  3503. <!-- YYY -->
  3504. <!-- ZZZ -->
  3505. </specGuide>