Java Doc for TelURL.java in  » 6.0-JDK-Modules » j2me » gov » nist » siplite » address » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » gov.nist.siplite.address 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


gov.nist.siplite.address.URI
   gov.nist.siplite.address.TelURL

TelURL
public class TelURL extends URI (Code)
Implementation of the TelURL interface.
version:
   JAIN-SIP-1.1
version:
   This code is in the public domain.


Field Summary
protected  TelephoneNumbertelephoneNumber
     Currrent telephone portion of URI.

Constructor Summary
public  TelURL()
    

Method Summary
public  Objectclone()
     Deep copy clone operation.
public  Stringencode()
     Encodes contents in a string.
public  StringgetIsdnSubAddress()
     Returns the value of the isdnSubAddress parameter, or null if it is not set.
public  VectorgetParameterNames()
     Returns an Iterator over the names (Strings) of all parameters present in this ParametersHeader.
public  StringgetPhoneNumber()
     Get the telephone number.
public  StringgetPlainURI()
     Returns the URI part of the address (without parameters) i.e.
public  StringgetPostDial()
     Returns the value of the postDial parameter, or null if it is not set.
public  booleanisGlobal()
     Returns true if this TelURL is global i.e.
public  booleanisSipURI()
     This method determines if this is a URI with a scheme of "sip" or "sips".
public  booleanisTelURL()
    
public  voidsetGlobal(boolean global)
     Sets phone user of this TelURL to be either global or local.
public  voidsetIsdnSubAddress(String isdnSubAddress)
     Sets ISDN subaddress of this TelURL.
public  voidsetPhoneNumber(String telephoneNumber)
     Set the telephone number.
public  voidsetPostDial(String postDial)
     Sets post dial of this TelURL.
public  voidsetTelephoneNumber(TelephoneNumber telephoneNumber)
     Sets the telephone number.
public  StringtoString()
     Return the string encoding.

Field Detail
telephoneNumber
protected TelephoneNumber telephoneNumber(Code)
Currrent telephone portion of URI.




Constructor Detail
TelURL
public TelURL()(Code)
Creates a new instance of TelURLImpl




Method Detail
clone
public Object clone()(Code)
Deep copy clone operation. -- a cloned version of this telephone number.



encode
public String encode()(Code)
Encodes contents in a string. encoded string of object contents



getIsdnSubAddress
public String getIsdnSubAddress()(Code)
Returns the value of the isdnSubAddress parameter, or null if it is not set. the value of the isdnSubAddress parameter



getParameterNames
public Vector getParameterNames()(Code)
Returns an Iterator over the names (Strings) of all parameters present in this ParametersHeader. an Iterator over all the parameter names



getPhoneNumber
public String getPhoneNumber()(Code)
Get the telephone number. -- the telephone number.



getPlainURI
public String getPlainURI()(Code)
Returns the URI part of the address (without parameters) i.e. scheme:user@host:port. URI part of the address



getPostDial
public String getPostDial()(Code)
Returns the value of the postDial parameter, or null if it is not set. the value of the postDial parameter



isGlobal
public boolean isGlobal()(Code)
Returns true if this TelURL is global i.e. if the TelURI has a global phone user. true if this TelURL represents a global phone user,and false otherwise.



isSipURI
public boolean isSipURI()(Code)
This method determines if this is a URI with a scheme of "sip" or "sips". true if the scheme is "sip" or "sips", false otherwise.



isTelURL
public boolean isTelURL()(Code)
This method determines if this is a URI with a scheme of "tel" true if the scheme is "tel", false otherwise.



setGlobal
public void setGlobal(boolean global)(Code)
Sets phone user of this TelURL to be either global or local. The default value is false, hence the TelURL is defaulted to local.
Parameters:
  global - - the boolean value indicating if the TelURL has a globalphone user.



setIsdnSubAddress
public void setIsdnSubAddress(String isdnSubAddress)(Code)
Sets ISDN subaddress of this TelURL. If a subaddress is present, it is appended to the phone number after ";isub=".
Parameters:
  isdnSubAddress - - new value of the isdnSubAddressparameter



setPhoneNumber
public void setPhoneNumber(String telephoneNumber)(Code)
Set the telephone number.
Parameters:
  telephoneNumber - -- long phone number to set.



setPostDial
public void setPostDial(String postDial)(Code)
Sets post dial of this TelURL. The post-dial sequence describes what and when the local entity should send to the phone line.
Parameters:
  postDial - - new value of the postDial parameter



setTelephoneNumber
public void setTelephoneNumber(TelephoneNumber telephoneNumber)(Code)
Sets the telephone number.
Parameters:
  telephoneNumber - telephone number to set.



toString
public String toString()(Code)
Return the string encoding. -- the string encoding.



Fields inherited from gov.nist.siplite.address.URI
final public static String ISUB(Code)(Java Doc)
final public static String LR(Code)(Java Doc)
final public static String MADDR(Code)(Java Doc)
final public static String METHOD(Code)(Java Doc)
final public static String PHONE_CONTEXT_TAG(Code)(Java Doc)
final public static String POSTDIAL(Code)(Java Doc)
final public static String PROVIDER_TAG(Code)(Java Doc)
final public static String TRANSPORT(Code)(Java Doc)
final public static String TTL(Code)(Java Doc)
final public static String USER(Code)(Java Doc)
protected String scheme(Code)(Java Doc)
protected String uriString(Code)(Java Doc)

Methods inherited from gov.nist.siplite.address.URI
public Object clone()(Code)(Java Doc)
public String encode()(Code)(Java Doc)
public String getPlainURI()(Code)(Java Doc)
public String getScheme()(Code)(Java Doc)
public boolean isSipURI()(Code)(Java Doc)
public boolean isTelURL()(Code)(Java Doc)
public void setScheme(String sch) throws IllegalArgumentException(Code)(Java Doc)
public String toString()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.