/** * Licensed to Apereo under one or more contributor license * agreements. See the NOTICE file distributed with this work * for additional information regarding copyright ownership. * Apereo licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a * copy of the License at the following location: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /** * @author Brad Leege <leege@doit.wisc.edu> * Created on 4/24/13 at 3:02 PM */ package org.jasig.portlet.blackboardvcportlet.mvc.sessionmngr.forms; import java.io.Serializable; import javax.validation.constraints.NotNull; import org.hibernate.validator.constraints.Email; import org.hibernate.validator.constraints.Length; public class AddParticipantForm implements Serializable { private static final long serialVersionUID = 1L; @NotNull private long sessionId; private String uniqueId; @Length(min = 1) private String name; @Length(min = 1) @Email private String email; @NotNull private boolean moderator; public long getSessionId() { return sessionId; } public void setSessionId(long sessionId) { this.sessionId = sessionId; } public String getUniqueId() { return uniqueId; } public void setUniqueId(String uniqueId) { this.uniqueId = uniqueId; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } public boolean isModerator() { return moderator; } public void setModerator(boolean moderator) { this.moderator = moderator; } @Override public String toString() { return "AddParticipantForm [sessionId=" + sessionId + ", uniqueId=" + uniqueId + ", name=" + name + ", email=" + email + ", moderator=" + moderator + "]"; } }