| File | Line | 
|---|
| org/apache/geronimo/connector/deployment/dconfigbean/AdminObjectInstance.java | 60 | 
| org/apache/geronimo/connector/deployment/dconfigbean/ConnectionDefinitionInstance.java | 58 | 
                getConnectiondefinitionInstance().removeConfigPropertySetting(j);
            }
            public ConfigPropertySettings[] getConfigPropertySettings() {
                return configs;
            }
            public void setConfigPropertySettings(ConfigPropertySettings[] configs) {
                setConfigProperty(configs);
            }
        }, "config-property", "config-property-name");
    }
    boolean hasParent() {
        return parent != null;
    }
    void dispose() {
        if (configs != null) {
            for (int i = 0; i < configs.length; i++) {
                configs[i].dispose();
            }
        }
        if (parent != null) {
            parent.getDDBean().removeXpathListener("config-property", configListener);
        }
        configs = null;
        configListener = null;
        parent = null;
    } |