Package org.faktorips.runtime
Interface IRuntimeRepositoryLookup
-
- All Superinterfaces:
java.io.Serializable
public interface IRuntimeRepositoryLookup extends java.io.SerializableAIRuntimeRepositoryLookupis an interface for a class that is able to provide a runtime repository. It is used to serialize policy components especially theProductConfiguration.An implementation needs to be serializable hence this interface already implements the Serializable interface. After serializing and deserializing an object of this type the method
getRuntimeRepository()needs to return anIRuntimeRepositorywith the same content as before.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IRuntimeRepositorygetRuntimeRepository()Returns an instance ofIRuntimeRepositorythat is used to load the product component and generation of a serializedProductConfigurationafter deserialization.
-
-
-
Method Detail
-
getRuntimeRepository
IRuntimeRepository getRuntimeRepository()
Returns an instance ofIRuntimeRepositorythat is used to load the product component and generation of a serializedProductConfigurationafter deserialization.- Returns:
- A
IRuntimeRepositoryused to load product components and product component generations.
-
-