com.dell.cpsd.identity.service.api.client.IdentifyElementsCriteria 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 com.dell.cpsd.identity.service.api.ElementIdentity;
import java.util.List;
/**
*
* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved.
*
*
* @since 1.0
*/
public class IdentifyElementsCriteria
{
private final List elementIdentities;
public IdentifyElementsCriteria(List elementIdentities)
{
this.elementIdentities = elementIdentities;
}
public List getElementIdentities()
{
return elementIdentities;
}
}