01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. The ASF licenses this file to You
04: * under the Apache License, Version 2.0 (the "License"); you may not
05: * use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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 referrerUrl = null;
34: private String requestUrl = null;
35: private String weblogHandle = null;
36: private String weblogAnchor = null;
37: private String weblogDateString = null;
38:
39: public IncomingReferrer() {
40: }
41:
42: public String getReferrerUrl() {
43: return referrerUrl;
44: }
45:
46: public void setReferrerUrl(String referrerUrl) {
47: this .referrerUrl = referrerUrl;
48: }
49:
50: public String getRequestUrl() {
51: return requestUrl;
52: }
53:
54: public void setRequestUrl(String requestUrl) {
55: this .requestUrl = requestUrl;
56: }
57:
58: public String getWeblogHandle() {
59: return weblogHandle;
60: }
61:
62: public void setWeblogHandle(String weblogHandle) {
63: this .weblogHandle = weblogHandle;
64: }
65:
66: public String getWeblogAnchor() {
67: return weblogAnchor;
68: }
69:
70: public void setWeblogAnchor(String weblogAnchor) {
71: this .weblogAnchor = weblogAnchor;
72: }
73:
74: public String getWeblogDateString() {
75: return weblogDateString;
76: }
77:
78: public void setWeblogDateString(String weblogDateString) {
79: this.weblogDateString = weblogDateString;
80: }
81:
82: }
|