Example usage for com.fasterxml.jackson.databind.introspect AnnotatedMethod getMember

List of usage examples for com.fasterxml.jackson.databind.introspect AnnotatedMethod getMember

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.introspect AnnotatedMethod getMember.

Prototype

public Method getMember() 

Source Link

Usage

From source file:io.fabric8.cxf.endpoint.IgnorePropertiesBackedByTransientFields.java

@Override
public boolean isGetterVisible(AnnotatedMethod method) {
    boolean answer = defaultChecker.isGetterVisible(method);
    if (answer) {
        answer = isGetterMethodWithFieldVisible(method, getGetterFieldName(method.getName()),
                method.getDeclaringClass())
                && isGetterMethodRetItselfVisible(method.getMember(), method.getDeclaringClass());
    }// ww  w.  j a  v a 2 s.c o  m
    return answer;
}

From source file:io.fabric8.cxf.endpoint.IgnorePropertiesBackedByTransientFields.java

@Override
public boolean isIsGetterVisible(AnnotatedMethod method) {
    boolean answer = defaultChecker.isIsGetterVisible(method);
    if (answer) {
        answer = isGetterMethodWithFieldVisible(method, getIsGetterFieldName(method.getName()),
                method.getDeclaringClass())
                && isGetterMethodRetItselfVisible(method.getMember(), method.getDeclaringClass());
    }//from www. j  a va  2  s.  c o  m
    return answer;
}