KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > blogs > model > UserInfo


1 /*
2  * ____.
3  * __/\ ______| |__/\. _______
4  * __ .____| | \ | +----+ \
5  * _______| /--| | | - \ _ | : - \_________
6  * \\______: :---| : : | : | \________>
7  * |__\---\_____________:______: :____|____:_____\
8  * /_____|
9  *
10  * . . . i n j a h i a w e t r u s t . . .
11  *
12  *
13  *
14  * ----- BEGIN LICENSE BLOCK -----
15  * Version: JCSL 1.0
16  *
17  * The contents of this file are subject to the Jahia Community Source License
18  * 1.0 or later (the "License"); you may not use this file except in
19  * compliance with the License. You may obtain a copy of the License at
20  * http://www.jahia.org/license
21  *
22  * Software distributed under the License is distributed on an "AS IS" basis,
23  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
24  * for the rights, obligations and limitations governing use of the contents
25  * of the file. The Original and Upgraded Code is the Jahia CMS and Portal
26  * Server. The developer of the Original and Upgraded Code is JAHIA Ltd. JAHIA
27  * Ltd. owns the copyrights in the portions it created. All Rights Reserved.
28  *
29  * The Shared Modifications are Jahia View Helper.
30  *
31  * The Developer of the Shared Modifications is Jahia Solution Sàrl.
32  * Portions created by the Initial Developer are Copyright (C) 2002 by the
33  * Initial Developer. All Rights Reserved.
34  *
35  * ----- END LICENSE BLOCK -----
36  */

37
38 package org.jahia.blogs.model;
39 import java.io.Serializable JavaDoc;
40
41 /**
42  * Simple model representing an authenticated blog user according to the
43  * Blogger API.
44  *
45  * @author Xavier Lawrence
46  */

47 public interface UserInfo extends Serializable JavaDoc {
48     
49     public static final String JavaDoc USER_ID = "userid";
50     public static final String JavaDoc NICKNAME = "nickname";
51     public static final String JavaDoc FIRSTNAME = "firstname";
52     public static final String JavaDoc LASTNAME = "lastname";
53     public static final String JavaDoc EMAIL = "email";
54     public static final String JavaDoc URL = "url";
55         
56     public String JavaDoc getUserID();
57     public String JavaDoc getNickName();
58     public String JavaDoc getFirstName();
59     public String JavaDoc getLastName();
60     public String JavaDoc getUrl();
61     public String JavaDoc getEmail();
62 }
63
Popular Tags