eureka-client/src/main/java/com/netflix/discovery/converters/jackson/serializer/ApplicationsXmlBeanSerializer.java [42:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void serializeFields(Object bean, JsonGenerator jgen0, SerializerProvider provider) throws IOException {
        super.serializeFields(bean, jgen0, provider);
        Applications applications = (Applications) bean;

        if (applications.getVersion() != null) {
            jgen0.writeStringField(versionKey, Long.toString(applications.getVersion()));
        }
        if (applications.getAppsHashCode() != null) {
            jgen0.writeStringField(appsHashCodeKey, applications.getAppsHashCode());
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



eureka-client/src/main/java/com/netflix/discovery/converters/jackson/serializer/ApplicationsJsonBeanSerializer.java [42:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void serializeFields(Object bean, JsonGenerator jgen0, SerializerProvider provider) throws IOException {
        super.serializeFields(bean, jgen0, provider);
        Applications applications = (Applications) bean;

        if (applications.getVersion() != null) {
            jgen0.writeStringField(versionKey, Long.toString(applications.getVersion()));
        }
        if (applications.getAppsHashCode() != null) {
            jgen0.writeStringField(appsHashCodeKey, applications.getAppsHashCode());
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



