mirror of https://github.com/apache/cloudstack.git
api_refactor: refactor tag apis
- Fix refactored apis, mappings in commands*.in - Fix comments etc. Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
37cd76ee81
commit
316e7f226a
|
|
@ -19,7 +19,7 @@ package com.cloud.server;
|
|||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import com.cloud.api.commands.ListTagsCmd;
|
||||
import org.apache.cloudstack.api.user.tag.command.ListTagsCmd;
|
||||
import com.cloud.server.ResourceTag.TaggedResourceType;
|
||||
import com.cloud.utils.Pair;
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
package com.cloud.api.commands;
|
||||
package org.apache.cloudstack.api.user.tag.command;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
package com.cloud.api.commands;
|
||||
package org.apache.cloudstack.api.user.tag.command;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
|
|
@ -15,7 +15,7 @@
|
|||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
|
||||
package com.cloud.api.commands;
|
||||
package org.apache.cloudstack.api.user.tag.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -409,9 +409,9 @@ deleteStaticRoute=org.apache.cloudstack.api.user.vpc.command.DeleteStaticRouteCm
|
|||
listStaticRoutes=org.apache.cloudstack.api.user.vpc.command.ListStaticRoutesCmd;15
|
||||
|
||||
#### Tags commands
|
||||
createTags=com.cloud.api.commands.CreateTagsCmd;15
|
||||
deleteTags=com.cloud.api.commands.DeleteTagsCmd;15
|
||||
listTags=com.cloud.api.commands.ListTagsCmd;15
|
||||
createTags=org.apache.cloudstack.api.user.tag.command.CreateTagsCmd;15
|
||||
deleteTags=org.apache.cloudstack.api.user.tag.command.DeleteTagsCmd;15
|
||||
listTags=org.apache.cloudstack.api.user.tag.command.ListTagsCmd;15
|
||||
|
||||
### Site-to-site VPN commands
|
||||
createVpnCustomerGateway=org.apache.cloudstack.api.user.vpn.command.CreateVpnCustomerGatewayCmd;15
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ import javax.naming.ConfigurationException;
|
|||
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
import com.cloud.api.commands.ListTagsCmd;
|
||||
import org.apache.cloudstack.api.user.tag.command.ListTagsCmd;
|
||||
import com.cloud.domain.Domain;
|
||||
import com.cloud.event.ActionEvent;
|
||||
import com.cloud.event.EventTypes;
|
||||
|
|
|
|||
Loading…
Reference in New Issue