1 /** 2 * $RCSfile: StreamID.java,v $ 3 * $Revision: 1.3 $ 4 * $Date: 2004/12/10 00:54:27 $ 5 * 6 * Copyright (C) 2004 Jive Software. All rights reserved. 7 * 8 * This software is published under the terms of the GNU Public License (GPL), 9 * a copy of which is included in this distribution. 10 */ 11 12 package org.jivesoftware.messenger; 13 14 /** 15 * A unique identifier for a stream. 16 * 17 * @author Iain Shigeoka 18 */ 19 public interface StreamID { 20 21 /** 22 * Obtain a unique identifier for easily identifying this stream in 23 * a database. 24 * 25 * @return The unique ID for this stream 26 */ 27 public String getID(); 28 }