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

com.thoughtworks.xstream.security.NullPermission Maven / Gradle / Ivy

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

import com.thoughtworks.xstream.mapper.Mapper;

/**
 * Permission for null or XStream's null replacement type.
 * 
 * @author Jörg Schaible
 * @since 1.4.7
 */
public class NullPermission implements TypePermission {
    /**
     * @since 1.4.7
     */
    public static final TypePermission NULL = new NullPermission();

    public boolean allows(Class type) {
        return type == null || type == Mapper.Null.class;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy