blob: 2f40a7efe3f725ab48ac8c91988952b9ccc266e4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 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.define.report.api;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Angel Avila
*/
@XmlRootElement
public class DataRight {
private DataRightId id;
private String content;
public DataRightId getId() {
return id;
}
public void setId(DataRightId id) {
this.id = id;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
}