aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPinapelz <donaldshan1@outlook.com>2023-04-05 15:02:16 -0700
committerPinapelz <donaldshan1@outlook.com>2023-04-05 15:02:16 -0700
commitd7ab759e1afdf903d04825d8917acd2d920a9f8b (patch)
treee88d22295a0df92021db498956b36de03b7c3cc2
parente89b3b51e05bf65046c9b79d7951f119698d23c1 (diff)
Removed old LiveVideoQueryBuilder.java
-rw-r--r--pom.xml2
-rw-r--r--src/main/java/com/pina/query/LiveVideoQueryBuilder.java157
2 files changed, 1 insertions, 158 deletions
diff --git a/pom.xml b/pom.xml
index 98ebfbd..3d71901 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
<groupId>com.pina</groupId>
<artifactId>HldexWrapper</artifactId>
- <version>1.0-SNAPSHOT</version>
+ <version>0.01</version>
<packaging>jar</packaging>
<name>HldexWrapper</name>
diff --git a/src/main/java/com/pina/query/LiveVideoQueryBuilder.java b/src/main/java/com/pina/query/LiveVideoQueryBuilder.java
deleted file mode 100644
index ed92070..0000000
--- a/src/main/java/com/pina/query/LiveVideoQueryBuilder.java
+++ /dev/null
@@ -1,157 +0,0 @@
-package com.pina.query;
-
-public class LiveVideoQueryBuilder {
- /***
- * Query parameters for /api/v2/live and /api/v2/videos
- */
- private String channelId;
- private String id;
- private String include;
- private String lang;
- private Integer limit;
- private Integer maxUpcomingHours;
- private String mentionedChannelId;
- private Integer offset;
- private String order;
- private String org;
- private String paginated;
- private String sort;
- private String status;
- private String topic;
- private String type;
-
- public LiveVideoQueryBuilder setChannelId(String channelId) {
- this.channelId = channelId;
- return this;
- }
-
- public LiveVideoQueryBuilder setId(String id) {
- this.id = id;
- return this;
- }
-
- public LiveVideoQueryBuilder setInclude(String include) {
- this.include = include;
- return this;
- }
-
- public LiveVideoQueryBuilder setLang(String lang) {
- this.lang = lang;
- return this;
- }
-
- public LiveVideoQueryBuilder setLimit(Integer limit) {
- this.limit = limit;
- return this;
- }
-
- public LiveVideoQueryBuilder setMaxUpcomingHours(Integer maxUpcomingHours) {
- this.maxUpcomingHours = maxUpcomingHours;
- return this;
- }
-
- public LiveVideoQueryBuilder setMentionedChannelId(String mentionedChannelId) {
- this.mentionedChannelId = mentionedChannelId;
- return this;
- }
-
- public LiveVideoQueryBuilder setOffset(Integer offset) {
- this.offset = offset;
- return this;
- }
-
- public LiveVideoQueryBuilder setOrder(String order) {
- this.order = order;
- return this;
- }
-
- public LiveVideoQueryBuilder setOrg(String org) {
- this.org = org;
- return this;
- }
-
- public LiveVideoQueryBuilder setPaginated(String paginated) {
- this.paginated = paginated;
- return this;
- }
-
- public LiveVideoQueryBuilder setSort(String sort) {
- this.sort = sort;
- return this;
- }
-
- public LiveVideoQueryBuilder setStatus(String status) {
- this.status = status;
- return this;
- }
-
- public LiveVideoQueryBuilder setTopic(String topic) {
- this.topic = topic;
- return this;
- }
-
- public LiveVideoQueryBuilder setType(String type) {
- this.type = type;
- return this;
- }
-
- public String getChannelId() {
- return channelId;
- }
-
- public String getId() {
- return id;
- }
-
- public String getInclude() {
- return include;
- }
-
- public String getLang() {
- return lang;
- }
-
- public Integer getLimit() {
- return limit;
- }
-
- public Integer getMaxUpcomingHours() {
- return maxUpcomingHours;
- }
-
- public String getMentionedChannelId() {
- return mentionedChannelId;
- }
-
- public Integer getOffset() {
- return offset;
- }
-
- public String getOrder() {
- return order;
- }
-
- public String getOrg() {
- return org;
- }
-
- public String getPaginated() {
- return paginated;
- }
-
- public String getSort() {
- return sort;
- }
-
- public String getStatus() {
- return status;
- }
-
- public String getTopic() {
- return topic;
- }
-
- public String getType() {
- return type;
- }
-} \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage