(no commit message)
[cdmlib.git] / cdmlib-remote / src / main / java / eu / etaxonomy / cdm / remote / dto / IReferenceSTO.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9 package eu.etaxonomy.cdm.remote.dto;
10
11 import java.util.Set;
12 import java.util.UUID;
13
14 public interface IReferenceSTO extends IBaseSTO{
15
16 public abstract String getAuthorship();
17
18 public abstract void setAuthorship(String authorship);
19
20 public abstract String getFullCitation();
21
22 public abstract void setFullCitation(String fullCitation);
23
24 public abstract Set<MediaSTO> getMedia();
25
26 public abstract void addMedia(MediaSTO media);
27
28 }