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

org.jboss.security.mapping.MappingProvider Maven / Gradle / Ivy

There is a newer version: 5.1.0.Final
Show newest version
/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */ 
package org.jboss.security.mapping;

import java.util.Map;

/**
 *  A provider with mapping functionality
 *  @author Anil Saldhana
 *  @version $Revision$
 * @param 
 *  @since  Aug 24, 2006
 */
public interface MappingProvider
{
   /**
    * Initialize the provider with the configured module options
    * @param options
    */
   void init(Map options);
   
   /**
    * Map the passed object
    * @param map A read-only contextual map that can provide information to the provider
    * @param mappedObject an Object on which the mapping will be applied 
    * @throws IllegalArgumentException if the mappedObject is not understood by the 
    * provider.
    */
    void performMapping(Map map, T mappedObject);
    
    /**
     * Injected by the MappingContext
     * @param result
     */
    void setMappingResult(MappingResult result);
    
    /**
     * Whether this mapping provider supports
     * mapping T
     * @param t
     * @return
     */
    boolean supports(Class p);
} 




© 2015 - 2024 Weber Informatics LLC | Privacy Policy