KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > pooka > ldap > LDAPAddressEntry


1 package net.suberic.pooka.ldap;
2 import net.suberic.pooka.*;
3
4 import javax.naming.*;
5 import javax.naming.directory.*;
6
7 /**
8  * An Address Book Entry.
9  */

10 public class LDAPAddressEntry implements AddressBookEntry {
11  
12   /**
13    * Creates an LDAPAddressEntry from a given Attribute set.
14    */

15   public LDAPAddressEntry(Attributes newAttr) {
16
17   }
18
19   /**
20    * Gets a property on the LDAPAddressEntry.
21    */

22   public String JavaDoc getProperty(String JavaDoc propertyName) {
23     return null;
24   }
25
26
27   /**
28    * Sets a property on the LDAPAddressEntry.
29    */

30   public void setProperty(String JavaDoc propertyName, String JavaDoc value) {
31
32   }
33
34   /**
35    * Gets the InternetAddresses associated with this LDAPAddressEntry.
36    */

37   public javax.mail.internet.InternetAddress JavaDoc[] getAddresses() {
38     return null;
39   }
40
41   /**
42    * Gets the String that's a proper representation of the address(es)
43    * in this AddressBookEntry.
44    */

45   public String JavaDoc getAddressString() {
46     return "";
47   }
48
49
50   /**
51    * Gets the PersonalName property associated with this LDAPAddressEntry.
52    */

53   public String JavaDoc getPersonalName() {
54     return null;
55   }
56
57   /**
58    * Gets the FirstName property associated with this LDAPAddressEntry.
59    */

60   public String JavaDoc getFirstName() {
61     return null;
62   }
63
64   /**
65    * Gets the LastName property associated with this LDAPAddressEntry.
66    */

67   public String JavaDoc getLastName() {
68     return null;
69   }
70
71   /**
72    * sets the InternetAddress associated with this LDAPAddressEntry.
73    */

74   public void setAddresses(javax.mail.internet.InternetAddress JavaDoc[] newAddress) {
75
76   }
77
78   /**
79    * sets the InternetAddress associated with this LDAPAddressEntry.
80    */

81   public void setAddress(javax.mail.internet.InternetAddress JavaDoc newAddress) {
82
83   }
84
85   /**
86    * Gets the PersonalName property associated with this LDAPAddressEntry.
87    */

88   public void setPersonalName(String JavaDoc newName) {
89
90   }
91
92   /**
93    * Gets the FirstName property associated with this LDAPAddressEntry.
94    */

95   public void setFirstName(String JavaDoc newName) {
96
97   }
98
99   /**
100    * Gets the LastName property associated with this LDAPAddressEntry.
101    */

102   public void setLastName(String JavaDoc newName) {
103
104   }
105
106   /**
107    * Gets a Properties representation of the values in the LDAPAddressEntry.
108    */

109   public java.util.Properties JavaDoc getProperties() {
110     return null;
111   }
112
113   /**
114    * <p>Gets the ID of this AddressBookEntry. This is the ID that will
115    * be searched by default, that can be entered into the To: field, etc.</p>
116    */

117   public String JavaDoc getID() {
118     return "";
119   }
120
121   /**
122    * <p>Sets the ID of this AddressBookEntry. This is the ID that will
123    * be searched by default, that can be entered into the To: field, etc.</p>
124    */

125   public void setID(String JavaDoc newID) {
126
127   }
128
129
130 }
131
Popular Tags