KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > roller > business > referrers > IncomingReferrer


1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. The ASF licenses this file to You
4 * under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License. For additional information regarding
15 * copyright in this work, please see the NOTICE file in the top level
16 * directory of this distribution.
17 */

18 /*
19  * IncomingReferrer.java
20  *
21  * Created on December 20, 2005, 3:39 PM
22  */

23
24 package org.apache.roller.business.referrers;
25
26 /**
27  * Represents an incoming (unprocessed) referrer.
28  *
29  * @author Allen Gilliland
30  */

31 public class IncomingReferrer {
32     
33     private String JavaDoc referrerUrl = null;
34     private String JavaDoc requestUrl = null;
35     private String JavaDoc weblogHandle = null;
36     private String JavaDoc weblogAnchor = null;
37     private String JavaDoc weblogDateString = null;
38     
39     
40     public IncomingReferrer() {}
41
42     public String JavaDoc getReferrerUrl() {
43         return referrerUrl;
44     }
45
46     public void setReferrerUrl(String JavaDoc referrerUrl) {
47         this.referrerUrl = referrerUrl;
48     }
49
50     public String JavaDoc getRequestUrl() {
51         return requestUrl;
52     }
53
54     public void setRequestUrl(String JavaDoc requestUrl) {
55         this.requestUrl = requestUrl;
56     }
57
58     public String JavaDoc getWeblogHandle() {
59         return weblogHandle;
60     }
61
62     public void setWeblogHandle(String JavaDoc weblogHandle) {
63         this.weblogHandle = weblogHandle;
64     }
65
66     public String JavaDoc getWeblogAnchor() {
67         return weblogAnchor;
68     }
69
70     public void setWeblogAnchor(String JavaDoc weblogAnchor) {
71         this.weblogAnchor = weblogAnchor;
72     }
73
74     public String JavaDoc getWeblogDateString() {
75         return weblogDateString;
76     }
77
78     public void setWeblogDateString(String JavaDoc weblogDateString) {
79         this.weblogDateString = weblogDateString;
80     }
81     
82 }
83
Popular Tags