public class VomsAccountingParser extends RegexpParser
| Modifier and Type | Field and Description |
|---|---|
static PropertyTag<java.lang.String> |
VOMS_DN |
static PropertyTag<java.lang.String> |
VOMS_ID |
static PropertyTag<java.lang.String> |
VOMS_POOLINDEX |
static PropertyRegistry |
voms_reg |
static PropertyTag<java.lang.String> |
VOMS_SUBMISSION |
static PropertyTag<java.lang.Integer> |
VOMS_UID |
static PropertyTag<java.lang.String> |
VOMS_VO0 |
DUPLICATE_KEY| Constructor and Description |
|---|
VomsAccountingParser() |
| Modifier and Type | Method and Description |
|---|---|
uk.ac.ed.epcc.webapp.AppContext |
getContext() |
PropertyFinder |
initFinder(uk.ac.ed.epcc.webapp.AppContext ctx,
PropertyFinder prev,
java.lang.String table)
Generate a PropertyFinder that will find any PropertyTag generated by this class.
|
endParse, parse, splitRecords, startParsegetDefaultUniqueProperties, modifyDefaultTableSpecification, uniquegetDerivedPropertiesclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetDerivedPropertiespublic static final PropertyRegistry voms_reg
@AutoTable(target=java.lang.String.class, length=128) public static final PropertyTag<java.lang.String> VOMS_DN
@AutoTable(target=java.lang.String.class, length=128, unique=true) public static final PropertyTag<java.lang.String> VOMS_ID
@AutoTable(target=java.lang.String.class) public static final PropertyTag<java.lang.String> VOMS_SUBMISSION
@AutoTable(target=java.lang.Integer.class) public static final PropertyTag<java.lang.Integer> VOMS_UID
@AutoTable(target=java.lang.String.class, length=128) public static final PropertyTag<java.lang.String> VOMS_VO0
public static final PropertyTag<java.lang.String> VOMS_POOLINDEX
public PropertyFinder initFinder(uk.ac.ed.epcc.webapp.AppContext ctx, PropertyFinder prev, java.lang.String table)
PropertyContainerUpdaterAll properties defined at run-time should have their PropertyTag objects constructed by the time the first call to this method returns. As some parsers properties will generate different things depending on the other properties already in scope this method is passed a PropertyFinder for any properties that may already be in scope. This will include any default parameters specified when the data was uploaded and any properties generated from the database meta-data. Though it is perfectly legal to return a PropertyFinder that returns a superset of the generated properties the only requirement is that the returned finder can find any property that this classes parse method may actually generate values for. So Normally the contents of the super-finder are not included in the result unless these values are actually generated by the parse. If values are generated then a MultiFinder can be populated with the PropertyRegistrys from the generated properties
prev - PropertyFinder for the higher levels in the call chain.table - String name of the destination table in case per-table customisation is neededpublic uk.ac.ed.epcc.webapp.AppContext getContext()
getContext in class RegexpParser