org.langera.freud.optional.spring.SpringBeanImpl.java Source code

Java tutorial

Introduction

Here is the source code for org.langera.freud.optional.spring.SpringBeanImpl.java

Source

/*
 * Copyright (c) 2011.
 * This file is part of "Freud".
 *
 * Freud is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Freud is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Freud.  If not, see <http://www.gnu.org/licenses/>.
 * @author Amir Langer  langera_at_gmail_dot_com
 */

package org.langera.freud.optional.spring;

import org.springframework.aop.support.AopUtils;

/**
 * This file is part of "Freud".
 * <p/>
 * Freud is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * <p/>
 * Freud is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * <p/>
 * You should have received a copy of the GNU General Public License
 * along with Freud.  If not, see <http://www.gnu.org/licenses/>.
 *
 * @author Amir Langer  langera_at_gmail_dot_com
 */

public final class SpringBeanImpl implements SpringBean {
    private String beanName;
    private Object bean;

    public SpringBeanImpl(String beanName, Object bean) {
        this.beanName = beanName;
        this.bean = bean;
    }

    public Object getBean() {
        return bean;
    }

    public Class getTargetClass() {
        return AopUtils.getTargetClass(bean);
    }

    public boolean isAopProxy() {
        return AopUtils.isAopProxy(bean);
    }

    public String getBeanName() {
        return beanName;
    }

    public String toString() {
        return beanName;
    }
}