org.cloudfoundry.identity.uaa.invitations.InvitationsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudfoundry-identity-model
Show all versions of cloudfoundry-identity-model
Cloud Foundry User Account and Authentication (UAA) Server
package org.cloudfoundry.identity.uaa.invitations;
/**
* Created by pivotal on 9/21/15.
*/
public class InvitationsRequest {
private String[] emails;
public InvitationsRequest() {}
public InvitationsRequest(String[] emails) {
this.setEmails((emails));
}
public String[] getEmails() {
return emails;
}
public void setEmails(String[] emails) {
this.emails = emails;
}
}