Searched refs:associatedURI (Results 1 - 4 of 4) 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);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DHeaderFactoryImpl.java1366 throw new NullPointerException("null associatedURI!");
1368 PAssociatedURI associatedURI = new PAssociatedURI();
1369 associatedURI.setAddress(assocURI);
1371 return associatedURI;

Completed in 123 milliseconds