All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nakedobjects.metamodel.specloader.internal.cache.SpecificationCache Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.specloader.internal.cache;

import org.nakedobjects.metamodel.commons.component.ApplicationScopedComponent;
import org.nakedobjects.metamodel.commons.component.SessionScopedComponent;
import org.nakedobjects.metamodel.spec.NakedObjectSpecification;
import org.nakedobjects.metamodel.specloader.NakedObjectReflectorAbstract;


/**
 * This is not API.
 * 
 * 

* In an earlier version it was possible to inject the {@link SpecificationCache} into the * {@link NakedObjectReflectorAbstract reflector}. This was needed when the reflector was * original (what is now called) {@link SessionScopedComponent session scoped}, rather than * {@link ApplicationScopedComponent application-scoped}. * *

* This interface has been left in for now, but will likely be removed. */ public interface SpecificationCache { /** * Returns the {@link NakedObjectSpecification}, or possibly null if has not * been cached. */ NakedObjectSpecification get(String className); NakedObjectSpecification[] allSpecifications(); void cache(String className, NakedObjectSpecification spec); void clear(); } // Copyright (c) Naked Objects Group Ltd.





© 2015 - 2024 Weber Informatics LLC | Privacy Policy