org.apache.xbean.naming.reference.CachingReference Maven / Gradle / Ivy
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.xbean.naming.reference;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.naming.NamingException;
import javax.naming.Reference;
import javax.naming.Context;
import org.apache.xbean.naming.context.ContextUtil;
/**
* @version $Rev: 355877 $ $Date: 2005-12-10 18:48:27 -0800 (Sat, 10 Dec 2005) $
*/
public class CachingReference extends SimpleReference {
public static Object wrapReference(String fullName, Object value, Context context) {
if (value instanceof Reference && !(value instanceof CachingReference)) {
return new CachingReference(fullName, (Reference)value, context);
}
return value;
}
public static Map wrapReferences(Map bindings, Context context) {
LinkedHashMap newBindings = new LinkedHashMap(bindings);
for (Map.Entry entry : bindings.entrySet()) {
String name = entry.getKey();
Object value = entry.getValue();
if (value instanceof Reference && !(value instanceof CachingReference)) {
newBindings.put(name, new CachingReference(name, (Reference) value, context));
}
}
return newBindings;
}
private final Object lock = new Object();
private final String stringName;
private final Context context;
private final Reference reference;
private final String className;
private Object value;
public CachingReference(String fullName, Reference reference, Context context) {
this.stringName = fullName;
this.reference = reference;
className = reference.getClassName();
this.context = context;
}
public Object getContent() throws NamingException {
synchronized(lock) {
if (value == null) {
value = ContextUtil.resolve(reference, stringName, null, context);
}
return value;
}
}
public String getClassName() {
return className;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy