com.fasterxml.jackson.annotation.JsonProperty.Access Java Examples
The following examples show how to use
com.fasterxml.jackson.annotation.JsonProperty.Access.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WithUsage.java From syndesis with Apache License 2.0 | 4 votes |
@Value.Auxiliary @JsonProperty(access = Access.READ_ONLY) int getUses();
Example #2
Source File: Customer.java From iotplatform with Apache License 2.0 | 4 votes |
@Override @JsonProperty(access = Access.READ_ONLY) public String getName() { return title; }
Example #3
Source File: Connector.java From syndesis with Apache License 2.0 | 2 votes |
/** * 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();
Example #4
Source File: BaseLogsSource.java From logsniffer with GNU Lesser General Public License v3.0 | 2 votes |
/** * 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();