-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DATAGO-84853: cema config push resiliency (#211)
- Loading branch information
Showing
36 changed files
with
39,209 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...lication/src/main/java/com/solace/maas/ep/common/model/SempAclProfileDeletionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class SempAclProfileDeletionRequest { | ||
private String msgVpn; | ||
private String aclProfileName; | ||
} |
15 changes: 15 additions & 0 deletions
15
...ain/java/com/solace/maas/ep/common/model/SempAclPublishTopicExceptionDeletionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class SempAclPublishTopicExceptionDeletionRequest { | ||
private String msgVpn; | ||
private String aclProfileName; | ||
/** | ||
* The topic string to be deleted from the ACL exception list - may include wild cards | ||
*/ | ||
private String publishTopic; | ||
} |
16 changes: 16 additions & 0 deletions
16
...n/java/com/solace/maas/ep/common/model/SempAclSubscribeTopicExceptionDeletionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class SempAclSubscribeTopicExceptionDeletionRequest { | ||
|
||
private String msgVpn; | ||
private String aclProfileName; | ||
/** | ||
* The topic string to be deleted from the ACL exception list - may include wild cards | ||
*/ | ||
private String subscribeTopic; | ||
} |
11 changes: 11 additions & 0 deletions
11
.../src/main/java/com/solace/maas/ep/common/model/SempAuthorizationGroupDeletionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class SempAuthorizationGroupDeletionRequest { | ||
private String msgVpn; | ||
private String authorizationGroupName; | ||
} |
12 changes: 12 additions & 0 deletions
12
...tion/src/main/java/com/solace/maas/ep/common/model/SempClientUsernameDeletionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class SempClientUsernameDeletionRequest { | ||
|
||
private String msgVpn; | ||
private String clientUsername; | ||
} |
11 changes: 11 additions & 0 deletions
11
service/application/src/main/java/com/solace/maas/ep/common/model/SempEntityType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
public enum SempEntityType { | ||
solaceQueue, | ||
solaceAclProfile, | ||
solaceAclSubscribeTopicException, | ||
solaceAclPublishTopicException, | ||
solaceClientUsername, | ||
solaceAuthorizationGroup, | ||
solaceQueueSubscriptionTopic | ||
} |
11 changes: 11 additions & 0 deletions
11
...e/application/src/main/java/com/solace/maas/ep/common/model/SempQueueDeletionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
public class SempQueueDeletionRequest { | ||
private String msgVpn; | ||
private String queueName; | ||
} |
12 changes: 12 additions & 0 deletions
12
.../main/java/com/solace/maas/ep/common/model/SempQueueTopicSubscriptionDeletionRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.solace.maas.ep.common.model; | ||
|
||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Builder | ||
@Data | ||
public class SempQueueTopicSubscriptionDeletionRequest { | ||
private String topicName; | ||
private String queueName; | ||
private String msgVpn; | ||
} |
Oops, something went wrong.