blob: e4aa59b05f6a0e62dad602f540e88cf8ee14b716 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.kerby.x509.type;
import org.apache.kerby.asn1.Asn1FieldInfo;
import org.apache.kerby.asn1.EnumType;
import org.apache.kerby.asn1.type.Asn1SequenceType;
import org.apache.kerby.asn1.ExplicitField;
import static org.apache.kerby.x509.type.Holder.MyEnum.*;
/**
* <pre>
* Holder ::= SEQUENCE {
* baseCertificateID [0] IssuerSerial OPTIONAL,
* -- the issuer and serial number of
* -- the holder's Public Key Certificate
* entityName [1] GeneralNames OPTIONAL,
* -- the name of the claimant or role
* objectDigestInfo [2] ObjectDigestInfo OPTIONAL
* -- used to directly authenticate the holder,
* -- for example, an executable
* }
* </pre>
*/
public class Holder extends Asn1SequenceType {
protected static enum MyEnum implements EnumType {
BASE_CERTIFICATE_ID,
ENTITY_NAME,
OBJECT_DIGEST_INFO;
@Override
public int getValue() {
return ordinal();
}
@Override
public String getName() {
return name();
}
}
static Asn1FieldInfo[] fieldInfos = new Asn1FieldInfo[] {
new ExplicitField(BASE_CERTIFICATE_ID, IssuerSerial.class),
new ExplicitField(ENTITY_NAME, GeneralNames.class),
new ExplicitField(OBJECT_DIGEST_INFO, ObjectDigestInfo.class)
};
public Holder() {
super(fieldInfos);
}
public IssuerSerial getBaseCertificateID() {
return getFieldAs(BASE_CERTIFICATE_ID, IssuerSerial.class);
}
public void setBaseCertificateId(IssuerSerial baseCertificateId) {
setFieldAs(BASE_CERTIFICATE_ID, baseCertificateId);
}
public GeneralNames getEntityName() {
return getFieldAs(ENTITY_NAME, GeneralNames.class);
}
public void setEntityName(GeneralNames entityName) {
setFieldAs(ENTITY_NAME, entityName);
}
public ObjectDigestInfo getObjectDigestInfo() {
return getFieldAs(OBJECT_DIGEST_INFO, ObjectDigestInfo.class);
}
public void setObjectDigestInfo(ObjectDigestInfo objectDigestInfo) {
setFieldAs(OBJECT_DIGEST_INFO, objectDigestInfo);
}
}