Java Code Examples for org.eclipse.jetty.util.resource.Resource#toString()

The following examples show how to use org.eclipse.jetty.util.resource.Resource#toString() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: SslContextFactory.java    From IoTgo_Android_App with MIT License 5 votes vote down vote up
/** Set the key store resource.
 * @param resource the key store resource to set
 */
public void setKeyStoreResource(Resource resource)
{
    checkNotStarted();

    try
    {
        _keyStoreInputStream = resource.getInputStream();
    }
    catch (IOException e)
    {
         throw new InvalidParameterException("Unable to get resource "+
                 "input stream for resource "+resource.toString());
    }
}
 
Example 2
Source File: SslContextFactory.java    From IoTgo_Android_App with MIT License 5 votes vote down vote up
/** Set the trust store resource.
 * @param resource the trust store resource to set
 */
public void setTrustStoreResource(Resource resource)
{
    checkNotStarted();

    try
    {
        _trustStoreInputStream = resource.getInputStream();
    }
    catch (IOException e)
    {
         throw new InvalidParameterException("Unable to get resource "+
                 "input stream for resource "+resource.toString());
    }
}
 
Example 3
Source File: SslContextFactory.java    From IoTgo_Android_App with MIT License 5 votes vote down vote up
/** Set the key store resource.
 * @param resource the key store resource to set
 */
public void setKeyStoreResource(Resource resource)
{
    checkNotStarted();

    try
    {
        _keyStoreInputStream = resource.getInputStream();
    }
    catch (IOException e)
    {
         throw new InvalidParameterException("Unable to get resource "+
                 "input stream for resource "+resource.toString());
    }
}
 
Example 4
Source File: SslContextFactory.java    From IoTgo_Android_App with MIT License 5 votes vote down vote up
/** Set the trust store resource.
 * @param resource the trust store resource to set
 */
public void setTrustStoreResource(Resource resource)
{
    checkNotStarted();

    try
    {
        _trustStoreInputStream = resource.getInputStream();
    }
    catch (IOException e)
    {
         throw new InvalidParameterException("Unable to get resource "+
                 "input stream for resource "+resource.toString());
    }
}