KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sslexplorer > security > UserDatabaseDefinition


1 package com.sslexplorer.security;
2
3 public class UserDatabaseDefinition {
4     
5     private Class JavaDoc userDatabaseClass;
6     private int installationCategory;
7     private String JavaDoc name, messageResourcesKey;
8     
9     public UserDatabaseDefinition(Class JavaDoc udbClass, String JavaDoc name, String JavaDoc messageResourcesKey, int installationCategory) {
10         this.userDatabaseClass = udbClass;
11         this.installationCategory = installationCategory;
12         this.name = name;
13         this.messageResourcesKey = messageResourcesKey;
14     }
15
16     public int getInstallationCategory() {
17         return installationCategory;
18     }
19
20     public Class JavaDoc getUserDatabaseClass() {
21         return userDatabaseClass;
22     }
23     
24     public String JavaDoc getMessageResourcesKey() {
25         return messageResourcesKey;
26     }
27
28     public String JavaDoc getName() {
29         return name;
30     }
31
32 }
33
Popular Tags