All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.xml.ws.spi.db.FieldGetter Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
/*
 * Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0, which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package com.sun.xml.ws.spi.db;

import java.lang.reflect.Field;
import jakarta.xml.ws.WebServiceException;


/**
 * FieldGetter gets the value of a field from an instance.
 * 
 * @author [email protected]
 * @exclude
 */
public class FieldGetter extends PropertyGetterBase {

    protected Field field;
    
    public FieldGetter(Field f) {
        verifyWrapperType(f.getDeclaringClass());   
        field = f;
        type = f.getType();
    }
    
    public Field getField() {
        return field;
    }
    
    public Object get(final Object instance) {
        try {
            return field.get(instance);
        } catch (Exception e) {
            throw new WebServiceException(e);
        }
    }

    public  A getAnnotation(Class annotationType) {
        Class c = annotationType;
        return (A) field.getAnnotation(c);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy