Переосмыслен юнит сохранения

Теперь это самостоятельный юнит, который ничего не отправляет пользователю, а только сохраняет пришедшие данные
This commit is contained in:
Mark Struchkov 2019-02-07 17:56:26 +03:00
parent 809d17715e
commit 3873aa35c3
2 changed files with 20 additions and 2 deletions

View File

@ -59,7 +59,13 @@ public class VkApi {
} catch (ApiException | ClientException e) {
e.printStackTrace();
}
return temp != null ? temp.get(0).getCity().getTitle() : null;
if (temp!=null) {
if (temp.get(0).getCity()!=null) {
log.info("Запрошен город пользователя: " + temp.get(0).getCity().getTitle());
return temp.get(0).getCity().getTitle();
}
}
return null;
}

View File

@ -1,10 +1,22 @@
package org.sadtech.vkbot.core.entity;
//@TODO: Дописать класс
public class Comment {
private Integer postId;
private Integer fromId;
private Person person;
private String text;
private Integer data;
public Comment() {
}
public Person getPerson() {
return person;
}
public void setPerson(Person person) {
this.person = person;
}
}