umich.mgrid.queryengine
Class UrwgDbXpath

java.lang.Object
  extended byumich.mgrid.queryengine.UrwgDbXpath

public final class UrwgDbXpath
extends java.lang.Object

XPath queries for UR-WG Schema

Version:
$Header: /cvsroot/pbsaccounting/pbsaccounting/darkslide/doc/javadoc/umich/mgrid/queryengine/UrwgDbXpath.html,v 1.1 2003/12/18 17:16:40 rodmach Exp $
Author:
Beth Kirschner

Field Summary
static java.lang.String ETIME
          Xpath to query the end text node from the execution record
static java.lang.String GROUP
          Xpath to query the account from the execution record
static java.lang.String JOBUSAGE_RECORD
          Xpath to query to get all JobUsageRecords between specified dates To do a date range, must first take the date before the T in the timezone in 2003-11-07T18:21:17 which gives you 2003-11-07/ Then strip the - to give you 20031177 which then can have a straight numeric comparison with the two arguments passed in.
static java.lang.String MEMORY
          Xpath to query the memoryText node from the execution record
static java.lang.String NODE_COUNT
          Xpath to query the wall clock time Text node from the execution record
static java.lang.String RECORDID
          Xpath query statement for unique record id and attribute name
static java.lang.String RECORDIDATTR
          Unique record ID for this jog usage record
static java.lang.String START
          Xpath to query the start text node from the execution record
static java.lang.String SUBMITTIME
          Xpath to query the submit time text node from the execution record
static java.lang.String USER
          Xpath to query the user Text node from the execution record
static java.lang.String WALLCLOCK
          Xpath to query the wall clock time Text node from the execution record
 
Constructor Summary
UrwgDbXpath()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

JOBUSAGE_RECORD

public static java.lang.String JOBUSAGE_RECORD
Xpath to query to get all JobUsageRecords between specified dates To do a date range, must first take the date before the T in the timezone in 2003-11-07T18:21:17 which gives you 2003-11-07/ Then strip the - to give you 20031177 which then can have a straight numeric comparison with the two arguments passed in. Also note MessageFormat will strip single ', so it must be represented with two ', e.g. ''. See the javadoc for MessageFormat


RECORDID

public static java.lang.String RECORDID
Xpath query statement for unique record id and attribute name


RECORDIDATTR

public static java.lang.String RECORDIDATTR
Unique record ID for this jog usage record


WALLCLOCK

public static java.lang.String WALLCLOCK
Xpath to query the wall clock time Text node from the execution record


GROUP

public static java.lang.String GROUP
Xpath to query the account from the execution record


MEMORY

public static java.lang.String MEMORY
Xpath to query the memoryText node from the execution record


USER

public static java.lang.String USER
Xpath to query the user Text node from the execution record


NODE_COUNT

public static java.lang.String NODE_COUNT
Xpath to query the wall clock time Text node from the execution record


SUBMITTIME

public static java.lang.String SUBMITTIME
Xpath to query the submit time text node from the execution record


START

public static java.lang.String START
Xpath to query the start text node from the execution record


ETIME

public static java.lang.String ETIME
Xpath to query the end text node from the execution record

Constructor Detail

UrwgDbXpath

public UrwgDbXpath()