Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 24 30 31 package org.datashare.objects; 32 33 import java.util.Date ; 34 35 42 public interface DSObjectInfoInterface 43 { 44 48 static String CHANNELTYPE = "ChannelInfo"; 49 50 54 static String CLIENTTYPE = "ClientInfo"; 55 56 60 static String DEFAULTOBJECTTYPE = "DefaultObjectInfo"; 61 62 66 static String SESSIONTYPE = "SessionInfo"; 67 68 72 static String CONSUMERTYPE = "ConsumerInfo"; 73 74 static String SUBSESSIONTYPE = "SubSession"; 75 static String SUBCLIENTTYPE = "SubClient"; 76 77 78 static String COLLABORANTS = "Collaborants"; 79 static String COLLABORATION = "Collaboration"; 80 static String ALLSESSIONS = "All Sessions"; 81 static String ARCHIVES = "Closed Sessions"; 82 83 88 String getName(); 89 90 95 String getOwnerName(); 96 97 103 String toString(); 104 105 110 String getType(); 111 112 119 String getOriginalType(); 120 121 126 Object getObject(); 127 128 133 String getInfo(); 134 135 140 Date getDate(); 141 142 147 boolean getActive(); 148 149 155 String getKeyValue(); 156 157 163 String getDatabaseID(); 164 165 172 void setDatabaseID(String databaseID); 173 174 175 178 String getImageURL(); 179 } 180
| Popular Tags
|