blob: 7c104d4d996c127a7efa8afec52d4f635b48ba0a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 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.rest.model;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Roberto E. Escobar
*/
@XmlRootElement
public class OTEConfigurationIdentity {
private String uuid;
private String name;
public String getUuid() {
return uuid;
}
public void setUuid(String uuid) {
this.uuid = uuid;
}
public void setName(String name) {
this.name = name;
}
public String getName() {
return name;
}
}