File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
src/main/java/io/jenkins/plugins/lark/notice Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 22
33import hudson .EnvVars ;
44import hudson .Extension ;
5- import hudson .model .AbstractDescribableImpl ;
5+ import hudson .model .Describable ;
66import hudson .model .Descriptor ;
77import io .jenkins .plugins .lark .notice .enums .NoticeOccasionEnum ;
88import lombok .Getter ;
3030@ Setter
3131@ ToString
3232@ NoArgsConstructor
33- public class LarkNotifierConfig extends AbstractDescribableImpl <LarkNotifierConfig > {
33+ public class LarkNotifierConfig implements Describable <LarkNotifierConfig > {
3434
3535 /**
3636 * Whether to use the raw message format.
Original file line number Diff line number Diff line change 11package io .jenkins .plugins .lark .notice .model ;
22
33import hudson .Extension ;
4- import hudson .model .AbstractDescribableImpl ;
4+ import hudson .model .Describable ;
55import hudson .model .Descriptor ;
66import lombok .Data ;
77import lombok .EqualsAndHashCode ;
1010/**
1111 * Model for storing button-related information. This class represents a button element that can be used in various UI contexts,
1212 * containing properties such as the button's title, the URL to be requested upon clicking, and the button's visual style type.
13- * It extends {@link AbstractDescribableImpl } to allow for easy integration with Jenkins' configuration system.
13+ * It extends {@link Describable } to allow for easy integration with Jenkins' configuration system.
1414 *
1515 * @author xm.z
1616 */
1717@ Data
1818@ EqualsAndHashCode (callSuper = false )
19- public class ButtonModel extends AbstractDescribableImpl <ButtonModel > {
19+ public class ButtonModel implements Describable <ButtonModel > {
2020
2121 /**
2222 * The title of the button. This is typically displayed as the button's text.
You can’t perform that action at this time.
0 commit comments