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

org.infinispan.protostream.BaseMessage Maven / Gradle / Ivy

package org.infinispan.protostream;

/**
 * Base class for message implementations. This is provided just for convenience, you are not required to extend from
 * it. Any {@code Message} implementation will do.
 *
 * @author [email protected]
 * @since 1.0
 * @deprecated see {@link UnknownFieldSetHandler}
 */
@Deprecated
public abstract class BaseMessage implements Message {

   protected UnknownFieldSet unknownFieldSet;

   @Override
   public UnknownFieldSet getUnknownFieldSet() {
      return unknownFieldSet;
   }

   @Override
   public void setUnknownFieldSet(UnknownFieldSet unknownFieldSet) {
      this.unknownFieldSet = unknownFieldSet;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy