1 package com.sslexplorer.security; 2 3 public class UserDatabaseDefinition { 4 5 private Class userDatabaseClass; 6 private int installationCategory; 7 private String name, messageResourcesKey; 8 9 public UserDatabaseDefinition(Class udbClass, String name, String 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 getUserDatabaseClass() { 21 return userDatabaseClass; 22 } 23 24 public String getMessageResourcesKey() { 25 return messageResourcesKey; 26 } 27 28 public String getName() { 29 return name; 30 } 31 32 } 33 | Popular Tags |