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:
Rohit Yadav 2012-12-03 23:48:48 -08:00
parent 37cd76ee81
commit 316e7f226a
6 changed files with 8 additions and 8 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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