Package com.bea.wli.config.resource
Class ResourceQuery
java.lang.Object
com.bea.wli.config.resource.BaseQuery
com.bea.wli.config.resource.ResourceQuery
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ArchiveResourceQuery
,FlowServiceQuery
,JndiProviderQuery
,PipelineServiceQuery
,ProxyServerQuery
,ServiceAccountQuery
,ServiceKeyProviderQuery
,ServiceProviderQuery
,ServiceQuery
,SmtpServerQuery
,UDDIRegistryEntryQuery
,WsdlQuery
,WsPolicyQuery
,XmlSchemaQuery
,XqueryQuery
Query for searching resources based on various properties
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addKeySearch
(String key, Object keyValue) Adds a filtering condition.getPath()
boolean
void
lastUpdatedBetween
(Date startDate, Date endDate) Adds a predicate to return the resource modified in between two dates.void
setAttrsToReturn
(Collection<String> attrsToReturn) Sets additional attributes to return.void
setChangedInSessionOnly
(boolean changedInSessionOnly) Adds a predicate to consider only the existing resources that have been modified (updated or created) in the session.void
setLocalName
(String localName) Adds a predicate to return only resource that have the given local name relative to their project / folder.void
Adds a predicate to return only resources under the given path
-
Field Details
-
serialVersionUID
public static final long serialVersionUID- See Also:
-
-
Constructor Details
-
ResourceQuery
- Parameters:
typeId
- type id of the resources to be searched. If null all resource types are searched.
-
-
Method Details
-
getTypeId
-
getPath
-
getLocalName
-
getFilter
-
getAttrsToReturn
-
getUpdatedAfter
-
getUpdatedBefore
-
isChangedInSessionOnly
public boolean isChangedInSessionOnly() -
addKeySearch
Adds a filtering condition.- Parameters:
key
- this determines the key on which filtering is done, for eg for XML Schema resouce filtering based on targetNameSpace, key would be "targetNameSpace"keyValue
- this determines the value based on which filtering is done
-
setPath
Adds a predicate to return only resources under the given path- Parameters:
path
-
-
setLocalName
Adds a predicate to return only resource that have the given local name relative to their project / folder.- Parameters:
localName
-
-
setAttrsToReturn
Sets additional attributes to return. If null or empty no additional attributes are returned.- Parameters:
attrsToReturn
-
-
lastUpdatedBetween
Adds a predicate to return the resource modified in between two dates. Only the last updated time of a resource is considered for this search. Dates are inclusive. A null value indicates an open ended query. i.e. If startDate is null, then it returns resources updated before the end date. If endDate == null, it then returns resources updated after startDate. If both are null this predicate will not be applied.- Parameters:
startDate
- start date of the date rangeendDate
- end date of the date range- Since:
- 2.6
-
setChangedInSessionOnly
public void setChangedInSessionOnly(boolean changedInSessionOnly) Adds a predicate to consider only the existing resources that have been modified (updated or created) in the session. Resources that no longer exists (because they have been deleted) are not considered.- Parameters:
changedInSessionOnly
- a value of true causes only the resources that has been modified in the session to be considered. A false value however indicates that all resources be considered, regardless of updates.- Since:
- 2.6
-