Uses of Class
org.apache.unomi.api.PropertyType
-
-
Uses of PropertyType in org.apache.unomi.api
Methods in org.apache.unomi.api that return types with arguments of type PropertyType Modifier and Type Method Description Set<PropertyType>
PropertyType. getChildPropertyTypes()
Methods in org.apache.unomi.api with parameters of type PropertyType Modifier and Type Method Description boolean
PropertyMergeStrategyExecutor. mergeProperty(String propertyName, PropertyType propertyType, List<Profile> profilesToMerge, Profile targetProfile)
Merges the value of the property identified by the specified name and type from the specified profiles into the specified target profile.Method parameters in org.apache.unomi.api with type arguments of type PropertyType Modifier and Type Method Description void
PropertyType. setChildPropertyTypes(Set<PropertyType> childPropertyTypes)
-
Uses of PropertyType in org.apache.unomi.api.services
Methods in org.apache.unomi.api.services that return PropertyType Modifier and Type Method Description PropertyType
ProfileService. getPropertyType(String id)
Retrieves the property type identified by the specified identifier.Methods in org.apache.unomi.api.services that return types with arguments of type PropertyType Modifier and Type Method Description Set<PropertyType>
ProfileService. getExistingProperties(String tag, String itemType)
Retrieves the existing property types for the specified type as defined by the Item subclass public fieldITEM_TYPE
and with the specified tag.Set<PropertyType>
ProfileService. getExistingProperties(String tag, String itemType, boolean systemTag)
Retrieves the existing property types for the specified type as defined by the Item subclass public fieldITEM_TYPE
and with the specified tag (system or regular) TODO: move to a different classCollection<PropertyType>
ProfileService. getPropertyTypeByMapping(String propertyName)
TODOSet<PropertyType>
ProfileService. getPropertyTypeBySystemTag(String tag)
Retrieves all property types with the specified system tag TODO: move to a different classSet<PropertyType>
ProfileService. getPropertyTypeByTag(String tag)
Retrieves all property types with the specified tag TODO: move to a different classMap<String,Collection<PropertyType>>
ProfileService. getTargetPropertyTypes()
Retrieves all known property types.Collection<PropertyType>
ProfileService. getTargetPropertyTypes(String target)
Retrieves all the property types associated with the specified target.Methods in org.apache.unomi.api.services with parameters of type PropertyType Modifier and Type Method Description boolean
ProfileService. setPropertyType(PropertyType property)
Persists the specified property type in the context server.void
ProfileService. setPropertyTypeTarget(URL predefinedPropertyTypeURL, PropertyType propertyType)
This function will try to set the target on the property type if not set already, based on the file URL -
Uses of PropertyType in org.apache.unomi.api.utils
Methods in org.apache.unomi.api.utils with parameters of type PropertyType Modifier and Type Method Description static void
ParserHelper. resolveValueType(DefinitionsService definitionsService, PropertyType propertyType)
-
Uses of PropertyType in org.apache.unomi.graphql.schema
Methods in org.apache.unomi.graphql.schema with parameters of type PropertyType Modifier and Type Method Description CDPPropertyInterface
CDPPropertyInterfaceRegister. getProperty(PropertyType type)
Constructors in org.apache.unomi.graphql.schema with parameters of type PropertyType Constructor Description PropertyTypeDefinitionType(PropertyType propertyType)
-
Uses of PropertyType in org.apache.unomi.graphql.types.input.property
Methods in org.apache.unomi.graphql.types.input.property that return PropertyType Modifier and Type Method Description PropertyType
BaseCDPPropertyInput. toPropertyType()
Methods in org.apache.unomi.graphql.types.input.property with parameters of type PropertyType Modifier and Type Method Description protected void
BaseCDPPropertyInput. deleteDefaultNumericRange(PropertyType type)
protected void
BaseCDPPropertyInput. updateDefaultNumericRange(PropertyType type, Double from, Double to)
void
BaseCDPPropertyInput. updateType(PropertyType propertyType)
void
CDPBooleanPropertyInput. updateType(PropertyType type)
void
CDPDatePropertyInput. updateType(PropertyType type)
void
CDPFloatPropertyInput. updateType(PropertyType type)
void
CDPGeoPointPropertyInput. updateType(PropertyType type)
void
CDPIdentifierPropertyInput. updateType(PropertyType type)
void
CDPIntPropertyInput. updateType(PropertyType type)
void
CDPJsonPropertyInput. updateType(PropertyType type)
void
CDPLongPropertyInput. updateType(PropertyType type)
void
CDPStringPropertyInput. updateType(PropertyType type)
-
Uses of PropertyType in org.apache.unomi.graphql.types.output
Methods in org.apache.unomi.graphql.types.output that return PropertyType Modifier and Type Method Description PropertyType
CDPPropertyInterface. getType()
Constructors in org.apache.unomi.graphql.types.output with parameters of type PropertyType Constructor Description CDPPropertyEdge(PropertyType type)
-
Uses of PropertyType in org.apache.unomi.graphql.types.output.property
Fields in org.apache.unomi.graphql.types.output.property declared as PropertyType Modifier and Type Field Description protected PropertyType
CDPPropertyType. type
Methods in org.apache.unomi.graphql.types.output.property that return PropertyType Modifier and Type Method Description PropertyType
CDPPropertyType. getType()
Constructors in org.apache.unomi.graphql.types.output.property with parameters of type PropertyType Constructor Description CDPBooleanPropertyType(PropertyType type)
CDPDatePropertyType(PropertyType type)
CDPFloatPropertyType(PropertyType type)
CDPGeoPointPropertyType(PropertyType type)
CDPIdentifierPropertyType(PropertyType type)
CDPIntPropertyType(PropertyType type)
CDPJsonPropertyType(PropertyType type)
CDPLongPropertyType(PropertyType type)
CDPPropertyType(PropertyType type)
CDPSetPropertyType(PropertyType type)
CDPStringPropertyType(PropertyType type)
-
Uses of PropertyType in org.apache.unomi.persistence.elasticsearch
Methods in org.apache.unomi.persistence.elasticsearch with parameters of type PropertyType Modifier and Type Method Description void
ElasticSearchPersistenceServiceImpl. setPropertyMapping(PropertyType property, String itemType)
-
Uses of PropertyType in org.apache.unomi.persistence.spi
Methods in org.apache.unomi.persistence.spi with parameters of type PropertyType Modifier and Type Method Description void
PersistenceService. setPropertyMapping(PropertyType property, String itemType)
Create the persistence mapping for specific property for a given type. -
Uses of PropertyType in org.apache.unomi.rest.endpoints
Methods in org.apache.unomi.rest.endpoints that return PropertyType Modifier and Type Method Description PropertyType
ProfileServiceEndPoint. getPropertyType(String propertyId, String language)
Retrieves the property type associated with the specified property ID.Methods in org.apache.unomi.rest.endpoints that return types with arguments of type PropertyType Modifier and Type Method Description Collection<PropertyType>
ProfileServiceEndPoint. getExistingProperties(String tag, boolean isSystemTag, String itemType, String language, javax.servlet.http.HttpServletResponse response)
Retrieves the existing property types for the specified type as defined by the Item subclass public fieldITEM_TYPE
and with the specified tag or system tag.Collection<PropertyType>
ProfileServiceEndPoint. getPropertyTypeBySystemTag(String tags, String language)
Retrieves all property types with the specified tags.Collection<PropertyType>
ProfileServiceEndPoint. getPropertyTypeByTag(String tags, String language)
Retrieves all property types with the specified tags.Map<String,Collection<PropertyType>>
ProfileServiceEndPoint. getPropertyTypes(String language)
Retrieves all known property types.Collection<PropertyType>
ProfileServiceEndPoint. getPropertyTypesByTarget(String target, String language)
Retrieves all the property types associated with the specified target.Methods in org.apache.unomi.rest.endpoints with parameters of type PropertyType Modifier and Type Method Description boolean
ProfileServiceEndPoint. setPropertyType(PropertyType property)
Persists the specified property type in the context server.Method parameters in org.apache.unomi.rest.endpoints with type arguments of type PropertyType Modifier and Type Method Description boolean
ProfileServiceEndPoint. setPropertyTypes(List<PropertyType> properties)
Persists the specified properties type in the context server. -
Uses of PropertyType in org.apache.unomi.router.api
Methods in org.apache.unomi.router.api that return PropertyType Modifier and Type Method Description static PropertyType
RouterUtils. getPropertyTypeById(Collection<PropertyType> propertyTypes, String propertyTypeId)
Method parameters in org.apache.unomi.router.api with type arguments of type PropertyType Modifier and Type Method Description static PropertyType
RouterUtils. getPropertyTypeById(Collection<PropertyType> propertyTypes, String propertyTypeId)
-
Uses of PropertyType in org.apache.unomi.router.core.processor
Method parameters in org.apache.unomi.router.core.processor with type arguments of type PropertyType Modifier and Type Method Description void
LineSplitProcessor. setProfilePropertyTypes(Collection<PropertyType> profilePropertyTypes)
Sets the profile property types to use for the field mappings -
Uses of PropertyType in org.apache.unomi.services.impl.profiles
Methods in org.apache.unomi.services.impl.profiles that return PropertyType Modifier and Type Method Description PropertyType
ProfileServiceImpl. getPropertyType(String id)
Methods in org.apache.unomi.services.impl.profiles that return types with arguments of type PropertyType Modifier and Type Method Description Set<PropertyType>
ProfileServiceImpl. getExistingProperties(String tag, String itemType)
Set<PropertyType>
ProfileServiceImpl. getExistingProperties(String tag, String itemType, boolean systemTag)
Collection<PropertyType>
ProfileServiceImpl. getPropertyTypeByMapping(String propertyName)
Set<PropertyType>
ProfileServiceImpl. getPropertyTypeBySystemTag(String tag)
Set<PropertyType>
ProfileServiceImpl. getPropertyTypeByTag(String tag)
Map<String,Collection<PropertyType>>
ProfileServiceImpl. getTargetPropertyTypes()
Collection<PropertyType>
ProfileServiceImpl. getTargetPropertyTypes(String target)
Methods in org.apache.unomi.services.impl.profiles with parameters of type PropertyType Modifier and Type Method Description boolean
ProfileServiceImpl. setPropertyType(PropertyType property)
void
ProfileServiceImpl. setPropertyTypeTarget(URL predefinedPropertyTypeURL, PropertyType propertyType)
-
Uses of PropertyType in org.apache.unomi.services.mergers
Methods in org.apache.unomi.services.mergers with parameters of type PropertyType Modifier and Type Method Description boolean
AddPropertyMergeStrategyExecutor. mergeProperty(String propertyName, PropertyType propertyType, List<Profile> profilesToMerge, Profile targetProfile)
boolean
DefaultPropertyMergeStrategyExecutor. mergeProperty(String propertyName, PropertyType propertyType, List<Profile> profilesToMerge, Profile targetProfile)
boolean
MostRecentPropertyMergeStrategyExecutor. mergeProperty(String propertyName, PropertyType propertyType, List<Profile> profilesToMerge, Profile targetProfile)
boolean
NonEmptyPropertyMergeStrategyExecutor. mergeProperty(String propertyName, PropertyType propertyType, List<Profile> profilesToMerge, Profile targetProfile)
boolean
OldestPropertyMergeStrategyExecutor. mergeProperty(String propertyName, PropertyType propertyType, List<Profile> profilesToMerge, Profile targetProfile)
-