package com.ibm.commerce.sample.databeans;
import com.ibm.commerce.beans.SmartDataBeanImpl;
public class MyNewDataBean extends SmartDataBeanImpl {
boolean calledByControllerCmd=false;
String callingCommandName;
String userName;
Integer points;
public boolean isCalledByControllerCmd() {
return calledByControllerCmd;
}
public void setCalledByControllerCmd(boolean calledByControllerCmd) {
this.calledByControllerCmd = calledByControllerCmd;
}
public String getCallingCommandName() {
return callingCommandName;
}
public void setCallingCommandName(String callingCommandName) {
this.callingCommandName = callingCommandName;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public Integer getPoints() {
return points;
}
public void setPoints(Integer points) {
this.points = points;
}
}
import com.ibm.commerce.beans.SmartDataBeanImpl;
public class MyNewDataBean extends SmartDataBeanImpl {
boolean calledByControllerCmd=false;
String callingCommandName;
String userName;
Integer points;
public boolean isCalledByControllerCmd() {
return calledByControllerCmd;
}
public void setCalledByControllerCmd(boolean calledByControllerCmd) {
this.calledByControllerCmd = calledByControllerCmd;
}
public String getCallingCommandName() {
return callingCommandName;
}
public void setCallingCommandName(String callingCommandName) {
this.callingCommandName = callingCommandName;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public Integer getPoints() {
return points;
}
public void setPoints(Integer points) {
this.points = points;
}
}
No comments:
Post a Comment