KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > webforwards > AbstractWebForward


1 /*
2  * SSL-Explorer
3  *
4  * Copyright (C) 2003-2006 3SP LTD. All Rights Reserved
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2 of
9  * the License, or (at your option) any later version.
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
16  * License along with this program; if not, write to the Free Software
17  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */

19             
20 package com.sslexplorer.webforwards;
21
22 import java.util.Calendar JavaDoc;
23
24 import com.sslexplorer.policyframework.AbstractResource;
25
26 /**
27  *
28  */

29 public abstract class AbstractWebForward extends AbstractResource implements WebForward {
30
31     private int type;
32     private String JavaDoc destinationURL;
33     private String JavaDoc category;
34
35     public AbstractWebForward(int realmID, int id, int type, String JavaDoc destinationURL, String JavaDoc shortName, String JavaDoc description, String JavaDoc category,
36                               Calendar JavaDoc dateCreated, Calendar JavaDoc dateAmended) {
37         super(realmID, WebForwardPlugin.WEBFORWARD_RESOURCE_TYPE, id, shortName, description, dateCreated,
38                         dateAmended);
39         this.type = type;
40         this.destinationURL = destinationURL;
41         this.category = category;
42     }
43
44     public String JavaDoc getCategory() {
45         return category;
46     }
47
48     public void setCategory(String JavaDoc category) {
49         this.category = category;
50     }
51
52     public String JavaDoc getDestinationURL() {
53         return destinationURL;
54     }
55
56     public void setDestinationURL(String JavaDoc destinationURL) {
57         this.destinationURL = destinationURL;
58     }
59
60     public int getType() {
61         return type;
62     }
63
64     public void setType(int type) {
65         this.type = type;
66     }
67     
68     public boolean paramsRequirePassword() {
69         if (destinationURL.contains("${session:password}")){
70             return true;
71         }
72         else{
73             return false;
74         }
75     }
76
77 }
78
Popular Tags