001    package biz.hammurapi.properties;
002    
003    public class PersistentPropertySetFilter extends PropertySetFilter implements PersistentPropertySet {
004    
005            public PersistentPropertySetFilter(PersistentPropertySet master) {
006                    super(master);
007            }
008    
009            public void delete() throws PropertySetException {
010                    ((PersistentPropertySet) master).delete();              
011            }
012    
013            public void store() throws PropertySetException {
014                    ((PersistentPropertySet) master).store();               
015            }
016            
017            
018    
019    }