// 
// Decompiled by Procyon v0.6.0
// 

package org.bouncycastle.jce.spec;

import java.security.spec.AlgorithmParameterSpec;

public class ECNamedCurveGenParameterSpec implements AlgorithmParameterSpec
{
    private String name;
    
    public ECNamedCurveGenParameterSpec(final String name) {
        this.name = name;
    }
    
    public String getName() {
        return this.name;
    }
}
