mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Fix ALF-2299: CMOS AtomPub binding - Property definition does not map Alfresco content model defined MINMAX constraints
- MINMAX constraint now mapped to minValue and maxValue in CMIS property definition git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19706 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -126,12 +126,26 @@ public interface CMISPropertyDefinition
|
||||
public boolean isOrderable();
|
||||
|
||||
/**
|
||||
* For variable length properties, get the maximum length allowed. Unsupported.
|
||||
* For variable length properties, get the maximum length allowed.
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public int getMaximumLength();
|
||||
|
||||
/**
|
||||
* For Integer and Decimal properties, get the minimum value allowed
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Double getMinValue();
|
||||
|
||||
/**
|
||||
* For Integer and Decimal properties, get the maximum value allowed
|
||||
*
|
||||
* @return
|
||||
*/
|
||||
public Double getMaxValue();
|
||||
|
||||
/**
|
||||
* Gets the property accessor (for reading / writing values)
|
||||
*
|
||||
|
Reference in New Issue
Block a user