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

de.datasecs.hydra.shared.serialization.IgnoreSerialization Maven / Gradle / Ivy

The newest version!
package de.datasecs.hydra.shared.serialization;

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

/**
 * Created with love by DataSec on 29.09.2017.
 *
 * The IgnoreSerialization annotation is specifically intended and used for setter methods in a custom class.
 * The annotation acts like the keyword 'transient' for fields in classes that implement the serializable class.
 * 
* For an example of how to work with the ignore serialization annotation, visit the * client custom class serialization example * or the server custom class serialization example. */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface IgnoreSerialization { }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy