
com.venky.swf.db.model.UserEmail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-db Show documentation
Show all versions of swf-db Show documentation
Succinct Web Framework - Db
The newest version!
package com.venky.swf.db.model;
import com.venky.swf.db.annotations.column.UNIQUE_KEY;
import com.venky.swf.db.annotations.column.indexing.Index;
import com.venky.swf.db.annotations.column.pm.PARTICIPANT;
import com.venky.swf.db.annotations.model.ORDER_BY;
@ORDER_BY("ID")
public interface UserEmail extends Model{
@PARTICIPANT
@UNIQUE_KEY
@Index
public long getUserId();
public void setUserId(long id);
public User getUser();
public String getAlias();
public void setAlias(String alias);
@UNIQUE_KEY
@Index
public String getEmail();
public void setEmail(String email);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy