Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UntrustedUrlInput.java « filter « i18n « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 98ee1e72d441d5643b5d16708cc14455da657b96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.bouncycastle.i18n.filter;

/**
 * 
 * Wrapper class to mark an untrusted Url
 */
public class UntrustedUrlInput extends UntrustedInput
{
    public UntrustedUrlInput(Object url)
    {
        super(url);
    }
    
}