use of edu.uiuc.ncsa.security.storage.sql.internals.ColumnDescriptorEntry in project OA4MP by ncsa.
the class DSTransactionTable method createColumnDescriptors.
@Override
public void createColumnDescriptors() {
super.createColumnDescriptors();
DSTransactionKeys x = (DSTransactionKeys) keys;
// as per spec
getColumnDescriptor().add(new ColumnDescriptorEntry(x.certReq(), LONGVARCHAR));
// as per spec
getColumnDescriptor().add(new ColumnDescriptorEntry(x.cert(), LONGVARCHAR));
getColumnDescriptor().add(new ColumnDescriptorEntry(x.clientKey(), LONGVARCHAR));
getColumnDescriptor().add(new ColumnDescriptorEntry(x.username(), LONGVARCHAR));
getColumnDescriptor().add(new ColumnDescriptorEntry(x.myproxyUsername(), LONGVARCHAR, true, false));
}
Aggregations