- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsum.java
More file actions
Latest commit
18 lines (18 loc) · 415 Bytes
/
Copy pathsum.java
File metadata and controls
18 lines (18 loc) · 415 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
packageaction;
importcom.opensymphony.xwork2.ActionSupport;
importjava.sql.*;
publicclasssumextendsActionSupport{
privateStringAuthorName;
publicStringexecute() throwsException{
return"res";
}
publicStringgetAuthorName()
{
returnAuthorName;
}
publicvoidsetAuthorName(StringAuthorName)
{
System.out.println(AuthorName);
this.AuthorName = AuthorName;
}
}