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

com.feilong.lib.xstream.security.ProxyTypePermission Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2014 XStream Committers.
 * All rights reserved.
 *
 * Created on 19. January 2014 by Joerg Schaible
 */
package com.feilong.lib.xstream.security;

import java.lang.reflect.Proxy;

import com.feilong.lib.xstream.mapper.DynamicProxyMapper;

/**
 * Permission for any array type.
 * 
 * @author Jörg Schaible
 * @since 1.4.7
 */
public class ProxyTypePermission implements TypePermission{

    /**
     * @since 1.4.7
     */
    public static final TypePermission PROXIES = new ProxyTypePermission();

    @Override
    public boolean allows(final Class type){
        return type != null && (Proxy.isProxyClass(type) || type == DynamicProxyMapper.DynamicProxy.class);
    }

    @Override
    public int hashCode(){
        return 17;
    }

    @Override
    public boolean equals(final Object obj){
        return obj != null && obj.getClass() == ProxyTypePermission.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy