1 21 22 package org.apache.derby.iapi.services.property; 23 24 import java.util.Properties ; 25 26 import java.io.Serializable ; 27 28 import org.apache.derby.iapi.error.StandardException; 29 30 public interface PersistentSet 31 { 32 57 public Serializable getProperty( 58 String key) 59 throws StandardException; 60 61 85 public Serializable getPropertyDefault( 86 String key) 87 throws StandardException; 88 89 90 97 public boolean propertyDefaultIsVisible(String key) throws StandardException; 98 99 116 public void setProperty( 117 String key, 118 Serializable value, 119 boolean dbOnlyProperty) 120 throws StandardException; 121 122 140 public void setPropertyDefault( 141 String key, 142 Serializable value) 143 throws StandardException; 144 145 160 public Properties getProperties() 161 throws StandardException; 162 } 163 | Popular Tags |