com.fasterxml.jackson.annotation.JsonAnyGetter#io.swagger.annotations.ApiModelProperty源码实例Demo

下面列出了com.fasterxml.jackson.annotation.JsonAnyGetter#io.swagger.annotations.ApiModelProperty 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: openapi-generator   文件: ModelReturn.java
/**
 * Get _return
 * @return _return
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_RETURN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public Integer getReturn() {
  return _return;
}
 
源代码2 项目: ariADDna   文件: AllocationModel.java
/**
 * Object UUID.
 * @return uuid
 **/
@ApiModelProperty(required = true, value = "Object UUID.")
@NotNull

@Valid

public UUID getUuid() {
    return uuid;
}
 
/**
 * Get dateTime
 * @return dateTime
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public OffsetDateTime getDateTime() {
  return dateTime;
}
 
源代码4 项目: openapi-generator   文件: XmlItem.java
/**
 * Get namespaceBoolean
 * @return namespaceBoolean
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "true", value = "")
@JsonProperty(JSON_PROPERTY_NAMESPACE_BOOLEAN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public Boolean getNamespaceBoolean() {
  return namespaceBoolean;
}
 
源代码5 项目: openapi-generator   文件: MapTest.java
/**
 * Get directMap
 * @return directMap
 **/
@JsonProperty("direct_map")
@ApiModelProperty(value = "")

public Map<String, Boolean> getDirectMap() {
  return directMap;
}
 
源代码6 项目: openapi-generator   文件: EnumTest.java
/**
 * Get enumInteger
 * @return enumInteger
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public EnumIntegerEnum getEnumInteger() {
  return enumInteger;
}
 
源代码7 项目: openapi-generator   文件: Capitalization.java
/**
 * Name of the pet 
 * @return ATT_NAME
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Name of the pet ")
@JsonProperty(JSON_PROPERTY_A_T_T_N_A_M_E)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public String getATTNAME() {
  return ATT_NAME;
}
 
源代码8 项目: nifi   文件: ProcessGroupEntity.java
/**
 * @return number of stopped components in this process group
 */
@ApiModelProperty(
    value = "The number of stopped components in the process group."
)
public Integer getStoppedCount() {
    return stoppedCount;
}
 
源代码9 项目: openapi-generator   文件: FileSchemaTestClass.java
/**
 * Get file
 * @return file
*/
@ApiModelProperty(value = "")

@Valid

public java.io.File getFile() {
  return file;
}
 
源代码10 项目: java   文件: V1SubjectAccessReview.java
/**
 * APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources
 * @return apiVersion
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources")

public String getApiVersion() {
  return apiVersion;
}
 
源代码11 项目: openapi-generator   文件: Pet.java
/**
 **/

@ApiModelProperty(required = true, value = "")
@JsonProperty("photoUrls")
@NotNull
public List<String> getPhotoUrls() {
  return photoUrls;
}
 
源代码12 项目: java   文件: V1PersistentVolumeClaimStatus.java
/**
 * Phase represents the current phase of PersistentVolumeClaim.
 * @return phase
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "Phase represents the current phase of PersistentVolumeClaim.")

public String getPhase() {
  return phase;
}
 
源代码13 项目: nifi   文件: ProvenanceEventDTO.java
/**
 * @return time the event occurred
 */
@XmlJavaTypeAdapter(TimestampAdapter.class)
@ApiModelProperty(
        value = "The timestamp of the event.",
        dataType = "string"
)
public Date getEventTime() {
    return eventTime;
}
 
源代码14 项目: java   文件: V1JSONSchemaProps.java
/**
 * Get minProperties
 * @return minProperties
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public Long getMinProperties() {
  return minProperties;
}
 
源代码15 项目: openapi-generator   文件: TypeHolderExample.java
/**
 * Get boolItem
 * @return boolItem
**/
@NotNull
@ApiModelProperty(example = "true", required = true, value = "")
@JsonProperty(JSON_PROPERTY_BOOL_ITEM)
@JsonInclude(value = JsonInclude.Include.ALWAYS)

public Boolean isBoolItem() {
  return boolItem;
}
 
源代码16 项目: java   文件: V1Service.java
/**
 * Get spec
 * @return spec
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public V1ServiceSpec getSpec() {
  return spec;
}
 
源代码17 项目: swaggy-jenkins   文件: GenericResource.java
/**
 **/

@ApiModelProperty(value = "")
@JsonProperty("id")
public String getId() {
  return id;
}
 
源代码18 项目: openapi-generator   文件: ModelReturn.java
/**
 * Get _return
 * @return _return
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")
@JsonProperty(JSON_PROPERTY_RETURN)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)

public Integer getReturn() {
  return _return;
}
 
源代码19 项目: docusign-java-client   文件: Draw.java
/**
 * When set to **true**, this tab is ignored if anchorString is not found in the document.
 * @return anchorIgnoreIfNotPresent
**/
@ApiModelProperty(value = "When set to **true**, this tab is ignored if anchorString is not found in the document.")
public String getAnchorIgnoreIfNotPresent() {
  return anchorIgnoreIfNotPresent;
}
 
源代码20 项目: swaggy-jenkins   文件: Pipeline.java
/**
 * Get organization
 * @return organization
**/
@ApiModelProperty(value = "")
public String getOrganization() {
  return organization;
}
 
源代码21 项目: docusign-java-client   文件: AccountRoleSettings.java
/**
 * 
 * @return allowSendersToSetRecipientEmailLanguage
**/
@ApiModelProperty(value = "")
public String getAllowSendersToSetRecipientEmailLanguage() {
  return allowSendersToSetRecipientEmailLanguage;
}
 
源代码22 项目: director-sdk   文件: TimeSeriesResponse.java
/**
 * Time series
 * @return timeSeries
**/
@ApiModelProperty(value = "Time series")
public List<TimeSeries> getTimeSeries() {
  return timeSeries;
}
 
源代码23 项目: swaggy-jenkins   文件: Hudson.java
/**
 * Get jobs
 * @return jobs
 **/
@JsonProperty("jobs")
@ApiModelProperty(value = "")
public List<FreeStyleProject> getJobs() {
  return jobs;
}
 
源代码24 项目: Xero-Java   文件: Benefit.java
/**
 * Identifier of subject To NIC
 * @return subjectToNIC
**/
@ApiModelProperty(value = "Identifier of subject To NIC")
public Boolean getSubjectToNIC() {
  return subjectToNIC;
}
 
源代码25 项目: carbon-apimgt   文件: ThrottlePolicyDTO.java
/**
 **/
@ApiModelProperty(required = true, value = "")
@JsonProperty("policyName")
public String getPolicyName() {
  return policyName;
}
 
/**
 * Get status
 * @return status
**/
@ApiModelProperty(value = "")
public StatusEnum getStatus() {
  return status;
}
 
源代码27 项目: docusign-java-client   文件: FormulaTab.java
/**
 * Get requiredMetadata
 * @return requiredMetadata
**/
@ApiModelProperty(value = "")
public PropertyMetadata getRequiredMetadata() {
  return requiredMetadata;
}
 
源代码28 项目: nifi   文件: ProcessGroupStatusSnapshotDTO.java
@ApiModelProperty("The number of bytes sent to an external sink by components within this ProcessGroup in the last 5 minutes")
public Long getBytesSent() {
    return bytesSent;
}
 
源代码29 项目: director-sdk   文件: DeploymentTemplate.java
/**
 * Custom Cloudera Manager public GPG key
 * @return repositoryKeyUrl
**/
@ApiModelProperty(value = "Custom Cloudera Manager public GPG key")
public String getRepositoryKeyUrl() {
  return repositoryKeyUrl;
}
 
源代码30 项目: nifi-swagger-client   文件: FlowSnippetDTO.java
/**
 * The input ports in this flow snippet.
 * @return inputPorts
**/
@ApiModelProperty(value = "The input ports in this flow snippet.")
public List<PortDTO> getInputPorts() {
  return inputPorts;
}