OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DdlResponse.java
Go to the documentation of this file.
1 package com.mapd.parser.extension.ddl;
2 
3 import com.google.gson.annotations.Expose;
4 
5 public class DdlResponse {
6  @Expose
7  private final String statementType = "DDL";
8  @Expose
10 
11  public void setPayload(final JsonSerializableDdl payload) {
12  this.payload = payload;
13  }
14 }
void setPayload(final JsonSerializableDdl payload)