Skip to content
Permalink
29af298388
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
87 lines (47 sloc) 1.14 KB
package com.example.booksharing21;
public class info {
public String url;
public String bookname;
public String postid;
public String isbn;
public String author;
public info() {
}
public info(String url, String bookname ,String postid , String isbn ,String author) {
this.url = url;
this.bookname = bookname;
this.postid = postid;
this.author= author;
this.isbn= isbn;
}
public String getBookname() {
return bookname;
}
public String getPostid(){
return postid;
}
public void setPostid (String postid){
this.postid = postid;
}
public String getUrl() {
return url;
}
public String getIsbn() {
return isbn;
}
public String getAuthor(){
return author;
}
public void setBookname(String bookname) {
this.bookname = bookname;
}
public void setUrl(String url) {
this.url = url;
}
public void setIsbn(String isbn){
this.isbn = isbn;
}
public void setAuthor(String author){
this.author = author;
}
}