Home > Contents > Index >
assetset:setsearchedassets
Creates an assetset object which represents all assets of specific types narrowed by specified search criteria.
Syntax
<assetset:setsearchedassets name="assetsetname
" [assettypes="assettype
"] [constraint="searchstateobject
"][locale
="localeobject
"] [site="siteidentifier
"] [fixedlist=="True/False
"] [deptype="exact|exists|none"]/>Parameters
name
(required)- Input and output parameter. As input, name of the assetset object to create on output, representing the specific asset types and search criteria.
assettypes
(optional)- Input parameter. A string of asset types; for example,
"Products, AArticles, AImages"
, to include in building the set. Identifying specific assets is recommended, since the search becomes much slower for each asset type searched. If null, then all assets in the system are considered.
constraint
(optional)- Input parameter. Name of a searchstate object describing the search constraint.
locale
(optional)- Input parameter. Name of a locale object, which determines sort order.
site
(optional)- Input parameter. Site identifier to search.
fixedlist
(optional)- If you have a search state that describes a fixed set of assets whose identities will not change, you instruct Sites to set compositional dependencies for the assets in the assetset by setting the optional fixedlist property to “true.”
deptype (optional)
- Specifies approval dependency. Legal values are:
exact --
Specifies a version dependency. The version of the dependent asset must be equal to the version of the asset when it was approved.exists --
Specifies that any version of the asset satisfies the dependency condition.none (default)--
Specifies no approval dependency.Example
<!-- Iterate through a list of attribute values. --> <!-- First, create a blank searchstate. --> <searchstate:create name="ss"/> <!-- Associate the blank searchstate with a new asset set. --> <assetset:setsearchedassets name="as" constraint="ss" assettypes="products"/> <!-- Example for fixedList -->
<assetset:setsearchedassets name="as" assettypes="Products" constrain="ss" fixedlist="true" deptype="exists" /> <!-- Get a set of all values for the given attribute. --> <assetset:getattributevalues ordering="descending" name="as" attribute="price" listvarname="results"/>
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.