类com.fasterxml.jackson.annotation.JsonProperty.Access源码实例Demo

下面列出了怎么用com.fasterxml.jackson.annotation.JsonProperty.Access的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: syndesis   文件: WithUsage.java
@Value.Auxiliary
@JsonProperty(access = Access.READ_ONLY)
int getUses();
 
源代码2 项目: iotplatform   文件: Customer.java
@Override
@JsonProperty(access = Access.READ_ONLY)
public String getName() {
  return title;
}
 
源代码3 项目: syndesis   文件: Connector.java
/**
 * Provide number of connections using this connector
 * <p>
 * Note:
 * Excluded from {@link ImmutableConnector#hashCode()} and {@link ImmutableConnector#equals(Object)}
 *
 * @return count of integrations
 */
@Value.Auxiliary
@JsonProperty(access = Access.READ_ONLY)
OptionalInt getUses();
 
源代码4 项目: logsniffer   文件: BaseLogsSource.java
/**
 * Returns the natively supported navigation type by this source.
 * 
 * @return the natively supported navigation type by this source.
 */
@JsonProperty(access = Access.READ_ONLY)
@JsonView(Views.Info.class)
public abstract NavigationType getNavigationType();
 
 类方法
 同包方法