Skip to content

Commit

Permalink
Merge pull request #6198 from ashanthamara/action-properties
Browse files Browse the repository at this point in the history
Expose cache packages from action-mgt and certificate-mgt components
  • Loading branch information
ashanthamara authored Dec 11, 2024
2 parents dcba4c8 + 75b0fb4 commit f3c7779
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@
</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Private-Package>
org.wso2.carbon.identity.action.management.cache,
org.wso2.carbon.identity.action.management.constant,
org.wso2.carbon.identity.action.management.dao.*,
org.wso2.carbon.identity.action.management.internal,
org.wso2.carbon.identity.action.management.service.impl,
org.wso2.carbon.identity.action.management.util
</Private-Package>
<Export-Package>
org.wso2.carbon.identity.action.management.cache,
org.wso2.carbon.identity.action.management.constant.error,
org.wso2.carbon.identity.action.management.exception,
org.wso2.carbon.identity.action.management.model,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
*/
public class ActionCacheEntry extends CacheEntry {

private static final long serialVersionUID = 2789265346825849739L;
private List<Action> actionsOfActionType;

public ActionCacheEntry(List<Action> actionsOfActionType) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*/
public class ActionTypeCacheKey extends CacheKey {

private static final long serialVersionUID = 8132735629148475983L;
private final String actionType;

public ActionTypeCacheKey(String actionType) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@
</Bundle-SymbolicName>
<Bundle-Name>${project.artifactId}</Bundle-Name>
<Private-Package>
org.wso2.carbon.identity.certificate.management.cache,
org.wso2.carbon.identity.certificate.management.constant,
org.wso2.carbon.identity.certificate.management.dao.*,
org.wso2.carbon.identity.certificate.management.internal,
org.wso2.carbon.identity.certificate.management.service.impl,
org.wso2.carbon.identity.certificate.management.util;
</Private-Package>
<Export-Package>
org.wso2.carbon.identity.certificate.management.cache,
org.wso2.carbon.identity.certificate.management.exception,
org.wso2.carbon.identity.certificate.management.model,
org.wso2.carbon.identity.certificate.management.service;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*/
public class CertificateIdCacheKey extends CacheKey {

private static final long serialVersionUID = 5691238745928475691L;
private final String certificateId;

public CertificateIdCacheKey(String certificateId) {
Expand Down

0 comments on commit f3c7779

Please sign in to comment.