Home | History | Annotate | Download | only in ims

Lines Matching defs:Privacy

44  * Privacy SIP header - RFC 3323.
50 public class Privacy
56 * Privacy type
58 private String privacy;
64 public Privacy() {
65 super(PRIVACY);
69 * Constructor given a privacy type
70 *@param privacy
72 public Privacy(String privacy)
75 this.privacy = privacy;
86 return this.privacy;
92 * Get privacy type
93 * @return privacy type
97 return privacy;
103 * set the privacy type.
104 * @param privacy -- privacy type to set.
107 public void setPrivacy(String privacy) throws ParseException
110 if (privacy == null || privacy == "")
113 + " Privacy, setPrivacy(), privacy value is null or empty");
114 this.privacy = privacy;
141 Privacy retval = (Privacy) super.clone();
142 if (this.privacy != null)
143 retval.privacy = this.privacy;