com.dell.cpsd.identity.service.api.client.DescribeElementsCriteria Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of identity-service-api Show documentation
Show all versions of identity-service-api Show documentation
This repository creates a UUID for any managed element.
The newest version!
/**
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
* Dell EMC Confidential/Proprietary Information
*/
package com.dell.cpsd.identity.service.api.client;
import java.util.List;
/**
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
*
*
* @since 1.0
*/
public class DescribeElementsCriteria
{
private final List elementUuids;
public DescribeElementsCriteria(List elementUuids)
{
this.elementUuids = elementUuids;
}
public List getElementUuid()
{
return elementUuids;
}
}