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

org.eclipse.jetty.toolchain.test.policy.Tester Maven / Gradle / Ivy

package org.eclipse.jetty.toolchain.test.policy;

import java.security.AccessController;
import java.security.PrivilegedAction;

public class Tester
{
    
    public Tester()
    {
        
    }
    

    public String testEcho( String echo )
    {
        return echo;
    }
    
    public boolean testReadSystemProperty( String property ) throws Exception
    {
        AccessController.doPrivileged( new TestAction( property ) );
       
        return true;
    }
    
    class TestAction implements PrivilegedAction
    {
        private String _value;
        
        TestAction ( String value )
        {
            _value = value;
        }
        
        public Object run()
        {  
            System.out.println( "checking out system property -=> " + _value );
            
            return System.getProperty( _value ); 
        }
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy