api_refactor: move vpn related apis to user.vpn

Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
Rohit Yadav 2012-12-05 14:24:26 -08:00
parent 8d8285a8d4
commit 55364478e5
7 changed files with 9 additions and 9 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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

View File

@ -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;