1   /*
2    * Confluence BibSonomy plugin
3    * Copyright (C) 2007 Christian Schenk
4    *
5    * This program is free software; you can redistribute it and/or
6    * modify it under the terms of the GNU General Public License
7    * as published by the Free Software Foundation; either version 2
8    * of the License, or (at your option) any later version.
9    * 
10   * This program is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   * GNU General Public License for more details.
14   * 
15   * You should have received a copy of the GNU General Public License
16   * along with this program; if not, write to the Free Software
17   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
18   */
19  package org.christianschenk.confluence.plugin.bibsonomy.model;
20  
21  public class BibTex extends Resource {
22  
23  	private String bibtexKey;
24  	private String author;
25  	private String editor;
26  	private String year;
27  	private String booktitle;
28  	private String entrytype;
29  	private String crossref;
30  	private String pages;
31  	private String privnote;
32  	private String misc;
33  
34  	public String getBibtexKey() {
35  		return this.bibtexKey;
36  	}
37  
38  	public void setBibtexKey(String bibtexKey) {
39  		this.bibtexKey = bibtexKey;
40  	}
41  
42  	public String getAuthor() {
43  		return this.author;
44  	}
45  
46  	public void setAuthor(String author) {
47  		this.author = author;
48  	}
49  
50  	public String getEditor() {
51  		return this.editor;
52  	}
53  
54  	public void setEditor(String editor) {
55  		this.editor = editor;
56  	}
57  
58  	public String getYear() {
59  		return this.year;
60  	}
61  
62  	public void setYear(String year) {
63  		this.year = year;
64  	}
65  
66  	public String getBooktitle() {
67  		return this.booktitle;
68  	}
69  
70  	public void setBooktitle(String booktitle) {
71  		this.booktitle = booktitle;
72  	}
73  
74  	public String getEntrytype() {
75  		return this.entrytype;
76  	}
77  
78  	public void setEntrytype(String entrytype) {
79  		this.entrytype = entrytype;
80  	}
81  
82  	public String getCrossref() {
83  		return this.crossref;
84  	}
85  
86  	public void setCrossref(String crossref) {
87  		this.crossref = crossref;
88  	}
89  
90  	public String getPages() {
91  		return this.pages;
92  	}
93  
94  	public void setPages(String pages) {
95  		this.pages = pages;
96  	}
97  
98  	public String getPrivnote() {
99  		return this.privnote;
100 	}
101 
102 	public void setPrivnote(String privnote) {
103 		this.privnote = privnote;
104 	}
105 
106 	public String getMisc() {
107 		return this.misc;
108 	}
109 
110 	public void setMisc(String misc) {
111 		this.misc = misc;
112 	}
113 }