/* 119 */ return this.scopeKey;
/* */ }
/* */
/* */ public ValidTime getValidTime()
/* */ {
/* 124 */ ValidTime result = null;
/* 125 */ long resultLong = -9223372036854775808L;
/* */
/* 127 */ if (this.parent != null)
/* */ {
/* 129 */ result = this.parent.getValidTime();
/* 130 */ resultLong = result.getValidTime();
/* */ }
/* */
/* 133 */ for (MetaDataRetrieval retrieval : this.retrievals)
/* */ {
/* 135 */ ValidTime temp = retrieval.getValidTime();
/* 136 */ long tempLong = temp.getValidTime();
/* 137 */ if ((tempLong > resultLong) || (result == null))
/* */ {
/* 139 */ result = temp;
/* 140 */ resultLong = tempLong;
/* */ }