Searched defs:associatedURI (Results 1 - 3 of 3) sorted by relevance

/external/nist-sip/java/gov/nist/javax/sip/parser/ims/
H A DPAssociatedURIParser.java66 * @param associatedURI content to set
68 public PAssociatedURIParser(String associatedURI) argument
70 super(associatedURI);
90 PAssociatedURI associatedURI = new PAssociatedURI();
91 associatedURI.setHeaderName(SIPHeaderNamesIms.P_ASSOCIATED_URI);
93 super.parse(associatedURI);
94 associatedURIList.add(associatedURI);
102 associatedURI = new PAssociatedURI();
103 super.parse(associatedURI);
104 associatedURIList.add(associatedURI);
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
H A DPAssociatedURI.java91 * @param associatedURI - GenericURI to be set in the address of this header
93 public PAssociatedURI(GenericURI associatedURI) argument
97 this.address.setURI(associatedURI);
127 * @param associatedURI - GenericURI to be set in the address of this header
130 public void setAssociatedURI(URI associatedURI) throws NullPointerException argument
132 if (associatedURI == null)
135 this.address.setURI(associatedURI);
H A DPAssociatedURIHeader.java73 * @param associatedURI - GenericURI to be set in the address of this header
76 public void setAssociatedURI(URI associatedURI) throws NullPointerException; argument
84 //public void setAssociatedURI(AddressImpl associatedURI);

Completed in 156 milliseconds