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

java.security.GuardedObject Maven / Gradle / Ivy

The newest version!
package java.security;

import java.io.Serializable;

public class GuardedObject implements Serializable {
    public GuardedObject(Object object, Guard guard) {}

    /**
     * @throws SecurityException
     */
    public Object getObject() throws SecurityException {
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy