| Modifier and Type | Method and Description |
|---|---|
boolean |
HasRestrictionNameChangedUpdatePredicate.test(AbstractRestrictionData restrictionData)
Deprecated.
|
boolean |
RestrictionNameExistsPredicate.test(AbstractRestrictionData restrictionData)
Deprecated.
Suppress sonar warning (squid:S1166 | Exception handlers should preserve the original exception) : The exception
is correctly handled in the catch clause.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CategoryRestrictionData
Deprecated.
Deprecated since 6.6
|
class |
TimeRestrictionData
Deprecated.
Deprecated since 6.6
|
class |
UserGroupRestrictionData
Deprecated.
Deprecated since 6.6
|
| Modifier and Type | Method and Description |
|---|---|
AbstractRestrictionData |
UpdateRestrictionValidationDto.getRestriction()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
UpdateRestrictionValidationDto.setRestriction(AbstractRestrictionData restriction)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
AbstractRestrictionData |
RestrictionFacade.createRestriction(AbstractRestrictionData restrictionData)
Deprecated.
since 6.6. Please use
CMSItemFacade.createItem(java.util.Map) instead. |
AbstractRestrictionData |
RestrictionFacade.findRestrictionById(java.lang.String id)
Deprecated.
since 6.6. Please use
CMSItemFacade.findCMSItems(List)
instead. |
AbstractRestrictionData |
RestrictionFacade.updateRestriction(java.lang.String id,
AbstractRestrictionData restrictionData)
Deprecated.
since 6.6. Please use
CMSItemFacade.updateItem(String, java.util.Map)
instead. |
| Modifier and Type | Method and Description |
|---|---|
java.util.List<AbstractRestrictionData> |
RestrictionFacade.findAllRestrictions()
Deprecated.
since 6.6. Please use
CMSItemFacade instead. |
SearchResult<AbstractRestrictionData> |
RestrictionFacade.findRestrictionsByMask(java.lang.String mask,
NamedQueryData namedQuery)
Deprecated.
since 6.6. Please use
CMSItemFacade instead. |
SearchResult<AbstractRestrictionData> |
RestrictionFacade.findRestrictionsByNamedQuery(NamedQueryData namedQuery)
Deprecated.
since 6.6. Please use
CMSItemFacade instead. |
| Modifier and Type | Method and Description |
|---|---|
AbstractRestrictionData |
RestrictionFacade.createRestriction(AbstractRestrictionData restrictionData)
Deprecated.
since 6.6. Please use
CMSItemFacade.createItem(java.util.Map) instead. |
AbstractRestrictionData |
RestrictionFacade.updateRestriction(java.lang.String id,
AbstractRestrictionData restrictionData)
Deprecated.
since 6.6. Please use
CMSItemFacade.updateItem(String, java.util.Map)
instead. |
| Modifier and Type | Method and Description |
|---|---|
AbstractRestrictionData |
DefaultRestrictionFacade.createRestriction(AbstractRestrictionData restrictionData)
Deprecated.
|
AbstractRestrictionData |
DefaultRestrictionFacade.findRestrictionById(java.lang.String id)
Deprecated.
|
AbstractRestrictionData |
DefaultRestrictionFacade.updateRestriction(java.lang.String id,
AbstractRestrictionData restrictionData)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<AbstractRestrictionData> |
DefaultRestrictionFacade.findAllRestrictions()
Deprecated.
|
SearchResult<AbstractRestrictionData> |
DefaultRestrictionFacade.findRestrictionsByMask(java.lang.String mask,
NamedQueryData namedQueryData)
Deprecated.
|
SearchResult<AbstractRestrictionData> |
DefaultRestrictionFacade.findRestrictionsByNamedQuery(NamedQueryData namedQueryData)
Deprecated.
|
protected AbstractPopulatingConverter<AbstractRestrictionData,AbstractRestrictionModel> |
DefaultRestrictionFacade.getDataToModelConverter(java.lang.String typecode)
Deprecated.
Get data to model converter for a given typecode.
|
protected AbstractPopulatingConverter<AbstractRestrictionModel,AbstractRestrictionData> |
DefaultRestrictionFacade.getModelToDataConverter(java.lang.String typecode)
Deprecated.
Get model to data converter for a given typecode.
|
protected java.util.Comparator<AbstractRestrictionData> |
DefaultRestrictionFacade.getRestrictionComparator()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
protected UpdateRestrictionValidationDto |
DefaultRestrictionFacade.buildRestrictionValidationDto(java.lang.String originalUid,
AbstractRestrictionData restriction)
Deprecated.
Build a DTO for validating a restriction to be updated.
|
int |
DefaultRestrictionComparator.compare(AbstractRestrictionData restriction1,
AbstractRestrictionData restriction2)
Deprecated.
|
AbstractRestrictionData |
DefaultRestrictionFacade.createRestriction(AbstractRestrictionData restrictionData)
Deprecated.
|
protected void |
DefaultRestrictionFacade.generateRestrictionUid(AbstractRestrictionData restrictionData)
Deprecated.
|
AbstractRestrictionData |
DefaultRestrictionFacade.updateRestriction(java.lang.String id,
AbstractRestrictionData restrictionData)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultRestrictionFacade.setRestrictionComparator(java.util.Comparator<AbstractRestrictionData> restrictionComparator)
Deprecated.
since 6.6
|
| Modifier and Type | Method and Description |
|---|---|
void |
BasicRestrictionDataToModelPopulator.populate(AbstractRestrictionData source,
AbstractRestrictionModel target)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BasicRestrictionModelPopulator.populate(AbstractRestrictionModel source,
AbstractRestrictionData target)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
AbstractPopulatingConverter<AbstractRestrictionModel,AbstractRestrictionData> |
RestrictionModelToDataConverter.getConverter()
Deprecated.
Get the converter to be applied.
|
AbstractPopulatingConverter<AbstractRestrictionData,AbstractRestrictionModel> |
RestrictionDataToModelConverter.getConverter()
Deprecated.
Get the converter to be applied.
|
| Modifier and Type | Method and Description |
|---|---|
AbstractPopulatingConverter<AbstractRestrictionData,AbstractRestrictionModel> |
DefaultRestrictionDataToModelConverter.getConverter()
Deprecated.
|
AbstractPopulatingConverter<AbstractRestrictionModel,AbstractRestrictionData> |
DefaultRestrictionModelToDataConverter.getConverter()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultRestrictionDataToModelConverter.setConverter(AbstractPopulatingConverter<AbstractRestrictionData,AbstractRestrictionModel> converter)
Deprecated.
|
void |
DefaultRestrictionModelToDataConverter.setConverter(AbstractPopulatingConverter<AbstractRestrictionModel,AbstractRestrictionData> converter)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
protected java.util.function.Predicate<AbstractRestrictionData> |
UpdateRestrictionValidator.getHasRestrictionNameChangedPredicate()
Deprecated.
|
protected java.util.function.Predicate<AbstractRestrictionData> |
UpdateRestrictionValidator.getRestrictionNameExistsPredicate()
Deprecated.
|
protected java.util.function.Predicate<AbstractRestrictionData> |
CreateRestrictionValidator.getRestrictionNameExistsPredicate()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
void |
UpdateRestrictionValidator.setHasRestrictionNameChangedPredicate(java.util.function.Predicate<AbstractRestrictionData> hasRestrictionNameChangedPredicate)
Deprecated.
|
void |
UpdateRestrictionValidator.setRestrictionNameExistsPredicate(java.util.function.Predicate<AbstractRestrictionData> restrictionNameExistsPredicate)
Deprecated.
|
void |
CreateRestrictionValidator.setRestrictionNameExistsPredicate(java.util.function.Predicate<AbstractRestrictionData> restrictionNameExistsPredicate)
Deprecated.
|
Copyright © 2018 SAP SE. All Rights Reserved.