View Javadoc

1   /*
2    * <cvs:source>$Source: /devel/astrogrid/filestore/common/src/java/org/astrogrid/filestore/common/info/StoreInfo.java,v $</cvs:source>
3    * <cvs:author>$Author: dave $</cvs:author>
4    * <cvs:date>$Date: 2004/07/14 13:50:29 $</cvs:date>
5    * <cvs:version>$Revision: 1.2 $</cvs:version>
6    * <cvs:log>
7    *   $Log: StoreInfo.java,v $
8    *   Revision 1.2  2004/07/14 13:50:29  dave
9    *   Merged development branch, dave-dev-200406301228, into HEAD
10   *
11   *   Revision 1.1.2.2  2004/07/06 09:16:12  dave
12   *   Added delegate interface and mock implementation
13   *
14   *   Revision 1.1.2.1  2004/07/05 04:50:29  dave
15   *   Created initial FileStore components
16   *
17   * </cvs:log>
18   *
19   */
20  package org.astrogrid.filestore.common.info ;
21  
22  /***
23   * A base class for infomation objects.
24   *
25   */
26  public class StoreInfo
27  	{
28  	/***
29  	 * The object identifier.
30  	 *
31  	 */
32  	private String ident ;
33  
34  	/***
35  	 * Access to the identifier.
36  	 *
37  	 */
38  	public String getIdent()
39  		{
40  		return this.ident ;
41  		}
42  
43  	/***
44  	 * Access to the identifier.
45  	 *
46  	 */
47  	public void setIdent(String value)
48  		{
49  		if (null == this.ident)
50  			{
51  			this.ident = value ;
52  			}
53  		}
54  	}
55