Skip to content

Commit

Permalink
Add enforcer changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashera96 committed Oct 11, 2023
1 parent 674cc6f commit 24474f4
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 1,889 deletions.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,16 @@ public void setName(String name) {
this.name = name;
}

public String getOwner() {

return owner;
}

public void setOwner(String owner) {

this.owner = owner;
}

public Map<String, String> getAttributes() {

return attributes;
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021, WSO2 LLC. (http://www.wso2.org) All Rights Reserved.
* Copyright (c) 2023, WSO2 LLC. (http://www.wso2.org) All Rights Reserved.
*
* WSO2 LLC. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
Expand All @@ -15,32 +15,37 @@
* specific language governing permissions and limitations
* under the License.
*/

package org.wso2.apk.enforcer.models;

import java.util.ArrayList;
import java.util.List;

/**
* Model class for Application Information list
* Holds details about list of application and subscription mappings.
*/
public class ApplicationInfoList {
public class ApplicationMappingList {

private Integer count = null;
private List<ApplicationInfo> list = new ArrayList<>();
private List<ApplicationMapping> list = new ArrayList<>();

public Integer getCount() {

return count;
}

public void setCount(Integer count) {

this.count = count;
}

public List<ApplicationInfo> getList() {
public List<ApplicationMapping> getList() {

return list;
}

public void setList(List<ApplicationInfo> list) {
public void setList(List<ApplicationMapping> list) {

this.list = list;
}
}
Loading

0 comments on commit 24474f4

Please sign in to comment.