Overview
- Home
- Portlet Concepts
- Portlet Classes
- Portlet TagLib
- JavaDocs
- Portlet DTD
- Download
Writing Portlets
- Hello World
- Portlet with Action
- More examples
Project
- Mailing Lists
- Source Repository
- Issue Tracking
- Project Team
- Road Map
Portlet Catalog
- Basic Portlet
- Bookmarks
- RSS Feed
- Menu
- Login/Logout
- Poll
- Google Search
- Discussion Forum
- Contacts
- Calendar
- Email Client
- Document Manager
Misc.
- Setup jPortlet Project
- Server Side Include
- Internationalization
- Portlet Actions
- Changing Look & Feel
|
Overview
|
This portlet allow users to manage their bookmarks.
|
Classes |
- Portlet
- net.sf.jportlet.portlets.bookmark.BookmarkPortlet
- Action Listener
- net.sf.jportlet.portlets.bookmark.BookmarkActionListener
- Message Listener
- None
|
Init Parameters |
- max.items
-
Max number of bookmarks to show when the portlet is not maximized
(Default=
10 ).
|
Markups (Modes) |
- HTML (VIEW, EDIT)
|
Languages |
- French
- English
|
CSS styles |
None
|
Webflow |
None |
SQL script |
create table T_BOOKMARK (
id VARCHAR(32) not null,
description VARCHAR(255),
title VARCHAR(100) not null,
url VARCHAR(255) not null,
userId VARCHAR(255),
primary key (id)
);
|
|
|
|