All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.phasetwo.service.model.InvitationModel Maven / Gradle / Ivy

There is a newer version: 0.79
Show newest version
package io.phasetwo.service.model;

import java.util.Collection;
import java.util.Date;
import java.util.Set;
import org.keycloak.models.UserModel;

public interface InvitationModel extends WithAttributes {

  String getId();

  OrganizationModel getOrganization();

  String getEmail();

  void setEmail(String email);

  String getUrl();

  void setUrl(String url);

  UserModel getInviter();

  void setInviter(UserModel user);

  Date getCreatedAt();

  void setCreatedAt(Date date);

  Set getRoles();

  void setRoles(Collection roles);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy