mirror of https://github.com/apache/cloudstack.git
api_refactor: move vpn related apis to user.vpn
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
8d8285a8d4
commit
55364478e5
|
|
@ -19,7 +19,7 @@ package com.cloud.network.vpn;
|
|||
import java.util.List;
|
||||
|
||||
import org.apache.cloudstack.api.user.vpn.command.ListRemoteAccessVpnsCmd;
|
||||
import org.apache.cloudstack.api.user.vpn.command.ListVpnUsersCmd;
|
||||
import org.apache.cloudstack.api.user.user.command.ListVpnUsersCmd;
|
||||
import com.cloud.exception.NetworkRuleConflictException;
|
||||
import com.cloud.exception.ResourceUnavailableException;
|
||||
import com.cloud.network.RemoteAccessVpn;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package org.apache.cloudstack.api.user.vpn.command;
|
||||
package org.apache.cloudstack.api.user.user.command;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package org.apache.cloudstack.api.user.vpn.command;
|
||||
package org.apache.cloudstack.api.user.user.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package org.apache.cloudstack.api.user.vpn.command;
|
||||
package org.apache.cloudstack.api.user.user.command;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
|
|
@ -19,7 +19,7 @@ package src.com.cloud.api.commands.test;
|
|||
import junit.framework.Assert;
|
||||
import junit.framework.TestCase;
|
||||
|
||||
import org.apache.cloudstack.api.user.vpn.command.AddVpnUserCmd;
|
||||
import org.apache.cloudstack.api.user.user.command.AddVpnUserCmd;
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
|
|
|
|||
|
|
@ -297,9 +297,9 @@ createRemoteAccessVpn=org.apache.cloudstack.api.user.vpn.command.CreateRemoteAcc
|
|||
deleteRemoteAccessVpn=org.apache.cloudstack.api.user.vpn.command.DeleteRemoteAccessVpnCmd;15
|
||||
listRemoteAccessVpns=org.apache.cloudstack.api.user.vpn.command.ListRemoteAccessVpnsCmd;15
|
||||
|
||||
addVpnUser=org.apache.cloudstack.api.user.vpn.command.AddVpnUserCmd;15
|
||||
removeVpnUser=org.apache.cloudstack.api.user.vpn.command.RemoveVpnUserCmd;15
|
||||
listVpnUsers=org.apache.cloudstack.api.user.vpn.command.ListVpnUsersCmd;15
|
||||
addVpnUser=org.apache.cloudstack.api.user.user.command.AddVpnUserCmd;15
|
||||
removeVpnUser=org.apache.cloudstack.api.user.user.command.RemoveVpnUserCmd;15
|
||||
listVpnUsers=org.apache.cloudstack.api.user.user.command.ListVpnUsersCmd;15
|
||||
|
||||
#### network offering commands
|
||||
createNetworkOffering=org.apache.cloudstack.api.admin.network.command.CreateNetworkOfferingCmd;1
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ import java.util.Map;
|
|||
import javax.ejb.Local;
|
||||
import javax.naming.ConfigurationException;
|
||||
|
||||
import org.apache.cloudstack.api.user.vpn.command.ListVpnUsersCmd;
|
||||
import org.apache.cloudstack.api.user.user.command.ListVpnUsersCmd;
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import org.apache.cloudstack.api.user.vpn.command.ListRemoteAccessVpnsCmd;
|
||||
|
|
|
|||
Loading…
Reference in New Issue