Uses of Interface
org.compass.core.marshall.MarshallingContext

Packages that use MarshallingContext
org.compass.core.converter   
org.compass.core.converter.basic   
org.compass.core.converter.basic.atomic   
org.compass.core.converter.dynamic   
org.compass.core.converter.extended   
org.compass.core.converter.json   
org.compass.core.converter.mapping   
org.compass.core.converter.mapping.json   
org.compass.core.converter.mapping.osem   
org.compass.core.converter.mapping.rsem   
org.compass.core.converter.mapping.support   
org.compass.core.converter.mapping.xsem   
org.compass.core.converter.xsem   
org.compass.core.impl   
org.compass.core.marshall   
org.compass.core.spi   
 

Uses of MarshallingContext in org.compass.core.converter
 

Methods in org.compass.core.converter with parameters of type MarshallingContext
 boolean Converter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
          Marshall the given Object to the given Resource.
 Object Converter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
          Unmarshall the given Resource to the appropiate Object.
 

Uses of MarshallingContext in org.compass.core.converter.basic
 

Methods in org.compass.core.converter.basic with parameters of type MarshallingContext
protected  Property AbstractBasicConverter.createProperty(String value, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Creates a new property to be added to the resource during the marshalling process.
protected  String AbstractNumberConverter.defaultToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object URLConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object URIConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object StringConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object StringBuilderConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object StringBufferConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object EnumConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object DateConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Try all the configured formatters to format the str into an Object.
protected  Object CharConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object CalendarConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object ByteConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object BooleanConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object AbstractNumberConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected abstract  Object AbstractBasicConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Override the from String in order to un-marshall the String back into its object representation.
protected  void AbstractBasicConverter.doSetBoost(Property property, Object root, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          A simple extension point that allows to set the boost value for the created Property.
protected  String EnumConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  String DateConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Uses the first configured formatter (also known as the default one) to convert it to String.
protected  String CalendarConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  String AbstractNumberConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  String AbstractBasicConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Allows to override to toString operation.
protected  Object AbstractBasicConverter.fromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Performs null checks (by calling AbstractBasicConverter.isNullValue(String, org.compass.core.mapping.ResourcePropertyMapping, org.compass.core.marshall.MarshallingContext)) and then calls AbstractBasicConverter.doFromString(String, org.compass.core.mapping.ResourcePropertyMapping, org.compass.core.marshall.MarshallingContext) if the value is not null.
protected  String AbstractBasicConverter.getNullValue(ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          If the converter handle nulls, the value that will be stored in the search engine for null values (during the marshall process).
protected  boolean AbstractBasicConverter.handleNulls(ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Should the converter handle nulls?
protected  boolean AbstractBasicConverter.isNullValue(String value, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Does this value represents a null value.
 boolean AbstractBasicConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
protected  String AbstractBasicConverter.toString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Implementation handle nulls and if the object is not null, delegates to AbstractBasicConverter.doToString(Object,org.compass.core.mapping.ResourcePropertyMapping,org.compass.core.marshall.MarshallingContext).
 Object AbstractBasicConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.basic.atomic
 

Methods in org.compass.core.converter.basic.atomic with parameters of type MarshallingContext
protected  Object AtomicBooleanConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.dynamic
 

Methods in org.compass.core.converter.dynamic with parameters of type MarshallingContext
protected  void AbstractDynamicConverter.addProperty(Object value, ResourcePropertyMapping resourcePropertyMapping, Object root, MarshallingContext context, Resource resource)
           
protected  Object AbstractDynamicConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Does nothing since there is no meaning for un-marshalling for dynamic converters
 boolean AbstractDynamicConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 Object AbstractDynamicConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
          Does nothing since there is no meaning for un-marshalling for dynamic converters
 

Uses of MarshallingContext in org.compass.core.converter.extended
 

Methods in org.compass.core.converter.extended with parameters of type MarshallingContext
protected  Property LocaleConverter.createProperty(String value, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object SqlTimestampConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object SqlTimeConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object SqlDateConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object LocaleConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  Object FileConverter.doFromString(String str, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  String SqlTimestampConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  String SqlTimeConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  String SqlDateConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  String FileConverter.doToString(Object o, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
protected  boolean PrimitiveByteArrayConverter.handleNulls(MarshallingContext context)
          Should the converter handle nulls?
protected  boolean ObjectByteArrayConverter.handleNulls(MarshallingContext context)
          Should the converter handle nulls?
 boolean ReaderConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean PrimitiveByteArrayConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean ObjectByteArrayConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean InputStreamConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 Object ReaderConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object PrimitiveByteArrayConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object ObjectByteArrayConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object InputStreamConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.json
 

Methods in org.compass.core.converter.json with parameters of type MarshallingContext
protected  void SimpleJsonValueConverter.doSetBoost(Property property, Object root, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          A simple extension point that allows to set the boost value for the created Property.
protected  String SimpleJsonValueConverter.getNullValue(ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          If the converter handle nulls, the value that will be stored in the search engine for null values (during the marshall process).
protected  boolean SimpleJsonValueConverter.handleNulls(ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Should the converter handle nulls?
 boolean SimpleJsonValueConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
          Marshals the given object value into a Property which is added to the provided Resource.
protected  String SimpleJsonValueConverter.toString(Object value, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Converst a value to a String.
protected  String ResourcePropertyJsonValueConverter.toString(Object value, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
           
 Object SimpleJsonValueConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
          Not supported operation.
 

Uses of MarshallingContext in org.compass.core.converter.mapping
 

Methods in org.compass.core.converter.mapping with parameters of type MarshallingContext
 boolean ResourceMappingConverter.marshallIds(Resource idResource, Object id, ResourceMapping resourceMapping, MarshallingContext context)
          Marshalls teh given Object id into the given resource.
 Object[] ResourceMappingConverter.unmarshallIds(Object id, ResourceMapping resourceMapping, MarshallingContext context)
          Unamrshalls the given id into its id properties values.
 

Uses of MarshallingContext in org.compass.core.converter.mapping.json
 

Methods in org.compass.core.converter.mapping.json with parameters of type MarshallingContext
protected  boolean AbstractDynamicJsonMappingConverter.doConvertDynamicValue(Resource resource, String name, Object value, MarshallingContext context)
           
protected  boolean AbstractJsonObjectMappingConverter.doMarshall(Resource resource, JsonObject jsonObject, JsonObjectMapping mapping, MarshallingContext context)
           
protected  boolean JsonContentMappingConverter.handleNulls(MarshallingContext context)
          Should the converter handle nulls?
protected  boolean JsonContentMappingConverter.isNullValue(MarshallingContext context, String value)
          Is the value read from the search engine is a null value during the unmarshall process.
 boolean RootJsonObjectMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean PlainJsonObjectMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean JsonPropertyMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean JsonIdMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean JsonContentMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean JsonArrayMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean RootJsonObjectMappingConverter.marshallIds(Resource idResource, Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
 Object RootJsonObjectMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object PlainJsonObjectMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object JsonPropertyMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object JsonContentMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object JsonArrayMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object[] RootJsonObjectMappingConverter.unmarshallIds(Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.mapping.osem
 

Methods in org.compass.core.converter.mapping.osem with parameters of type MarshallingContext
protected  void CollectionMappingConverter.addValue(Object col, int index, Object value, AbstractCollectionMapping mapping, MarshallingContext context)
           
protected  void ArrayMappingConverter.addValue(Object col, int index, Object value, AbstractCollectionMapping mapping, MarshallingContext context)
           
protected abstract  void AbstractCollectionMappingConverter.addValue(Object col, int index, Object value, AbstractCollectionMapping mapping, MarshallingContext context)
           
protected  Object ClassMappingConverter.constructObjectForUnmarshalling(ClassMapping classMapping, Resource resource, MarshallingContext context)
          Constructs the object used for unmarshalling (no properties are set/unmarshalled) on it.
protected  Object CollectionMappingConverter.createColObject(Getter getter, AbstractCollectionMapping.CollectionType collectionType, int size, AbstractCollectionMapping mapping, MarshallingContext context)
           
protected  Object ArrayMappingConverter.createColObject(Getter getter, AbstractCollectionMapping.CollectionType collectionType, int size, AbstractCollectionMapping mapping, MarshallingContext context)
           
protected abstract  Object AbstractCollectionMappingConverter.createColObject(Getter getter, AbstractCollectionMapping.CollectionType collectionType, int size, AbstractCollectionMapping mapping, MarshallingContext context)
           
protected  boolean ClassMappingConverter.doMarshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
protected  boolean ReferenceMappingConverter.doMarshall(Resource resource, Object root, RefAliasObjectMapping hasRefAliasMapping, ClassMapping refMapping, MarshallingContext context)
           
protected  boolean ComponentMappingConverter.doMarshall(Resource resource, Object root, RefAliasObjectMapping hasRefAliasMapping, ClassMapping refMapping, MarshallingContext context)
           
protected abstract  boolean AbstractRefAliasMappingConverter.doMarshall(Resource resource, Object root, RefAliasObjectMapping hasRefAliasMapping, ClassMapping refMapping, MarshallingContext context)
           
protected  void ClassMappingConverter.doSetBoost(Resource resource, Object root, ClassMapping classMapping, MarshallingContext context)
          A simple extension point that allows to set the boost value for the created Resource.
protected  Object ReferenceMappingConverter.doUnmarshall(Resource resource, RefAliasObjectMapping hasRefAliasMapping, ClassMapping refMapping, MarshallingContext context)
           
protected  Object ComponentMappingConverter.doUnmarshall(Resource resource, RefAliasObjectMapping hasRefAliasMapping, ClassMapping refMapping, MarshallingContext context)
           
protected abstract  Object AbstractRefAliasMappingConverter.doUnmarshall(Resource resource, RefAliasObjectMapping hasRefAliasMapping, ClassMapping refMapping, MarshallingContext context)
           
 boolean PlainCascadeMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean ParentMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean ConstantMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean ClassPropertyMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean ClassMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean AbstractRefAliasMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean AbstractCollectionMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean ClassMappingConverter.marshallIds(Resource idResource, Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
protected  int CollectionMappingConverter.marshallIterateData(Object root, AbstractCollectionMapping colMapping, Resource resource, MarshallingContext context)
           
protected  int ArrayMappingConverter.marshallIterateData(Object root, AbstractCollectionMapping colMapping, Resource resource, MarshallingContext context)
           
protected abstract  int AbstractCollectionMappingConverter.marshallIterateData(Object root, AbstractCollectionMapping colMapping, Resource resource, MarshallingContext context)
          Marhall the data, returning the number of elements that were actually stored in the index (and can later be read).
protected  void ClassMappingConverter.storeEnumName(Resource resource, Object root, ClassMapping classMapping, MarshallingContext context)
          Stores the Enum.name() in order to construct it afterwards.
protected  void ClassMappingConverter.storePolyClass(Resource resource, Object root, ClassMapping classMapping, MarshallingContext context)
          Stores the poly class name callback.
 Object PlainCascadeMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object ParentMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object ConstantMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object ClassPropertyMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object ClassMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object AbstractRefAliasMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object AbstractCollectionMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object[] ClassMappingConverter.unmarshallIds(Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.mapping.rsem
 

Methods in org.compass.core.converter.mapping.rsem with parameters of type MarshallingContext
 boolean RawResourceMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean RawResourceMappingConverter.marshallIds(Resource idResource, Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
 Object RawResourceMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object[] RawResourceMappingConverter.unmarshallIds(Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.mapping.support
 

Methods in org.compass.core.converter.mapping.support with parameters of type MarshallingContext
 boolean FormatDelegateConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 Object FormatDelegateConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.mapping.xsem
 

Methods in org.compass.core.converter.mapping.xsem with parameters of type MarshallingContext
protected  boolean XmlContentMappingConverter.handleNulls(MarshallingContext context)
          Should the converter handle nulls?
protected  boolean XmlContentMappingConverter.isNullValue(MarshallingContext context, String value)
          Is the value read from the search engine is a null value during the unmarshall process.
 boolean XmlPropertyMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean XmlObjectMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean XmlIdMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean XmlContentMappingConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 boolean XmlObjectMappingConverter.marshallIds(Resource idResource, Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
 Object XmlPropertyMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object XmlObjectMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object XmlIdMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object XmlContentMappingConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
           
 Object[] XmlObjectMappingConverter.unmarshallIds(Object id, ResourceMapping resourceMapping, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.converter.xsem
 

Methods in org.compass.core.converter.xsem with parameters of type MarshallingContext
protected  void SimpleXmlValueConverter.doSetBoost(Property property, Object root, ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          A simple extension point that allows to set the boost value for the created Property.
protected  String SimpleXmlValueConverter.getNullValue(ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          If the converter handle nulls, the value that will be stored in the search engine for null values (during the marshall process).
protected  boolean SimpleXmlValueConverter.handleNulls(ResourcePropertyMapping resourcePropertyMapping, MarshallingContext context)
          Should the converter handle nulls?
 boolean SimpleXmlValueConverter.marshall(Resource resource, Object root, Mapping mapping, MarshallingContext context)
           
 Object SimpleXmlValueConverter.unmarshall(Resource resource, Mapping mapping, MarshallingContext context)
          Not supported operation.
 

Uses of MarshallingContext in org.compass.core.impl
 

Methods in org.compass.core.impl with parameters of type MarshallingContext
 Object DefaultCompassSession.get(String alias, Object id, MarshallingContext context)
           
 Object DefaultCompassSession.getByResource(Resource resource, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.marshall
 

Classes in org.compass.core.marshall that implement MarshallingContext
 class DefaultMarshallingContext
           
 

Methods in org.compass.core.marshall with parameters of type MarshallingContext
 boolean MarshallingStrategy.marshallIds(Resource resource, ResourceMapping resourceMapping, Object id, MarshallingContext context)
          Marshalls the give id object into the provided Resource (a resource having only its ids set).
 boolean DefaultMarshallingStrategy.marshallIds(Resource resource, ResourceMapping resourceMapping, Object id, MarshallingContext context)
           
 Object MarshallingStrategy.unmarshall(Resource resource, MarshallingContext context)
          Unmarshalls the given resource to an Object based on the ResourceMapping regsitered under the Resource alias WITHIN the given marshalling context.
 Object DefaultMarshallingStrategy.unmarshall(Resource resource, MarshallingContext context)
           
 Object[] MarshallingStrategy.unmarshallIds(ResourceMapping resourceMapping, Object id, MarshallingContext context)
          Unmarshalls the given id object into an array of all the id values.
 Object[] DefaultMarshallingStrategy.unmarshallIds(ResourceMapping resourceMapping, Object id, MarshallingContext context)
           
 

Uses of MarshallingContext in org.compass.core.spi
 

Methods in org.compass.core.spi with parameters of type MarshallingContext
 Object InternalCompassSession.get(String alias, Object id, MarshallingContext context)
           
 



Copyright (c) 2004-2008 The Compass Project.