01: /*
02: * SageAttr.java
03: *
04: * Created on November 14, 2001, 2:53 PM
05: */
06:
07: package com.sun.portal.search.db;
08:
09: /**
10: *
11: */
12: public class SageAttr {
13:
14: String name; // Attribute Name - lowercase only
15:
16: // Data type for the attribute -- only one can be set
17: boolean is_string, is_number, is_date, is_zone;
18:
19: /** Creates new SageAttr */
20: public SageAttr() {
21: }
22:
23: }
|