dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #42169
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 21537: rename ou.parents => ou.ancestors in web-api
------------------------------------------------------------
revno: 21537
committer: Morten Olav Hansen <mortenoh@xxxxxxxxx>
branch nick: dhis2
timestamp: Mon 2015-12-28 16:37:23 +0100
message:
rename ou.parents => ou.ancestors in web-api
modified:
dhis-2/dhis-api/src/main/java/org/hisp/dhis/organisationunit/OrganisationUnit.java
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-api/src/main/java/org/hisp/dhis/organisationunit/OrganisationUnit.java'
--- dhis-2/dhis-api/src/main/java/org/hisp/dhis/organisationunit/OrganisationUnit.java 2015-12-14 16:33:02 +0000
+++ dhis-2/dhis-api/src/main/java/org/hisp/dhis/organisationunit/OrganisationUnit.java 2015-12-28 15:37:23 +0000
@@ -576,10 +576,10 @@
* Returns the list of ancestor organisation units for this organisation unit.
* Does not include itself. The list is ordered by root first.
*/
- @JsonProperty( "parents" )
+ @JsonProperty( "ancestors" )
@JsonSerialize( contentAs = BaseIdentifiableObject.class )
@JsonView( { DetailedView.class } )
- @JacksonXmlElementWrapper( localName = "parents", namespace = DxfNamespaces.DXF_2_0 )
+ @JacksonXmlElementWrapper( localName = "ancestors", namespace = DxfNamespaces.DXF_2_0 )
@JacksonXmlProperty( localName = "organisationUnit", namespace = DxfNamespaces.DXF_2_0 )
public List<OrganisationUnit> getAncestors()
{