![JAR search and dependency download from the Maven repository](/logo.png)
io.rtr.alchemy.dto.identities.Identities Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alchemy-api Show documentation
Show all versions of alchemy-api Show documentation
Representations for Alchemy Service
The newest version!
package io.rtr.alchemy.dto.identities;
import java.util.ArrayList;
import java.util.Collections;
/** We need this class to deal with Jackson List serialization issues due to type-erasure */
public class Identities extends ArrayList {
private static final long serialVersionUID = 8406201398658647047L;
public static Identities of(IdentityDto... requests) {
final Identities result = new Identities();
Collections.addAll(result, requests);
return result;
}
public static Identities empty() {
return new Identities();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy