Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class ActionContext extends Context implements ActionRespondUtility {

private String triggerId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class AttachmentActionContext extends Context implements SayUtility, ActionRespondUtility {

private String triggerId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@Setter
@Builder
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class BlockSuggestionContext extends Context {

public BlockSuggestionContext() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@Setter
@Builder
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class DefaultContext extends Context {

public DefaultContext() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class DialogCancellationContext extends Context implements SayUtility, ActionRespondUtility {

private String responseUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class DialogSubmissionContext extends Context implements SayUtility, ActionRespondUtility {

private String responseUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@Setter
@Builder
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class DialogSuggestionContext extends Context {

public DialogSuggestionContext() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
@Setter
@Builder
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
@NoArgsConstructor
@AllArgsConstructor
public class EventContext extends Context implements SayUtility {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class GlobalShortcutContext extends Context {
private String triggerId;
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class MessageShortcutContext extends Context implements SayUtility, ActionRespondUtility {

private String triggerId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class OAuthCallbackContext extends Context {

private String oauthCompletionUrl;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
@NoArgsConstructor
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class SlashCommandContext extends Context implements SayUtility, RespondUtility {

private String triggerId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Builder
@AllArgsConstructor
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = false)
@EqualsAndHashCode
public class ViewSubmissionContext extends Context implements InputBlockRespondUtility {

private List<ViewSubmissionPayload.ResponseUrl> responseUrls;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class AuditApiErrorResponse implements AuditApiResponse {

private boolean ok;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

@Data
@Slf4j
@EqualsAndHashCode(callSuper = false)
public class AuditApiException extends Exception {

private final Response response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import java.util.List;

@Data
@EqualsAndHashCode(callSuper = false)
public class ActionsResponse implements AuditApiResponse {
private boolean ok;
private String warning;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import java.util.List;

@Data
@EqualsAndHashCode(callSuper = false)
public class LogsResponse implements AuditApiResponse {
private boolean ok;
private String warning;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import java.util.List;

@Data
@EqualsAndHashCode(callSuper = false)
public class SchemasResponse implements AuditApiResponse {
private boolean ok;
private String warning;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

@Data
@Slf4j
@EqualsAndHashCode(callSuper = false)
public class MethodsCompletionException extends RuntimeException {

private final IOException ioException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

@Data
@Slf4j
@EqualsAndHashCode(callSuper = false)
public class SlackApiException extends Exception {

private final Response response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class SCIMApiErrorResponse implements SCIMApiResponse {

@SerializedName("Errors")
Expand All @@ -17,4 +16,4 @@ public static class Errors {
private Integer code;
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

@Data
@Slf4j
@EqualsAndHashCode(callSuper = false)
public class SCIMApiException extends Exception {

private final Response response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class GroupsCreateResponse extends Group implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class GroupsDeleteResponse implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class GroupsPatchResponse extends Group implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class GroupsReadResponse extends Group implements SCIMApiResponse {
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import java.util.List;

@Data
@EqualsAndHashCode(callSuper = false)
public class GroupsSearchResponse implements SCIMApiResponse {
private Integer totalResults;
private Integer itemsPerPage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class GroupsUpdateResponse extends Group implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import java.util.List;

@Data
@EqualsAndHashCode(callSuper = false)
public class ServiceProviderConfigsGetResponse implements SCIMApiResponse {

private List<AuthenticationScheme> authenticationSchemes;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class UsersCreateResponse extends User implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class UsersDeleteResponse implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class UsersPatchResponse extends User implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class UsersReadResponse extends User implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import java.util.List;

@Data
@EqualsAndHashCode(callSuper = false)
public class UsersSearchResponse implements SCIMApiResponse {
private Integer totalResults;
private Integer itemsPerPage;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@
import lombok.EqualsAndHashCode;

@Data
@EqualsAndHashCode(callSuper = false)
public class UsersUpdateResponse extends User implements SCIMApiResponse {
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

@Data
@Slf4j
@EqualsAndHashCode(callSuper = false)
public class LegacyStatusApiException extends Exception {

private final Response response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

@Data
@Slf4j
@EqualsAndHashCode(callSuper = false)
public class StatusApiException extends Exception {

private final Response response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
@Builder
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(callSuper = false)
public class UnknownBlockElement extends BlockElement {
private String type;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
*/
@Data
@Builder
@EqualsAndHashCode(callSuper = true)
@NoArgsConstructor
@AllArgsConstructor
public class MarkdownTextObject extends TextObject {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
* https://api.slack.com/reference/messaging/composition-objects#text
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder(toBuilder = true)
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
* https://api.slack.com/reference/messaging/composition-objects#text
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder(toBuilder = true)
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* https://api.slack.com/reference/block-kit/block-elements#button
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* https://api.slack.com/reference/block-kit/block-elements#channel_select
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
* https://api.slack.com/reference/block-kit/block-elements#checkboxes
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* https://api.slack.com/reference/block-kit/block-elements#conversation_select
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* https://api.slack.com/reference/block-kit/block-elements#datepicker
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
* https://api.slack.com/reference/block-kit/block-elements#external_select
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* https://api.slack.com/reference/block-kit/block-elements#image
*/
@Data
@EqualsAndHashCode(callSuper = true)
@Builder
@NoArgsConstructor
@AllArgsConstructor
Expand Down
Loading