![JAR search and dependency download from the Maven repository](/logo.png)
com.dell.cpsd.hdp.capability.registry.client.callback.LookupCapabilityRegistryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hdp-capability-registry-client Show documentation
Show all versions of hdp-capability-registry-client Show documentation
This repository contains the source code for the capability registry API.
This API exposes the interface through which a consumer or provider interacts with the capability registry.
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.hdp.capability.registry.client.callback;
import java.util.List;
import com.dell.cpsd.hdp.capability.registry.api.QueryResult;
import com.dell.cpsd.service.common.client.callback.ServiceResponse;
/**
* This contains the response to a lookup of the capability registry.
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*
*
* @since 1.0
*/
public class LookupCapabilityRegistryResponse extends ServiceResponse>
{
/**
* LookupCapabilityRegistryResponse constructor
*
* @param requestId
* The request identifier.
* @param response
* The reponse data.
*
* @since 1.0
*/
public LookupCapabilityRegistryResponse(final String requestId, final List response)
{
super(requestId, response, "");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy