Modifier and Type | Method and Description |
---|---|
static com.google.api.server.spi.response.CollectionResponse<Event> |
EventDB.listEventByBCardIdApp(java.lang.Long id,
java.lang.String cursor,
java.lang.Integer limit,
AppEnum app) |
static com.google.api.server.spi.response.CollectionResponse<Event> |
EventDB.listEventByCategory(java.lang.String category,
java.lang.String cursor,
java.lang.Integer limit,
AppEnum app) |
static java.util.List<Event> |
EventDB.listEventByUserIdAndApp(java.lang.Long id,
AppEnum appEnum) |
Modifier and Type | Method and Description |
---|---|
static com.google.api.server.spi.response.CollectionResponse<UserApp> |
UserAppDB.list(AppEnum app,
java.lang.String cursor,
java.lang.Integer limit) |
static AdminApp |
AdminAppDB.loadByEmail(java.lang.String email,
AppEnum app) |
static UserApp |
UserAppDB.loadByEmail(java.lang.String email,
AppEnum app) |
static UserApp |
UserAppDB.loadByUserId(java.lang.Long userId,
AppEnum app) |
Modifier and Type | Method and Description |
---|---|
static com.google.api.server.spi.response.CollectionResponse<Business> |
BusinessDB.getCollectionByBCardIdApp(java.lang.Long BCardId,
java.lang.Integer limit,
java.lang.String cursor,
AppEnum app) |
static com.google.api.server.spi.response.CollectionResponse<Business> |
BusinessDB.getCollectionByUserIdApp(java.lang.Long userId,
java.lang.Integer limit,
java.lang.String cursor,
AppEnum app) |
static java.util.List<BCard> |
BCardDBNew.listBCardByUserIdAndApp(java.lang.Long id,
AppEnum appEnum) |
static java.util.List<Business> |
BusinessDB.listBusinessByUserApp(java.lang.Long id,
AppEnum app) |
Modifier and Type | Method and Description |
---|---|
static java.util.List<Device> |
DeviceDAO.loadByAppAndType(DeviceTypeEnum type,
AppEnum app) |
static java.util.List<Device> |
DeviceDAO.loadByUser(java.lang.Long userId,
AppEnum app) |
static java.util.List<Device> |
DeviceDAO.loadByUserAndType(java.lang.Long userId,
DeviceTypeEnum type,
AppEnum app) |
Modifier and Type | Method and Description |
---|---|
static AppEnum |
AppEnum.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AppEnum[] |
AppEnum.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
AppEnum |
AppleUser.getApp() |
AppEnum |
BCard.getApp() |
Modifier and Type | Method and Description |
---|---|
void |
AppleUser.setApp(AppEnum app) |
void |
BCard.setApp(AppEnum app) |
Constructor and Description |
---|
AppleUser(java.lang.String appleId,
AppEnum app,
User user) |
AppleUser(java.lang.String appleId,
AppEnum app,
UserApp user) |
Modifier and Type | Method and Description |
---|---|
AppEnum |
AdminApp.getApp() |
AppEnum |
UserApp.getApp() |
Modifier and Type | Method and Description |
---|---|
void |
AdminApp.setApp(AppEnum app) |
void |
UserApp.setApp(AppEnum app) |
Constructor and Description |
---|
UserApp(User user,
AppEnum app) |
Modifier and Type | Method and Description |
---|---|
AppEnum |
Event.getApp() |
AppEnum |
Business.getApp() |
Modifier and Type | Method and Description |
---|---|
void |
Event.setApp(AppEnum app) |
void |
Business.setApp(AppEnum app) |
Modifier and Type | Method and Description |
---|---|
AppEnum |
Device.getApp() |
Modifier and Type | Method and Description |
---|---|
void |
Device.setApp(AppEnum app) |
Constructor and Description |
---|
Device(java.lang.String token,
DeviceTypeEnum type,
java.lang.Long userId,
AppEnum app) |