blob: 656a2beb7fc0e38d3efd33da7a98e14c96c87682 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.core.framework.saxparse.elements;
/**
* @author Andrew M. Finkbeiner
*/
public class UserData {
private final String email;
private final String id;
private final String name;
UserData(String email, String id, String name) {
this.email = email;
this.id = id;
this.name = name;
}
/**
* @return the email
*/
public String getEmail() {
return email;
}
/**
* @return the id
*/
public String getId() {
return id;
}
/**
* @return the name
*/
public String getName() {
return name;
}
}