blob: 596b4face84db8e3c294090d479c2476f166c7fa [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2015 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.orcs.rest.model.writer;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Donald G. Dunne
*/
@XmlRootElement
public class OrcsWriterToken {
private Long uuid;
private String name;
public Long getUuid() {
return uuid;
}
public void setUuid(Long uuid) {
this.uuid = uuid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}