Package com.cumulocity.me.sdk.client.page

Examples of com.cumulocity.me.sdk.client.page.PagedCollectionResource


            ManagedObjectReferenceRepresentation childRef = anMoRefRepresentationLike(MO_REF_REPRESENTATION).withMo(child).build();
            parentMo.addChildDevice(childRef);
        }

        // When
        PagedCollectionResource refCollection = inventory.getManagedObject(parent.getId()).getChildDevices();

        // Then
        assertCollectionPaged(refCollection);

    }
View Full Code Here


            ManagedObjectReferenceRepresentation childRef = anMoRefRepresentationLike(MO_REF_REPRESENTATION).withMo(child).build();
            parentMo.addChildAssets(childRef);
        }

        // When
        PagedCollectionResource refCollection = inventory.getManagedObject(parent.getId()).getChildAssets();

        // Then
        assertCollectionPaged(refCollection);
    }
View Full Code Here

TOP

Related Classes of com.cumulocity.me.sdk.client.page.PagedCollectionResource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.