MethodInfo.java

  1. package zserio.runtime.typeinfo;

  2. /**
  3.  * Type information for service method.
  4.  */
  5. public final class MethodInfo
  6. {
  7.     /**
  8.      * Constructor.
  9.      *
  10.      * @param schemaName Method schema name.
  11.      * @param responseTypeInfo Response type info.
  12.      * @param requestTypeInfo Request type info.
  13.      */
  14.     public MethodInfo(String schemaName, TypeInfo responseTypeInfo, TypeInfo requestTypeInfo)
  15.     {
  16.         this.schemaName = schemaName;
  17.         this.responseTypeInfo = responseTypeInfo;
  18.         this.requestTypeInfo = requestTypeInfo;
  19.     }

  20.     /**
  21.      * Gets name of the method as is defined in zserio schema.
  22.      *
  23.      * @return Service schema name.
  24.      */
  25.     public String getSchemaName()
  26.     {
  27.         return schemaName;
  28.     }

  29.     /**
  30.      * Gets type information for the method response type.
  31.      *
  32.      * @return Response type info.
  33.      */
  34.     public TypeInfo getResponseTypeInfo()
  35.     {
  36.         return responseTypeInfo;
  37.     }

  38.     /**
  39.      * Gets type information for the method request type.
  40.      *
  41.      * @return Request type info.
  42.      */
  43.     public TypeInfo getRequestTypeInfo()
  44.     {
  45.         return requestTypeInfo;
  46.     }

  47.     private final String schemaName;
  48.     private final TypeInfo responseTypeInfo;
  49.     private final TypeInfo requestTypeInfo;
  50. }