You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
442 B
22 lines
442 B
package com.fr.plugin.domainlogin.beans; |
|
|
|
public class DomainLoginBean { |
|
private String userInfo; |
|
private long timestamp; |
|
|
|
public String getUserInfo() { |
|
return userInfo; |
|
} |
|
|
|
public long getTimestamp() { |
|
return timestamp; |
|
} |
|
|
|
public void setUserInfo(String userInfo) { |
|
this.userInfo = userInfo; |
|
} |
|
|
|
public void setTimestamp(long timestamp) { |
|
this.timestamp = timestamp; |
|
} |
|
}
|
|
|