Skip to content

Commit ed0637b

Browse files
committed
api: Refactor move acl to org.apache.cloudstack
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
1 parent 6f6ed85 commit ed0637b

66 files changed

Lines changed: 84 additions & 162 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api/src/com/cloud/event/Event.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import java.util.Date;
2020

21-
import com.cloud.acl.ControlledEntity;
21+
import org.apache.cloudstack.acl.ControlledEntity;
2222
import org.apache.cloudstack.api.Identity;
2323
import org.apache.cloudstack.api.InternalIdentity;
2424

api/src/com/cloud/exception/PermissionDeniedException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import java.util.List;
2020

21-
import com.cloud.acl.ControlledEntity;
21+
import org.apache.cloudstack.acl.ControlledEntity;
2222
import com.cloud.user.Account;
2323
import com.cloud.utils.SerialVersionUID;
2424
import com.cloud.utils.exception.CloudRuntimeException;

api/src/com/cloud/network/IpAddress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import java.util.Date;
2020

21-
import com.cloud.acl.ControlledEntity;
21+
import org.apache.cloudstack.acl.ControlledEntity;
2222
import com.cloud.utils.net.Ip;
2323
import org.apache.cloudstack.api.Identity;
2424
import org.apache.cloudstack.api.InternalIdentity;

api/src/com/cloud/network/Network.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717
package com.cloud.network;
1818

19-
import com.cloud.acl.ControlledEntity;
19+
import org.apache.cloudstack.acl.ControlledEntity;
2020
import com.cloud.network.Networks.BroadcastDomainType;
2121
import com.cloud.network.Networks.Mode;
2222
import com.cloud.network.Networks.TrafficType;

api/src/com/cloud/network/PublicIpAddress.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717
package com.cloud.network;
1818

19-
import com.cloud.acl.ControlledEntity;
19+
import org.apache.cloudstack.acl.ControlledEntity;
2020
import com.cloud.dc.Vlan;
2121
import org.apache.cloudstack.api.InternalIdentity;
2222

api/src/com/cloud/network/RemoteAccessVpn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717
package com.cloud.network;
1818

19-
import com.cloud.acl.ControlledEntity;
19+
import org.apache.cloudstack.acl.ControlledEntity;
2020

2121
public interface RemoteAccessVpn extends ControlledEntity {
2222
enum State {

api/src/com/cloud/network/Site2SiteCustomerGateway.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import java.util.Date;
2020

21-
import com.cloud.acl.ControlledEntity;
21+
import org.apache.cloudstack.acl.ControlledEntity;
2222
import org.apache.cloudstack.api.Identity;
2323
import org.apache.cloudstack.api.InternalIdentity;
2424

api/src/com/cloud/network/Site2SiteVpnConnection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import java.util.Date;
2020

21-
import com.cloud.acl.ControlledEntity;
21+
import org.apache.cloudstack.acl.ControlledEntity;
2222
import org.apache.cloudstack.api.InternalIdentity;
2323

2424
public interface Site2SiteVpnConnection extends ControlledEntity, InternalIdentity {

api/src/com/cloud/network/Site2SiteVpnGateway.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import java.util.Date;
2020

21-
import com.cloud.acl.ControlledEntity;
21+
import org.apache.cloudstack.acl.ControlledEntity;
2222
import org.apache.cloudstack.api.Identity;
2323
import org.apache.cloudstack.api.InternalIdentity;
2424

api/src/com/cloud/network/VpnUser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// under the License.
1717
package com.cloud.network;
1818

19-
import com.cloud.acl.ControlledEntity;
19+
import org.apache.cloudstack.acl.ControlledEntity;
2020
import org.apache.cloudstack.api.Identity;
2121
import org.apache.cloudstack.api.InternalIdentity;
2222

0 commit comments

Comments
 (0)