Package com.cumulocity.rest.representation.operation

Examples of com.cumulocity.rest.representation.operation.OperationCollectionRepresentation


    @Before
    public void setup() throws Exception {
        MockitoAnnotations.initMocks(this);

        OperationCollectionRepresentation ocr = new OperationCollectionRepresentation();
        ocr.setSelf(DEVICE_CONTROL_COLLECTION_URL);
        List<OperationRepresentation> opList = new LinkedList<OperationRepresentation>();
        ocr.setOperations(opList);
        deviceControlApiRepresentation.setOperations(ocr);

        deviceControlApi = new DeviceControlApiImpl(null, restConnector, urlProcessor, deviceControlApiRepresentation, DEAFAULT_PAGE_SIZE);
    }
View Full Code Here

TOP

Related Classes of com.cumulocity.rest.representation.operation.OperationCollectionRepresentation

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.