Project

General

Profile

Download (1.23 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2009 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

    
10
package eu.etaxonomy.cdm.model.reference;
11

    
12
import org.joda.time.DateTime;
13

    
14
/**
15
 * This interface represents electronic publications available on the world wide web.
16
 * <P>
17
 * This class corresponds, according to the TDWG ontology, to the publication type
18
 * term (from PublicationTypeTerm): "WebPage".
19
 */
20
public interface IWebPage extends IAuthoredPublicationBase {
21

    
22

    
23
	/**
24
	 * Returns this websites inReference (e.g. the underlying database).
25
	 * @return the inReference
26
	 */
27
	public Reference getInReference();
28

    
29

    
30
	/**
31
	 * Sets this websites inreference (e.g. the underlying database)
32
	 * @param inReference The inReference.
33
	 */
34
	public void setInReference(Reference inReference);
35

    
36
    /**
37
     * Date (and time) when a WebPage was accessed.
38
     * @return the accessed date
39
     */
40
	//#5258
41
    public DateTime getAccessed();
42

    
43
    /**
44
     * @param accessed
45
     * @see #getAccessed()
46
     */
47
    public void setAccessed(DateTime accessed);
48

    
49
}
(28-28/41)