KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > account1 > cci > Contact


1 // ----------------------------------------------------------------------------
2
// Instance/IntfBegin
3
// ----------------------------------------------------------------------------
4
//////////////////////////////////////////////////////////////////////////////
5
//
6
// Name: $Id: JMIAbstractMapper.java,v 1.11 2006/01/21 23:09:07 wfro Exp $
7
// Generated by: openMDX JMI Mapper
8
// Date: Mon Apr 03 11:38:55 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.account1.cci;
14
15 public interface Contact
16   extends
17  org.opencrx.kernel.account1.cci.Account,
18  org.opencrx.kernel.generic.cci.Pictured {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfAttributeGet0_1
21
// ----------------------------------------------------------------------------
22
/**
23    * @return The possibly null value for attribute <code>anniversary</code>.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

26   public java.util.Date JavaDoc getAnniversary(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfAttributeSet0_1
31
// ----------------------------------------------------------------------------
32

33
34   /**
35    * Sets a new value for the attribute <code>anniversary</code>.
36    * @param newValue The possibly null new value for attribute <code>anniversary</code>.
37    * @exception JmiException If the value cannot be set for some reason.
38    */

39   public void setAnniversary(
40     java.util.Date JavaDoc newValue
41   );
42
43 // ----------------------------------------------------------------------------
44
// Instance/IntfAttributeGet0_1
45
// ----------------------------------------------------------------------------
46
/**
47    * @return The possibly null value for attribute <code>annualIncomeAmount</code>.
48    * @exception JmiException If the value cannot be retrieved for some reason.
49    */

50   public java.math.BigDecimal JavaDoc getAnnualIncomeAmount(
51   );
52
53 // ----------------------------------------------------------------------------
54
// Instance/IntfAttributeSet0_1
55
// ----------------------------------------------------------------------------
56

57
58   /**
59    * Sets a new value for the attribute <code>annualIncomeAmount</code>.
60    * @param newValue The possibly null new value for attribute <code>annualIncomeAmount</code>.
61    * @exception JmiException If the value cannot be set for some reason.
62    */

63   public void setAnnualIncomeAmount(
64     java.math.BigDecimal JavaDoc newValue
65   );
66
67 // ----------------------------------------------------------------------------
68
// Instance/IntfAttributeGet0_1
69
// ----------------------------------------------------------------------------
70
/**
71    * @return The possibly null value for attribute <code>annualIncomeCurrency</code>.
72    * @exception JmiException If the value cannot be retrieved for some reason.
73    */

74   public Short JavaDoc getAnnualIncomeCurrency(
75   );
76
77 // ----------------------------------------------------------------------------
78
// Instance/IntfAttributeSet0_1
79
// ----------------------------------------------------------------------------
80

81
82   /**
83    * Sets a new value for the attribute <code>annualIncomeCurrency</code>.
84    * @param newValue The possibly null new value for attribute <code>annualIncomeCurrency</code>.
85    * @exception JmiException If the value cannot be set for some reason.
86    */

87   public void setAnnualIncomeCurrency(
88     Short JavaDoc newValue
89   );
90
91 // ----------------------------------------------------------------------------
92
// Instance/IntfReferenceGet0_1NoQualifier
93
// ----------------------------------------------------------------------------
94
/**
95    * Retrieves the value for the optional reference <code>assistant</code>.
96    * @return The possibly null value for this reference.
97    * @exception JmiException If the value cannot be retrieved for some reason.
98    */

99   public org.opencrx.kernel.account1.cci.Account getAssistant(
100   );
101
102 // ----------------------------------------------------------------------------
103
// Instance/IntfReferenceSetNoQualifier
104
// ----------------------------------------------------------------------------
105
/**
106    * Sets a new value for the reference <code>assistant</code>.
107    * @param newValue The non-null new value for this reference.
108    * @exception JmiException If the value cannot be set for some reason.
109    */

110   public void setAssistant(
111     org.opencrx.kernel.account1.cci.Account newValue
112   );
113
114 // ----------------------------------------------------------------------------
115
// Instance/IntfReferenceRemoveOptional
116
// ----------------------------------------------------------------------------
117
/**
118    * Removes the value for the optional reference <code>assistant</code>.
119    * @exception JmiException If the value cannot be removed for some reason.
120    */

121   public void removeAssistant (
122   );
123
124 // ----------------------------------------------------------------------------
125
// Instance/IntfAttributeGet0_1
126
// ----------------------------------------------------------------------------
127
/**
128    * @return The possibly null value for attribute <code>birthdate</code>.
129    * @exception JmiException If the value cannot be retrieved for some reason.
130    */

131   public java.util.Date JavaDoc getBirthdate(
132   );
133
134 // ----------------------------------------------------------------------------
135
// Instance/IntfAttributeSet0_1
136
// ----------------------------------------------------------------------------
137

138
139   /**
140    * Sets a new value for the attribute <code>birthdate</code>.
141    * @param newValue The possibly null new value for attribute <code>birthdate</code>.
142    * @exception JmiException If the value cannot be set for some reason.
143    */

144   public void setBirthdate(
145     java.util.Date JavaDoc newValue
146   );
147
148 // ----------------------------------------------------------------------------
149
// Instance/IntfAttributeGetList
150
// ----------------------------------------------------------------------------
151
/**
152    * @return A list containing all elements for this attribute.
153    * @exception JmiException If the values cannot be retrieved for some reason.
154    */

155   public java.util.List JavaDoc getChildrenNames(
156   );
157
158   /**
159    * @param index The index of the element to return.
160    * @return The element at the specified position in the list of all values for this attribute.
161    * @exception JmiException If the value cannot be retrieved for some reason.
162    */

163   public String JavaDoc getChildrenNames(
164     int index
165   );
166
167 // ----------------------------------------------------------------------------
168
// Instance/IntfAttributeSetList
169
// ----------------------------------------------------------------------------
170
/**
171    * @param newValue A list containing all the new elements for this attribute.
172    * @exception JmiException If the values cannot be set for some reason.
173    */

174   public void setChildrenNames(
175     java.util.List JavaDoc newValue
176   );
177
178   /**
179    * @param newValue An array containing all the new elements for this attribute.
180    * @exception JmiException If the values cannot be set for some reason.
181    */

182   public void setChildrenNames(
183     String JavaDoc[] newValue
184   );
185
186 // ----------------------------------------------------------------------------
187
// Instance/IntfReferenceGet0_1WithQualifier
188
// ----------------------------------------------------------------------------
189
/**
190    * Retrieves the value for the reference <code>contactRelationship</code>
191    * for the specified qualifier attribute value.
192    * @param id The value for the qualifier attribute that qualifies this reference.
193    * @return The possibly null value for this reference.
194    * @exception JmiException If the value cannot be retrieved for some reason.
195    */

196   public org.opencrx.kernel.account1.cci.ContactRelationship getContactRelationship(
197     String JavaDoc id
198   );
199
200 // ----------------------------------------------------------------------------
201
// Instance/IntfReferenceGet0_nWithFilter
202
// ----------------------------------------------------------------------------
203
/**
204    * Retrieves a collection containing all the elements for the reference
205    * <code>contactRelationship</code>.
206    * @return A collection containing all the elements for this reference.
207    * @exception JmiException If the values cannot be retrieved for some reason.
208    */

209   public java.util.Collection JavaDoc getContactRelationship(
210   );
211
212   /**
213    * Retrieves the value for the reference <code>contactRelationship</code>
214    * for the specified filter.
215    * @param filter filter which is applied to the set of referenced objects.
216    * @return The filtered collection of referenced objects.
217    * @exception JmiException If the value cannot be retrieved for some reason.
218    */

219   public java.util.List JavaDoc getContactRelationship(
220     org.opencrx.kernel.account1.cci.ContactRelationshipFilter filter
221   );
222
223 // ----------------------------------------------------------------------------
224
// Instance/IntfReferenceAddWithQualifier
225
// ----------------------------------------------------------------------------
226
/**
227    * @param id The qualifier attribute value that qualifies the reference to get the element to be appended.
228    * @param newValue The element to be appended.
229    * @exception JmiException If the value cannot be appended for some reason.
230    */

231   public void addContactRelationship (
232     String JavaDoc id,
233     org.opencrx.kernel.account1.cci.ContactRelationship newValue
234   );
235
236 // ----------------------------------------------------------------------------
237
// Instance/IntfReferenceAddWithoutQualifier
238
// ----------------------------------------------------------------------------
239
/**
240    * @param newValue The element to be appended.
241    * @exception JmiException If the value cannot be appended for some reason.
242    */

243   public void addContactRelationship (
244     org.opencrx.kernel.account1.cci.ContactRelationship newValue
245   );
246
247 // ----------------------------------------------------------------------------
248
// Instance/IntfReferenceRemoveWithQualifier
249
// ----------------------------------------------------------------------------
250
/**
251    * @exception JmiException If the value cannot be removed for some reason.
252    */

253   public void removeContactRelationship (
254     String JavaDoc id
255   );
256 // ----------------------------------------------------------------------------
257
// Instance/IntfAttributeGet0_1
258
// ----------------------------------------------------------------------------
259
/**
260    * @return The possibly null value for attribute <code>department</code>.
261    * @exception JmiException If the value cannot be retrieved for some reason.
262    */

263   public String JavaDoc getDepartment(
264   );
265
266 // ----------------------------------------------------------------------------
267
// Instance/IntfAttributeSet0_1
268
// ----------------------------------------------------------------------------
269

270
271   /**
272    * Sets a new value for the attribute <code>department</code>.
273    * @param newValue The possibly null new value for attribute <code>department</code>.
274    * @exception JmiException If the value cannot be set for some reason.
275    */

276   public void setDepartment(
277     String JavaDoc newValue
278   );
279
280 // ----------------------------------------------------------------------------
281
// Instance/IntfReferenceGet0_1NoQualifier
282
// ----------------------------------------------------------------------------
283
/**
284    * Retrieves the value for the optional reference <code>deputy</code>.
285    * @return The possibly null value for this reference.
286    * @exception JmiException If the value cannot be retrieved for some reason.
287    */

288   public org.opencrx.kernel.account1.cci.Account getDeputy(
289   );
290
291 // ----------------------------------------------------------------------------
292
// Instance/IntfReferenceSetNoQualifier
293
// ----------------------------------------------------------------------------
294
/**
295    * Sets a new value for the reference <code>deputy</code>.
296    * @param newValue The non-null new value for this reference.
297    * @exception JmiException If the value cannot be set for some reason.
298    */

299   public void setDeputy(
300     org.opencrx.kernel.account1.cci.Account newValue
301   );
302
303 // ----------------------------------------------------------------------------
304
// Instance/IntfReferenceRemoveOptional
305
// ----------------------------------------------------------------------------
306
/**
307    * Removes the value for the optional reference <code>deputy</code>.
308    * @exception JmiException If the value cannot be removed for some reason.
309    */

310   public void removeDeputy (
311   );
312
313 // ----------------------------------------------------------------------------
314
// Instance/IntfAttributeGet0_1
315
// ----------------------------------------------------------------------------
316
/**
317    * @return The possibly null value for attribute <code>doNotBulkPostalMail</code>.
318    * @exception JmiException If the value cannot be retrieved for some reason.
319    */

320   public Boolean JavaDoc isDoNotBulkPostalMail(
321   );
322
323 // ----------------------------------------------------------------------------
324
// Instance/IntfAttributeSet0_1
325
// ----------------------------------------------------------------------------
326

327
328   /**
329    * Sets a new value for the attribute <code>doNotBulkPostalMail</code>.
330    * @param newValue The possibly null new value for attribute <code>doNotBulkPostalMail</code>.
331    * @exception JmiException If the value cannot be set for some reason.
332    */

333   public void setDoNotBulkPostalMail(
334     Boolean JavaDoc newValue
335   );
336
337 // ----------------------------------------------------------------------------
338
// Instance/IntfAttributeGet0_1
339
// ----------------------------------------------------------------------------
340
/**
341    * @return The possibly null value for attribute <code>doNotEMail</code>.
342    * @exception JmiException If the value cannot be retrieved for some reason.
343    */

344   public Boolean JavaDoc isDoNotEMail(
345   );
346
347 // ----------------------------------------------------------------------------
348
// Instance/IntfAttributeSet0_1
349
// ----------------------------------------------------------------------------
350

351
352   /**
353    * Sets a new value for the attribute <code>doNotEMail</code>.
354    * @param newValue The possibly null new value for attribute <code>doNotEMail</code>.
355    * @exception JmiException If the value cannot be set for some reason.
356    */

357   public void setDoNotEMail(
358     Boolean JavaDoc newValue
359   );
360
361 // ----------------------------------------------------------------------------
362
// Instance/IntfAttributeGet0_1
363
// ----------------------------------------------------------------------------
364
/**
365    * @return The possibly null value for attribute <code>doNotFax</code>.
366    * @exception JmiException If the value cannot be retrieved for some reason.
367    */

368   public Boolean JavaDoc isDoNotFax(
369   );
370
371 // ----------------------------------------------------------------------------
372
// Instance/IntfAttributeSet0_1
373
// ----------------------------------------------------------------------------
374

375
376   /**
377    * Sets a new value for the attribute <code>doNotFax</code>.
378    * @param newValue The possibly null new value for attribute <code>doNotFax</code>.
379    * @exception JmiException If the value cannot be set for some reason.
380    */

381   public void setDoNotFax(
382     Boolean JavaDoc newValue
383   );
384
385 // ----------------------------------------------------------------------------
386
// Instance/IntfAttributeGet0_1
387
// ----------------------------------------------------------------------------
388
/**
389    * @return The possibly null value for attribute <code>doNotPhone</code>.
390    * @exception JmiException If the value cannot be retrieved for some reason.
391    */

392   public Boolean JavaDoc isDoNotPhone(
393   );
394
395 // ----------------------------------------------------------------------------
396
// Instance/IntfAttributeSet0_1
397
// ----------------------------------------------------------------------------
398

399
400   /**
401    * Sets a new value for the attribute <code>doNotPhone</code>.
402    * @param newValue The possibly null new value for attribute <code>doNotPhone</code>.
403    * @exception JmiException If the value cannot be set for some reason.
404    */

405   public void setDoNotPhone(
406     Boolean JavaDoc newValue
407   );
408
409 // ----------------------------------------------------------------------------
410
// Instance/IntfAttributeGet0_1
411
// ----------------------------------------------------------------------------
412
/**
413    * @return The possibly null value for attribute <code>doNotPostalMail</code>.
414    * @exception JmiException If the value cannot be retrieved for some reason.
415    */

416   public Boolean JavaDoc isDoNotPostalMail(
417   );
418
419 // ----------------------------------------------------------------------------
420
// Instance/IntfAttributeSet0_1
421
// ----------------------------------------------------------------------------
422

423
424   /**
425    * Sets a new value for the attribute <code>doNotPostalMail</code>.
426    * @param newValue The possibly null new value for attribute <code>doNotPostalMail</code>.
427    * @exception JmiException If the value cannot be set for some reason.
428    */

429   public void setDoNotPostalMail(
430     Boolean JavaDoc newValue
431   );
432
433 // ----------------------------------------------------------------------------
434
// Instance/IntfAttributeGet1_1
435
// ----------------------------------------------------------------------------
436
/**
437    * Retrieves the value for the attribute <code>education</code>.
438    * @return The non-null value for attribute <code>education</code>.
439    * @exception JmiException If the value cannot be retrieved for some reason.
440    */

441   public short getEducation(
442   );
443
444 // ----------------------------------------------------------------------------
445
// Instance/IntfAttributeSet1_1
446
// ----------------------------------------------------------------------------
447
/**
448    * Sets a new value for the attribute <code>education</code>.
449    * @param newValue The non-null new value for attribute <code>education</code>.
450    * @exception JmiException If the value cannot be set for some reason.
451    */

452   public void setEducation(
453     short newValue
454   );
455
456 // ----------------------------------------------------------------------------
457
// Instance/IntfOperation
458
// ----------------------------------------------------------------------------
459

460   public org.opencrx.kernel.base.cci.ExportResult exportVCard(
461       org.opencrx.kernel.account1.cci.ExportVCardParams params
462   ) throws javax.jmi.reflect.RefException ;
463
464   /**
465    */

466   public org.opencrx.kernel.base.cci.ExportResult exportVCard(
467       short locale
468   ) throws javax.jmi.reflect.RefException ;
469
470 // ----------------------------------------------------------------------------
471
// Instance/IntfAttributeGet1_1
472
// ----------------------------------------------------------------------------
473
/**
474    * Retrieves the value for the attribute <code>familyStatus</code>.
475    * @return The non-null value for attribute <code>familyStatus</code>.
476    * @exception JmiException If the value cannot be retrieved for some reason.
477    */

478   public short getFamilyStatus(
479   );
480
481 // ----------------------------------------------------------------------------
482
// Instance/IntfAttributeSet1_1
483
// ----------------------------------------------------------------------------
484
/**
485    * Sets a new value for the attribute <code>familyStatus</code>.
486    * @param newValue The non-null new value for attribute <code>familyStatus</code>.
487    * @exception JmiException If the value cannot be set for some reason.
488    */

489   public void setFamilyStatus(
490     short newValue
491   );
492
493 // ----------------------------------------------------------------------------
494
// Instance/IntfAttributeGet0_1
495
// ----------------------------------------------------------------------------
496
/**
497    * @return The possibly null value for attribute <code>firstName</code>.
498    * @exception JmiException If the value cannot be retrieved for some reason.
499    */

500   public String JavaDoc getFirstName(
501   );
502
503 // ----------------------------------------------------------------------------
504
// Instance/IntfAttributeSet0_1
505
// ----------------------------------------------------------------------------
506

507
508   /**
509    * Sets a new value for the attribute <code>firstName</code>.
510    * @param newValue The possibly null new value for attribute <code>firstName</code>.
511    * @exception JmiException If the value cannot be set for some reason.
512    */

513   public void setFirstName(
514     String JavaDoc newValue
515   );
516
517 // ----------------------------------------------------------------------------
518
// Instance/IntfAttributeGet1_1
519
// ----------------------------------------------------------------------------
520
/**
521    * Retrieves the value for the attribute <code>gender</code>.
522    * @return The non-null value for attribute <code>gender</code>.
523    * @exception JmiException If the value cannot be retrieved for some reason.
524    */

525   public short getGender(
526   );
527
528 // ----------------------------------------------------------------------------
529
// Instance/IntfAttributeSet1_1
530
// ----------------------------------------------------------------------------
531
/**
532    * Sets a new value for the attribute <code>gender</code>.
533    * @param newValue The non-null new value for attribute <code>gender</code>.
534    * @exception JmiException If the value cannot be set for some reason.
535    */

536   public void setGender(
537     short newValue
538   );
539
540 // ----------------------------------------------------------------------------
541
// Instance/IntfAttributeGet0_1
542
// ----------------------------------------------------------------------------
543
/**
544    * @return The possibly null value for attribute <code>governmentId</code>.
545    * @exception JmiException If the value cannot be retrieved for some reason.
546    */

547   public String JavaDoc getGovernmentId(
548   );
549
550 // ----------------------------------------------------------------------------
551
// Instance/IntfAttributeSet0_1
552
// ----------------------------------------------------------------------------
553

554
555   /**
556    * Sets a new value for the attribute <code>governmentId</code>.
557    * @param newValue The possibly null new value for attribute <code>governmentId</code>.
558    * @exception JmiException If the value cannot be set for some reason.
559    */

560   public void setGovernmentId(
561     String JavaDoc newValue
562   );
563
564 // ----------------------------------------------------------------------------
565
// Instance/IntfAttributeGet0_1
566
// ----------------------------------------------------------------------------
567
/**
568    * @return The possibly null value for attribute <code>jobRole</code>.
569    * @exception JmiException If the value cannot be retrieved for some reason.
570    */

571   public String JavaDoc getJobRole(
572   );
573
574 // ----------------------------------------------------------------------------
575
// Instance/IntfAttributeSet0_1
576
// ----------------------------------------------------------------------------
577

578
579   /**
580    * Sets a new value for the attribute <code>jobRole</code>.
581    * @param newValue The possibly null new value for attribute <code>jobRole</code>.
582    * @exception JmiException If the value cannot be set for some reason.
583    */

584   public void setJobRole(
585     String JavaDoc newValue
586   );
587
588 // ----------------------------------------------------------------------------
589
// Instance/IntfAttributeGet0_1
590
// ----------------------------------------------------------------------------
591
/**
592    * @return The possibly null value for attribute <code>jobTitle</code>.
593    * @exception JmiException If the value cannot be retrieved for some reason.
594    */

595   public String JavaDoc getJobTitle(
596   );
597
598 // ----------------------------------------------------------------------------
599
// Instance/IntfAttributeSet0_1
600
// ----------------------------------------------------------------------------
601

602
603   /**
604    * Sets a new value for the attribute <code>jobTitle</code>.
605    * @param newValue The possibly null new value for attribute <code>jobTitle</code>.
606    * @exception JmiException If the value cannot be set for some reason.
607    */

608   public void setJobTitle(
609     String JavaDoc newValue
610   );
611
612 // ----------------------------------------------------------------------------
613
// Instance/IntfAttributeGet0_1
614
// ----------------------------------------------------------------------------
615
/**
616    * @return The possibly null value for attribute <code>lastName</code>.
617    * @exception JmiException If the value cannot be retrieved for some reason.
618    */

619   public String JavaDoc getLastName(
620   );
621
622 // ----------------------------------------------------------------------------
623
// Instance/IntfAttributeSet0_1
624
// ----------------------------------------------------------------------------
625

626
627   /**
628    * Sets a new value for the attribute <code>lastName</code>.
629    * @param newValue The possibly null new value for attribute <code>lastName</code>.
630    * @exception JmiException If the value cannot be set for some reason.
631    */

632   public void setLastName(
633     String JavaDoc newValue
634   );
635
636 // ----------------------------------------------------------------------------
637
// Instance/IntfAttributeGet0_1
638
// ----------------------------------------------------------------------------
639
/**
640    * @return The possibly null value for attribute <code>middleName</code>.
641    * @exception JmiException If the value cannot be retrieved for some reason.
642    */

643   public String JavaDoc getMiddleName(
644   );
645
646 // ----------------------------------------------------------------------------
647
// Instance/IntfAttributeSet0_1
648
// ----------------------------------------------------------------------------
649

650
651   /**
652    * Sets a new value for the attribute <code>middleName</code>.
653    * @param newValue The possibly null new value for attribute <code>middleName</code>.
654    * @exception JmiException If the value cannot be set for some reason.
655    */

656   public void setMiddleName(
657     String JavaDoc newValue
658   );
659
660 // ----------------------------------------------------------------------------
661
// Instance/IntfAttributeGet0_1
662
// ----------------------------------------------------------------------------
663
/**
664    * @return The possibly null value for attribute <code>nickName</code>.
665    * @exception JmiException If the value cannot be retrieved for some reason.
666    */

667   public String JavaDoc getNickName(
668   );
669
670 // ----------------------------------------------------------------------------
671
// Instance/IntfAttributeSet0_1
672
// ----------------------------------------------------------------------------
673

674
675   /**
676    * Sets a new value for the attribute <code>nickName</code>.
677    * @param newValue The possibly null new value for attribute <code>nickName</code>.
678    * @exception JmiException If the value cannot be set for some reason.
679    */

680   public void setNickName(
681     String JavaDoc newValue
682   );
683
684 // ----------------------------------------------------------------------------
685
// Instance/IntfAttributeGet0_1
686
// ----------------------------------------------------------------------------
687
/**
688    * @return The possibly null value for attribute <code>numberOfChildren</code>.
689    * @exception JmiException If the value cannot be retrieved for some reason.
690    */

691   public Short JavaDoc getNumberOfChildren(
692   );
693
694 // ----------------------------------------------------------------------------
695
// Instance/IntfAttributeSet0_1
696
// ----------------------------------------------------------------------------
697

698
699   /**
700    * Sets a new value for the attribute <code>numberOfChildren</code>.
701    * @param newValue The possibly null new value for attribute <code>numberOfChildren</code>.
702    * @exception JmiException If the value cannot be set for some reason.
703    */

704   public void setNumberOfChildren(
705     Short JavaDoc newValue
706   );
707
708 // ----------------------------------------------------------------------------
709
// Instance/IntfAttributeGet0_1
710
// ----------------------------------------------------------------------------
711
/**
712    * @return The possibly null value for attribute <code>organization</code>.
713    * @exception JmiException If the value cannot be retrieved for some reason.
714    */

715   public String JavaDoc getOrganization(
716   );
717
718 // ----------------------------------------------------------------------------
719
// Instance/IntfAttributeSet0_1
720
// ----------------------------------------------------------------------------
721

722
723   /**
724    * Sets a new value for the attribute <code>organization</code>.
725    * @param newValue The possibly null new value for attribute <code>organization</code>.
726    * @exception JmiException If the value cannot be set for some reason.
727    */

728   public void setOrganization(
729     String JavaDoc newValue
730   );
731
732 // ----------------------------------------------------------------------------
733
// Instance/IntfReferenceGet0_1WithQualifier
734
// ----------------------------------------------------------------------------
735
/**
736    * Retrieves the value for the reference <code>ouMembership</code> for the
737    * specified qualifier attribute value.
738    * @param index The value for the qualifier attribute that qualifies this reference.
739    * @return The possibly null value for this reference.
740    * @exception JmiException If the value cannot be retrieved for some reason.
741    */

742   public org.opencrx.kernel.account1.cci.OrganizationalUnit getOuMembership(
743     int index
744   );
745
746 // ----------------------------------------------------------------------------
747
// Instance/IntfReferenceGet0_nNoFilter
748
// ----------------------------------------------------------------------------
749
/**
750    * Retrieves the objects referenced by <code>ouMembership</code>.
751    * @return The collection of referenced objects.
752    * @exception JmiException If the value cannot be retrieved for some reason.
753    */

754   public java.util.Collection JavaDoc getOuMembership(
755   );
756
757 // ----------------------------------------------------------------------------
758
// Instance/IntfAttributeGet1_1
759
// ----------------------------------------------------------------------------
760
/**
761    * Retrieves the value for the attribute <code>preferredContactMethod</code>.
762    * @return The non-null value for attribute <code>preferredContactMethod</code>.
763    * @exception JmiException If the value cannot be retrieved for some reason.
764    */

765   public short getPreferredContactMethod(
766   );
767
768 // ----------------------------------------------------------------------------
769
// Instance/IntfAttributeSet1_1
770
// ----------------------------------------------------------------------------
771
/**
772    * Sets a new value for the attribute <code>preferredContactMethod</code>.
773    * @param newValue The non-null new value for attribute <code>preferredContactMethod</code>.
774    * @exception JmiException If the value cannot be set for some reason.
775    */

776   public void setPreferredContactMethod(
777     short newValue
778   );
779
780 // ----------------------------------------------------------------------------
781
// Instance/IntfAttributeGet1_1
782
// ----------------------------------------------------------------------------
783
/**
784    * Retrieves the value for the attribute <code>preferredSpokenLanguage</code>.
785    * @return The non-null value for attribute <code>preferredSpokenLanguage</code>.
786    * @exception JmiException If the value cannot be retrieved for some reason.
787    */

788   public short getPreferredSpokenLanguage(
789   );
790
791 // ----------------------------------------------------------------------------
792
// Instance/IntfAttributeSet1_1
793
// ----------------------------------------------------------------------------
794
/**
795    * Sets a new value for the attribute <code>preferredSpokenLanguage</code>.
796    * @param newValue The non-null new value for attribute <code>preferredSpokenLanguage</code>.
797    * @exception JmiException If the value cannot be set for some reason.
798    */

799   public void setPreferredSpokenLanguage(
800     short newValue
801   );
802
803 // ----------------------------------------------------------------------------
804
// Instance/IntfAttributeGet1_1
805
// ----------------------------------------------------------------------------
806
/**
807    * Retrieves the value for the attribute <code>preferredWrittenLanguage</code>.
808    * @return The non-null value for attribute <code>preferredWrittenLanguage</code>.
809    * @exception JmiException If the value cannot be retrieved for some reason.
810    */

811   public short getPreferredWrittenLanguage(
812   );
813
814 // ----------------------------------------------------------------------------
815
// Instance/IntfAttributeSet1_1
816
// ----------------------------------------------------------------------------
817
/**
818    * Sets a new value for the attribute <code>preferredWrittenLanguage</code>.
819    * @param newValue The non-null new value for attribute <code>preferredWrittenLanguage</code>.
820    * @exception JmiException If the value cannot be set for some reason.
821    */

822   public void setPreferredWrittenLanguage(
823     short newValue
824   );
825
826 // ----------------------------------------------------------------------------
827
// Instance/IntfReferenceGet0_1NoQualifier
828
// ----------------------------------------------------------------------------
829
/**
830    * Retrieves the value for the optional reference <code>reportsTo</code>.
831    * @return The possibly null value for this reference.
832    * @exception JmiException If the value cannot be retrieved for some reason.
833    */

834   public org.opencrx.kernel.account1.cci.Contact getReportsTo(
835   );
836
837 // ----------------------------------------------------------------------------
838
// Instance/IntfReferenceSetNoQualifier
839
// ----------------------------------------------------------------------------
840
/**
841    * Sets a new value for the reference <code>reportsTo</code>.
842    * @param newValue The non-null new value for this reference.
843    * @exception JmiException If the value cannot be set for some reason.
844    */

845   public void setReportsTo(
846     org.opencrx.kernel.account1.cci.Contact newValue
847   );
848
849 // ----------------------------------------------------------------------------
850
// Instance/IntfReferenceRemoveOptional
851
// ----------------------------------------------------------------------------
852
/**
853    * Removes the value for the optional reference <code>reportsTo</code>.
854    * @exception JmiException If the value cannot be removed for some reason.
855    */

856   public void removeReportsTo (
857   );
858
859 // ----------------------------------------------------------------------------
860
// Instance/IntfAttributeGet0_1
861
// ----------------------------------------------------------------------------
862
/**
863    * @return The possibly null value for attribute <code>salutation</code>.
864    * @exception JmiException If the value cannot be retrieved for some reason.
865    */

866   public String JavaDoc getSalutation(
867   );
868
869 // ----------------------------------------------------------------------------
870
// Instance/IntfAttributeSet0_1
871
// ----------------------------------------------------------------------------
872

873
874   /**
875    * Sets a new value for the attribute <code>salutation</code>.
876    * @param newValue The possibly null new value for attribute <code>salutation</code>.
877    * @exception JmiException If the value cannot be set for some reason.
878    */

879   public void setSalutation(
880     String JavaDoc newValue
881   );
882
883 // ----------------------------------------------------------------------------
884
// Instance/IntfAttributeGet1_1
885
// ----------------------------------------------------------------------------
886
/**
887    * Retrieves the value for the attribute <code>salutationCode</code>.
888    * @return The non-null value for attribute <code>salutationCode</code>.
889    * @exception JmiException If the value cannot be retrieved for some reason.
890    */

891   public short getSalutationCode(
892   );
893
894 // ----------------------------------------------------------------------------
895
// Instance/IntfAttributeSet1_1
896
// ----------------------------------------------------------------------------
897
/**
898    * Sets a new value for the attribute <code>salutationCode</code>.
899    * @param newValue The non-null new value for attribute <code>salutationCode</code>.
900    * @exception JmiException If the value cannot be set for some reason.
901    */

902   public void setSalutationCode(
903     short newValue
904   );
905
906 // ----------------------------------------------------------------------------
907
// Instance/IntfAttributeGet0_1
908
// ----------------------------------------------------------------------------
909
/**
910    * @return The possibly null value for attribute <code>suffix</code>.
911    * @exception JmiException If the value cannot be retrieved for some reason.
912    */

913   public String JavaDoc getSuffix(
914   );
915
916 // ----------------------------------------------------------------------------
917
// Instance/IntfAttributeSet0_1
918
// ----------------------------------------------------------------------------
919

920
921   /**
922    * Sets a new value for the attribute <code>suffix</code>.
923    * @param newValue The possibly null new value for attribute <code>suffix</code>.
924    * @exception JmiException If the value cannot be set for some reason.
925    */

926   public void setSuffix(
927     String JavaDoc newValue
928   );
929
930 // ----------------------------------------------------------------------------
931
// Instance/IntfEnd.vm
932
// ----------------------------------------------------------------------------
933
}
934
Popular Tags