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

io.gatling.recorder.internal.bouncycastle.oer.its.etsi102941.DeltaCtl Maven / Gradle / Ivy

package io.gatling.recorder.internal.bouncycastle.oer.its.etsi102941;

import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Boolean;
import io.gatling.recorder.internal.bouncycastle.asn1.ASN1Sequence;
import io.gatling.recorder.internal.bouncycastle.oer.its.etsi102941.basetypes.Version;
import io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes.Time32;
import io.gatling.recorder.internal.bouncycastle.oer.its.ieee1609dot2.basetypes.UINT8;

/**
 * DeltaCtl::= CtlFormat (WITH COMPONENTS {...,
 * isFullCtl(FALSE)
 * })
 */
public class DeltaCtl
    extends CtlFormat
{
    public DeltaCtl(Version version, Time32 nextUpdate, UINT8 ctlSequence, SequenceOfCtlCommand ctlCommands)
    {
        super(version, nextUpdate, ASN1Boolean.FALSE, ctlSequence, ctlCommands);
    }

    private DeltaCtl(ASN1Sequence seq)
    {
        super(seq);
    }

    public static DeltaCtl getInstance(Object o)
    {
        if (o instanceof DeltaCtl)
        {
            return (DeltaCtl)o;
        }

        if (o != null)
        {
            return new DeltaCtl(ASN1Sequence.getInstance(o));
        }

        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy