| java.lang.Object com.sun.midp.jump.push.executive.JUMPConnectionInfo
JUMPConnectionInfo | final public class JUMPConnectionInfo implements Serializable(Code) | | PushRegistry connection info.
Simple, structure like class
TBD: at see
javax.microedition.io.PushRegistry#registerConnection
|
Field Summary | |
final public String | connection Generic connection protocol, host and port
number (optional parameters may be included separated with
semi-colons (;)). | final public String | filter A connection URL string indicating which senders are allowed to cause
MIDlet to be launched. | final public String | midlet Class name of the MIDlet to be launched, when external data is
available. |
Method Summary | |
public boolean | equals(Object obj) Implements Object.equals() . | public int | hashCode() Implements Object.hashCode() . |
connection | final public String connection(Code) | | Generic connection protocol, host and port
number (optional parameters may be included separated with
semi-colons (;)).
|
filter | final public String filter(Code) | | A connection URL string indicating which senders are allowed to cause
MIDlet to be launched.
|
midlet | final public String midlet(Code) | | Class name of the MIDlet to be launched, when external data is
available.
|
JUMPConnectionInfo | public JUMPConnectionInfo(String connection, String midlet, String filter)(Code) | | Ctor to create filled structure.
Parameters: connection - generic connection protocol, host andport number (optional parameters may be included separated withsemi-colons (;)) Parameters: midlet - class name of the MIDlet to be launched,when external data is available Parameters: filter - a connection URL string indicating which senders areallowed to cause MIDlet to be launched throws: IllegalArgumentException - if any of connection ,midlet or filter is null TBD: unittest null params |
equals | public boolean equals(Object obj)(Code) | | Implements Object.equals() .
Parameters: obj - object to compare with true if equal, fasle otherwise |
hashCode | public int hashCode()(Code) | | Implements Object.hashCode() .
hash code |
|
|