com.coveo.pushapiclient.IdentityModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of push-api-client.java Show documentation
Show all versions of push-api-client.java Show documentation
Coveo Push API client. See more on https://github.com/coveo/push-api-client.java
The newest version!
package com.coveo.pushapiclient;
import java.util.Map;
public class IdentityModel {
public final Map additionalInfo;
public final String name;
public final SecurityIdentityType type;
public IdentityModel(String name, SecurityIdentityType type, Map additionalInfo) {
this.name = name;
this.type = type;
this.additionalInfo = additionalInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy