1 23 package com.sun.enterprise.repository; 24 25 30 public interface Configuration extends java.rmi.Remote { 31 36 public String getProperty(String key) throws java.rmi.RemoteException ; 37 38 43 public void setProperty(String key, String value) 44 throws java.rmi.RemoteException ; 45 46 50 public void removeProperty(String key) throws java.rmi.RemoteException ; 51 52 57 public Object getObject(String key) throws java.rmi.RemoteException ; 58 59 65 public void setObject(String key, Object obj) 66 throws java.rmi.RemoteException ; 67 68 72 public void removeObject(String key) throws java.rmi.RemoteException ; 73 74 75 82 public String [] getKeys(String index) throws java.rmi.RemoteException ; 83 } 84 85 | Popular Tags |