1 23 24 package org.infoglue.deliver.applications.databeans; 25 26 import org.exolab.castor.jdo.Database; 27 28 33 34 public class DatabaseWrapper 35 { 36 private Database database = null; 37 38 public DatabaseWrapper(Database database) 39 { 40 this.database = database; 41 } 42 43 public Database getDatabase() 44 { 45 return database; 46 } 47 48 public void setDatabase(Database database) 49 { 50 this.database = database; 51 } 52 } 53 | Popular Tags |