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

org.bouncycastle.oer.its.ieee1609dot2.PsidGroupPermissions Maven / Gradle / Ivy

Go to download

The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls with the BC FIPS provider. The APIs may also be used with other providers although if being used in a FIPS context it is the responsibility of the user to ensure that any other providers used are FIPS certified and used appropriately.

There is a newer version: 2.0.3
Show newest version
package org.bouncycastle.oer.its.ieee1609dot2;

import java.math.BigInteger;

import org.bouncycastle.asn1.ASN1Encodable;
import org.bouncycastle.asn1.ASN1Integer;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.oer.OEROptional;

/**
 * 
 *     PsidGroupPermissions ::= SEQUENCE {
 *         subjectPermissions SubjectPermissions,
 *         minChainLength INTEGER DEFAULT 1,
 *         chainLengthRange INTEGER DEFAULT 0,
 *         eeType EndEntityType DEFAULT (app)
 *     }
 * 
*/ public class PsidGroupPermissions extends ASN1Object { private final SubjectPermissions subjectPermissions; private final ASN1Integer minChainLength; private final ASN1Integer chainLengthRange; private final EndEntityType eeType; private PsidGroupPermissions(ASN1Sequence seq) { if (seq.size() != 4) { throw new IllegalArgumentException("expected sequence size of 4"); } this.subjectPermissions = SubjectPermissions.getInstance(seq.getObjectAt(0)); this.minChainLength = OEROptional.getInstance(seq.getObjectAt(1)).getObject(ASN1Integer.class); this.chainLengthRange = OEROptional.getInstance(seq.getObjectAt(2)).getObject(ASN1Integer.class); this.eeType = OEROptional.getInstance(seq.getObjectAt(3)).getObject(EndEntityType.class); } public PsidGroupPermissions(SubjectPermissions subjectPermissions, ASN1Integer minChainLength, ASN1Integer chainLengthRange, EndEntityType eeType) { this.subjectPermissions = subjectPermissions; this.minChainLength = minChainLength; this.chainLengthRange = chainLengthRange; this.eeType = eeType; } public static PsidGroupPermissions getInstance(Object src) { if (src instanceof PsidGroupPermissions) { return (PsidGroupPermissions)src; } else if (src != null) { return new PsidGroupPermissions(ASN1Sequence.getInstance(src)); } return null; } public static Builder builder() { return new Builder(); } public SubjectPermissions getSubjectPermissions() { return subjectPermissions; } public ASN1Integer getMinChainLength() { return minChainLength; } public EndEntityType getEeType() { return eeType; } public ASN1Primitive toASN1Primitive() { return new DERSequence(new ASN1Encodable[]{ subjectPermissions, OEROptional.getInstance(minChainLength), OEROptional.getInstance(chainLengthRange), OEROptional.getInstance(eeType) }); } public ASN1Integer getChainLengthRange() { return chainLengthRange; } public static class Builder { private SubjectPermissions subjectPermissions; private ASN1Integer minChainLength; private ASN1Integer chainLengthRange; private EndEntityType eeType; public Builder() { } public Builder setSubjectPermissions(SubjectPermissions subjectPermissions) { this.subjectPermissions = subjectPermissions; return this; } public Builder setMinChainLength(BigInteger minChainLength) { this.minChainLength = new ASN1Integer(minChainLength); return this; } public Builder setMinChainLength(long minChainLength) { this.minChainLength = new ASN1Integer(minChainLength); return this; } public Builder setChainLengthRange(ASN1Integer chainLengthRange) { this.chainLengthRange = chainLengthRange; return this; } public Builder setMinChainLength(ASN1Integer minChainLength) { this.minChainLength = minChainLength; return this; } public Builder setChainLengthRange(BigInteger chainLengthRange) { this.chainLengthRange = new ASN1Integer(chainLengthRange); return this; } public Builder setChainLengthRange(long chainLengthRange) { this.chainLengthRange = new ASN1Integer(chainLengthRange); return this; } public Builder setEeType(EndEntityType eeType) { this.eeType = eeType; return this; } public PsidGroupPermissions createPsidGroupPermissions() { return new PsidGroupPermissions(subjectPermissions, minChainLength, chainLengthRange, eeType); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy