SAP NetWeaver '04

Uses of Interface
com.sapportals.wcm.repository.IPropertyMap

Packages that use IPropertyMap
com.sapportals.wcm.rendering.base Contains interfaces for flexible rendering of explorer controls.  
com.sapportals.wcm.repository Contains the repository framework interfaces and classes.  
com.sapportals.wcm.repository.batch   
com.sapportals.wcm.repository.filter Contains interfaces and classes to define repository filters.  
com.sapportals.wcm.repository.manager.entrypoints API for implementing entry point providers Package Specification Purpose The entrypoints package contains interfaces and abstract classes, which are offering all neccessary methods to act as an entry points provider.  
com.sapportals.wcm.service.indexmanagement Provides a service for managing indexes.  
com.sapportals.wcm.service.indexmanagement.retrieval.search Provides functions for searching and textmining.  
com.sapportals.wcm.service.propertyconfig Provides a service for the administration of metadata for resource properties.  
com.sapportals.wcm.service.propertyconfig.renderer Provides a service for rendering resource properties.  
com.sapportals.wcm.service.propertystructure Provides structuring information for properties.  
com.sapportals.wcm.service.relation Provides a service to persist relationships between relation operands.  
com.sapportals.wcm.service.xmlforms.validation   
 

Uses of IPropertyMap in com.sapportals.wcm.rendering.base
 

Methods in com.sapportals.wcm.rendering.base that return IPropertyMap
 IPropertyMap ResourcePropertyAmalgamation.getProperties(IResource resource)
          returns all properties available from the framework.
 IPropertyMap ResourcePropertyAmalgamation.getProperties(IResource resource, IPropertyNameList list)
          returns the properties defined for the given resource which are accessed through the given list.
 

Methods in com.sapportals.wcm.rendering.base with parameters of type IPropertyMap
 void ResourcePropertyAmalgamation.add(IResource resource, IPropertyMap map, ResourcePropertyAmalgamation.Mode mode)
          adds the given IPropertyMap to the map of available properties for the given IResource.
 void ResourcePropertyAmalgamation.UnavailableEntries.remove(IResource res, IPropertyMap map)
          removes all property names that are included in the given map from the list of unavailable entries for the given resource.
 

Uses of IPropertyMap in com.sapportals.wcm.repository
 

Subinterfaces of IPropertyMap in com.sapportals.wcm.repository
 interface IMutablePropertyMap
          An extention of the IPropertyMap interface with methods to modify the map.
 

Classes in com.sapportals.wcm.repository that implement IPropertyMap
 class MutablePropertyMap
          Holds a mutable map of Property objects.
 class PropertyMap
          Holds a read-only map of Property objects.
 

Methods in com.sapportals.wcm.repository that return IPropertyMap
 IPropertyMap IPropertyBatch.getProperties(RID rid)
           
 IPropertyMap IResource.getProperties()
          Returns a map with IProperty references for the resource.
 IPropertyMap IResource.getProperties(IPropertyNameList propNameList)
          Returns a map with IProperty references for the resource.
 IPropertyMap MutablePropertyMap.getImmutable()
           
 IPropertyMap IMutablePropertyMap.getImmutable()
          Returns a read-only version of this map.
 

Methods in com.sapportals.wcm.repository with parameters of type IPropertyMap
 IResource IExtendedCollection.createExternalLink(java.lang.String name, IUri absoluteTargetUri, boolean isPermanent, IPosition position, IPropertyMap properties, boolean ignorePropertyFailures)
          Creates an external link, compatible to LinkType.EXTERNAL
 IResource IExtendedCollection.createInternalDynamicLink(java.lang.String name, RID targetRid, IPosition position, IPropertyMap properties, boolean ignorePropertyFailures)
          Creates an internal link that automatically follows the target resource and disappears when the link target disappears.
 IResource IExtendedCollection.createInternalStaticLink(java.lang.String name, RID targetRid, boolean isPermanent, IPosition position, IPropertyMap properties, boolean ignorePropertyFailures)
          Creates an internal link, compatible to LinkType.INTERNAL
 boolean Selector.check(IPropertyMap properties)
          checks, if the provided map of properties will pass all PropertySelectorItem instances defined within this class.
 void IResource.update(IContent newContent, IPropertyMap properties)
          Updates the content and properties of this resource in an atomic operation.
 void IResource.setProperties(IPropertyMap props)
          Set all properties of the resource.
 ICheckInInfo IResource.checkIn(IContent newContent, IPropertyMap properties, boolean ignorePropertyFailures, URI expectedCheckInURI)
          Deprecated. As of EP 5.0 SP4
 ICheckInInfo IResource.checkIn(IContent newContent, IPropertyMap properties)
          Check in a new version of the resource with new content and/or properties.
 ICheckInInfo IResource.checkIn(IContent newContent, IPropertyMap properties, boolean ignorePropertyFailures)
          Check in a new version of the resource with new content and/or properties.
 ICheckInInfo IResource.checkIn(IContent newContent, IPropertyMap properties, boolean ignorePropertyFailures, RID expectedCheckInRID)
          Check in a new version of the resource with new content and/or properties.
 ICollection ICollection.createCollection(java.lang.String name, IPropertyMap properties)
          Creates a new sub collection in a collection.
 ICollection ICollection.createCollection(java.lang.String name, IPosition position, IPropertyMap properties)
          Creates a new sub collection in a collection that supports ordering.
 ICollection ICollection.createCollection(java.lang.String name, IPropertyMap properties, boolean ignorePropertyFailures)
          Creates a new sub collection in a collection.
 ICollection ICollection.createCollection(java.lang.String name, IPosition position, IPropertyMap properties, boolean ignorePropertyFailures)
          Creates a new sub collection in a collection that supports ordering.
 IResource ICollection.createResource(java.lang.String name, IPropertyMap properties, IContent content)
          Creates a new resource in a collection.
 IResource ICollection.createResource(java.lang.String name, IPosition position, IPropertyMap properties, IContent content)
          Creates a new resource in a collection that supports ordering.
 IResource ICollection.createResource(java.lang.String name, IPropertyMap properties, IContent content, boolean ignorePropertyFailures)
          Creates a new resource in a collection.
 IResource ICollection.createResource(java.lang.String name, IPosition position, IPropertyMap properties, IContent content, boolean ignorePropertyFailures)
          Creates a new resource in a collection that supports ordering.
 IResource ICollection.createLink(java.lang.String name, URL targetURL, LinkType linkType, IPropertyMap properties)
          Creates a new link in a collection.
 IResource ICollection.createLink(java.lang.String name, URL targetURL, LinkType linkType, IPosition position, IPropertyMap properties)
          Creates a new link in a collection that supports ordering.
 IResource ICollection.createLink(java.lang.String name, URL targetURL, LinkType linkType, IPropertyMap properties, boolean ignorePropertyFailures)
          Creates a new link in a collection.
 IResource ICollection.createLink(java.lang.String name, URL targetURL, LinkType linkType, IPosition position, IPropertyMap properties, boolean ignorePropertyFailures)
          Creates a new link in a collection that supports ordering.
 ICheckInInfo2 IVersionControlledResource.checkIn(IContent newContent, IPropertyMap properties, boolean ignorePropertyFailures, RID expectedCheckInRID, boolean forkOk, boolean keepCheckedOut)
          Check in a new version of the resource with new content and/or properties.
 

Uses of IPropertyMap in com.sapportals.wcm.repository.batch
 

Methods in com.sapportals.wcm.repository.batch that return IPropertyMap
 IPropertyMap ResourcePropertyMap.getProperties(RID rid)
          Returns the property map for the specified RID.
 

Uses of IPropertyMap in com.sapportals.wcm.repository.filter
 

Methods in com.sapportals.wcm.repository.filter that return IPropertyMap
 IPropertyMap IPropertyFilter.filter()
          Returns the filtered property map.
 

Uses of IPropertyMap in com.sapportals.wcm.repository.manager.entrypoints
 

Methods in com.sapportals.wcm.repository.manager.entrypoints that return IPropertyMap
 IPropertyMap IEntryPointsProvider.getProperties(IResource resource, IEntryPoint entryPoint, DisplayMode displayMode)
          Gets properties of an entry point represented by a resource
 IPropertyMap AbstractEntryPointsProvider.getProperties(IResource resource, IEntryPoint entryPoint, DisplayMode displayMode)
          Gets properties of an entry point represented by a resource
protected  IPropertyMap AbstractEntryPointsProvider.getPropertiesForInternalLink(RID targetRid, IResourceContext context, boolean nameAsFallback)
           
 

Uses of IPropertyMap in com.sapportals.wcm.service.indexmanagement
 

Methods in com.sapportals.wcm.service.indexmanagement that return IPropertyMap
 IPropertyMap IIndexService.getIndexedProperties()
          Determines all properties indexed in at least one of the indexes maintained by the index service.
 IPropertyMap IIndexService.getIndexedProperties(IResourceContext resourceContext)
          Determines all properties indexed in at least one of the indexes maintained by the index service and for which read access for the resource context is allowed.
 IPropertyMap IIndexService.getIndexedProperties(java.util.List indexes)
          Determines all properties indexed in at least one of the indexes.
 IPropertyMap IIndexService.getIndexedProperties(java.util.List indexes, IResourceContext resourceContext)
          Determines all properties indexed in at least one of the indexes and for which read access for the resource context is allowed.
 IPropertyMap IIndex.getIndexedProperties()
          Returns the properties, indexed with the documents in the index.
 IPropertyMap AbstractIndex.getIndexedProperties()
          Returns the properties, indexed with the documents in the index.
 

Uses of IPropertyMap in com.sapportals.wcm.service.indexmanagement.retrieval.search
 

Methods in com.sapportals.wcm.service.indexmanagement.retrieval.search that return IPropertyMap
 IPropertyMap ISearchResult.getLocalProperties()
          Return the local properties, including the content snippet.
 IPropertyMap IRawSearchResult.getResultResourceProperties()
          Properties of the result that have been retrieved by the search engine.
 

Methods in com.sapportals.wcm.service.indexmanagement.retrieval.search with parameters of type IPropertyMap
 void ISearchResult.setLocalProperties(IPropertyMap propertyMap)
          Sets the local properties.
 IRawSearchResult IRawSearchSession.createRawSearchResult(java.lang.String docKey, float rankValue, IProperty sortProperty, IPropertyMap resultResourceProperties)
           
 

Uses of IPropertyMap in com.sapportals.wcm.service.propertyconfig
 

Methods in com.sapportals.wcm.service.propertyconfig that return IPropertyMap
 IPropertyMap IMetaContext.getPropertyMap()
           
 

Methods in com.sapportals.wcm.service.propertyconfig with parameters of type IPropertyMap
 IValidationErrorList IMetaModel.validate(IPropertyMap properties, IMetaContext metaContext)
          Validation of properties via predefined validation classes
 void IMetaContext.setPropertyMap(IPropertyMap propertyMap)
           
 

Uses of IPropertyMap in com.sapportals.wcm.service.propertyconfig.renderer
 

Methods in com.sapportals.wcm.service.propertyconfig.renderer that return IPropertyMap
 IPropertyMap IStructuredPropertyRenderer.getProperties(IMetaName metaName, IMetaContext rendererContext, com.sapportals.htmlb.page.DynPage dynPage)
          Gets the properties with their entered values after the response has been returned.
 

Uses of IPropertyMap in com.sapportals.wcm.service.propertystructure
 

Methods in com.sapportals.wcm.service.propertystructure that return IPropertyMap
 IPropertyMap IStructuredGroupRenderer.getProperties(IMetaContext metaContext, com.sapportals.htmlb.page.DynPage dynPage)
          Gets the properties with their entered values after the response has been returned.
 

Uses of IPropertyMap in com.sapportals.wcm.service.relation
 

Methods in com.sapportals.wcm.service.relation that return IPropertyMap
 IPropertyMap IRelation.getProperties()
          Get all properties of the relation.
 IPropertyMap IRelation.getProperties(IPropertyNameList propertyNameList)
          Get several specified properties.
 

Methods in com.sapportals.wcm.service.relation with parameters of type IPropertyMap
 void IRelation.setProperties(IPropertyMap properties)
          Set several specified properties.
 IRelation IRelationType.createRelation(IRelationOperand source, IRelationOperand target, IPropertyMap properties)
          Create a new relation from wrapped operands.
 IRelation IRelationType.createRelation(java.lang.Object source, java.lang.Object target, IPropertyMap properties)
          Create a relation from operand values.
 IRelation IRelationType.createRelation(IOrderedRelationPosition position, IRelationOperand source, IRelationOperand target, IPropertyMap properties)
          Create a new ordered relation from wrapped operands.
 IRelation IRelationType.createRelation(IOrderedRelationPosition position, java.lang.Object source, java.lang.Object target, IPropertyMap properties)
          Create a ordered relation from operand values.
 

Uses of IPropertyMap in com.sapportals.wcm.service.xmlforms.validation
 

Methods in com.sapportals.wcm.service.xmlforms.validation with parameters of type IPropertyMap
 void IPropertyLocalizer.insertLocalizedPropsToDOM(org.w3c.dom.Document doc, org.w3c.dom.Element insertNode, java.lang.Object resProps, IPropertyMap props, java.util.HashMap ns2alias, java.util.Properties updated, java.util.Map requiredValues)
          start the validation
 


SAP NetWeaver '04

Copyright © 2004 by SAP AG. All Rights Reserved.
SAP, R/3, mySAP, mySAP.com, xApps, xApp, SAP NetWeaver, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and in several other countries all over the world. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary.

These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty.