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

org.mapstruct.AfterMapping Maven / Gradle / Ivy

There is a newer version: 1.6.3
Show newest version
/**
 *  Copyright 2012-2017 Gunnar Morling (http://www.gunnarmorling.de/)
 *  and/or other contributors as indicated by the @authors tag. See the
 *  copyright.txt file in the distribution for a full listing of all
 *  contributors.
 *
 *  Licensed 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.mapstruct;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Marks a method to be invoked at the end of a generated mapping method, right before the last {@code return} statement
 * of the mapping method. The method can be implemented in an abstract mapper class, be declared in a type (class or
 * interface) referenced in {@link Mapper#uses()}, or in a type used as {@code @}{@link Context} parameter in order to
 * be used in a mapping method.
 * 

* The method invocation is only generated if the return type of the method (if non-{@code void}) is assignable to the * return type of the mapping method and all parameters can be assigned by the available source, target or * context parameters of the mapping method: *

    *
  • A parameter annotated with {@code @}{@link MappingTarget} is populated with the target instance of the mapping. *
  • *
  • A parameter annotated with {@code @}{@link TargetType} is populated with the target type of the mapping.
  • *
  • Parameters annotated with {@code @}{@link Context} are populated with the context parameters of the mapping * method.
  • *
  • Any other parameter is populated with a source parameter of the mapping.
  • *
*

* For non-{@code void} methods, the return value of the method invocation is returned as the result of the mapping * method if it is not {@code null}. *

* All after-mapping methods that can be applied to a mapping method will be used. {@code @}{@link Qualifier} / * {@code @}{@link Named} can be used to filter the methods to use. *

* The order of the method invocation is determined by their location of definition: *

    *
  1. Methods declared on {@code @}{@link Context} parameters, ordered by the parameter order.
  2. *
  3. Methods implemented in the mapper itself.
  4. *
  5. Methods from types referenced in {@link Mapper#uses()}, in the order of the type declaration in the annotation. *
  6. *
  7. Methods declared in one type are used after methods declared in their super-type
  8. *
* Important: the order of methods declared within one type can not be guaranteed, as it depends on the * compiler and the processing environment implementation. *

* Example: * *

 * 
 * @AfterMapping
 * public void calledWithoutArgs() {
 *     // ...
 * }
 *
 * @AfterMapping
 * public void calledWithSourceAndTargetType(SourceEntity anySource, @TargetType Class<?> targetType) {
 *     // ...
 * }
 *
 * @AfterMapping
 * public void calledWithSourceAndTarget(Object anySource, @MappingTarget TargetDto target) {
 *     // ...
 * }
 *
 * public abstract TargetDto toTargetDto(SourceEntity source);
 *
 * // generates:
 *
 * public TargetDto toTargetDto(SourceEntity source) {
 *     if ( source == null ) {
 *         return null;
 *     }
 *
 *     TargetDto targetDto = new TargetDto();
 *
 *     // actual mapping code
 *
 *     calledWithoutArgs();
 *     calledWithSourceAndTargetType( source, TargetDto.class );
 *     calledWithSourceAndTarget( source, targetDto );
 *
 *     return targetDto;
 * }
 * 
 * 
* * @author Andreas Gudian * @see BeforeMapping * @see Context */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.CLASS) public @interface AfterMapping { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy