01: /*
02: * Copyright ? 2006 Sun Microsystems, Inc. All rights reserved.
03: *
04: * Sun Microsystems, Inc. has intellectual property rights relating to
05: * technology embodied in the product that is described in this document.
06: * In particular, and without limitation, these intellectual property
07: * rights may include one or more of the U.S. patents listed at
08: * http://www.sun.com/patents and one or more additional patents or
09: * pending patent applications in the U.S. and in other countries.
10: *
11: * U.S. Government Rights - Commercial software. Government users are subject
12: * to the Sun Microsystems, Inc. standard license agreement and applicable
13: * provisions of the FAR and its supplements. Use is subject to license terms.
14: * This distribution may include materials developed by third parties.
15: * Sun, Sun Microsystems, the Sun logo and Java are trademarks or registered
16: * trademarks of Sun Microsystems, Inc. in the U.S. and other countries.
17: */
18: package com.sun.portal.app.blog.model;
19:
20: public class EditManualBean {
21: private String appEntriesUrl;
22: private String appUserName;
23: private String appUserPassword;
24:
25: public String getAppUserName() {
26: return appUserName;
27: }
28:
29: public void setAppUserName(String appUserName) {
30: this .appUserName = appUserName;
31: }
32:
33: public String getAppUserPassword() {
34: return appUserPassword;
35: }
36:
37: public void setAppUserPassword(String appUserPassword) {
38: this .appUserPassword = appUserPassword;
39: }
40:
41: public String getAppEntriesUrl() {
42: return appEntriesUrl;
43: }
44:
45: public void setAppEntriesUrl(String appEntriesUrl) {
46: this.appEntriesUrl = appEntriesUrl;
47: }
48: }
|