KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > services > usermanager > UserPropertyReadOnlyException


1 package org.jahia.services.usermanager;
2
3
4
5 public class UserPropertyReadOnlyException extends Exception JavaDoc {
6
7     public UserPropertyReadOnlyException(UserProperty property, String JavaDoc message) {
8         super(message);
9         this.property = property;
10     }
11
12     private UserProperty property;
13     public UserProperty getProperty () {
14         return property;
15     }
16
17     public void setProperty (UserProperty property) {
18         this.property = property;
19     }
20 }
21
Popular Tags