comment out test case for map of map of enum as many lang don't support

This commit is contained in:
wing328 2016-06-29 17:46:45 +08:00
parent fd72409e3b
commit aaf7b99220
3 changed files with 11 additions and 40 deletions

View File

@ -1064,15 +1064,16 @@ definitions:
type: object type: object
additionalProperties: additionalProperties:
type: string type: string
map_map_of_enum: # comment out the following (map of map of enum) as many language not yet support this
type: object #map_map_of_enum:
additionalProperties: # type: object
type: object # additionalProperties:
additionalProperties: # type: object
type: string # additionalProperties:
enum: # type: string
- UPPER # enum:
- lower # - UPPER
# - lower
map_of_enum_string: map_of_enum_string:
type: object type: object
additionalProperties: additionalProperties:

View File

@ -5,16 +5,9 @@
Name | Type | Description | Notes Name | Type | Description | Notes
------------ | ------------- | ------------- | ------------- ------------ | ------------- | ------------- | -------------
**mapMapOfString** | [**Map<String, Map<String, String>>**](Map.md) | | [optional] **mapMapOfString** | [**Map<String, Map<String, String>>**](Map.md) | | [optional]
**mapMapOfEnum** | [**Map<String, Map<String, InnerEnum>>**](#Map<String, Map<String, InnerEnum>>) | | [optional]
**mapOfEnumString** | [**Map<String, InnerEnum>**](#Map<String, InnerEnum>) | | [optional] **mapOfEnumString** | [**Map<String, InnerEnum>**](#Map<String, InnerEnum>) | | [optional]
<a name="Map<String, Map<String, InnerEnum>>"></a>
## Enum: Map&lt;String, Map&lt;String, InnerEnum&gt;&gt;
Name | Value
---- | -----
<a name="Map<String, InnerEnum>"></a> <a name="Map<String, InnerEnum>"></a>
## Enum: Map&lt;String, InnerEnum&gt; ## Enum: Map&lt;String, InnerEnum&gt;
Name | Value Name | Value

View File

@ -42,9 +42,6 @@ public class MapTest {
@SerializedName("map_map_of_string") @SerializedName("map_map_of_string")
private Map<String, Map<String, String>> mapMapOfString = new HashMap<String, Map<String, String>>(); private Map<String, Map<String, String>> mapMapOfString = new HashMap<String, Map<String, String>>();
@SerializedName("map_map_of_enum")
private Map<String, Map<String, InnerEnum>> mapMapOfEnum = new HashMap<String, InnerEnum<String, String>>();
/** /**
* Gets or Sets inner * Gets or Sets inner
*/ */
@ -88,24 +85,6 @@ public class MapTest {
this.mapMapOfString = mapMapOfString; this.mapMapOfString = mapMapOfString;
} }
public MapTest mapMapOfEnum(Map<String, Map<String, InnerEnum>> mapMapOfEnum) {
this.mapMapOfEnum = mapMapOfEnum;
return this;
}
/**
* Get mapMapOfEnum
* @return mapMapOfEnum
**/
@ApiModelProperty(example = "null", value = "")
public Map<String, Map<String, InnerEnum>> getMapMapOfEnum() {
return mapMapOfEnum;
}
public void setMapMapOfEnum(Map<String, Map<String, InnerEnum>> mapMapOfEnum) {
this.mapMapOfEnum = mapMapOfEnum;
}
public MapTest mapOfEnumString(Map<String, InnerEnum> mapOfEnumString) { public MapTest mapOfEnumString(Map<String, InnerEnum> mapOfEnumString) {
this.mapOfEnumString = mapOfEnumString; this.mapOfEnumString = mapOfEnumString;
return this; return this;
@ -135,13 +114,12 @@ public class MapTest {
} }
MapTest mapTest = (MapTest) o; MapTest mapTest = (MapTest) o;
return Objects.equals(this.mapMapOfString, mapTest.mapMapOfString) && return Objects.equals(this.mapMapOfString, mapTest.mapMapOfString) &&
Objects.equals(this.mapMapOfEnum, mapTest.mapMapOfEnum) &&
Objects.equals(this.mapOfEnumString, mapTest.mapOfEnumString); Objects.equals(this.mapOfEnumString, mapTest.mapOfEnumString);
} }
@Override @Override
public int hashCode() { public int hashCode() {
return Objects.hash(mapMapOfString, mapMapOfEnum, mapOfEnumString); return Objects.hash(mapMapOfString, mapOfEnumString);
} }
@Override @Override
@ -150,7 +128,6 @@ public class MapTest {
sb.append("class MapTest {\n"); sb.append("class MapTest {\n");
sb.append(" mapMapOfString: ").append(toIndentedString(mapMapOfString)).append("\n"); sb.append(" mapMapOfString: ").append(toIndentedString(mapMapOfString)).append("\n");
sb.append(" mapMapOfEnum: ").append(toIndentedString(mapMapOfEnum)).append("\n");
sb.append(" mapOfEnumString: ").append(toIndentedString(mapOfEnumString)).append("\n"); sb.append(" mapOfEnumString: ").append(toIndentedString(mapOfEnumString)).append("\n");
sb.append("}"); sb.append("}");
return sb.toString(); return sb.toString();