Skip to content

Commit 3c30669

Browse files
committed
Normalize package name
1 parent 485d4b6 commit 3c30669

File tree

22 files changed

+52
-52
lines changed

22 files changed

+52
-52
lines changed

api/src/main/java/org/apache/cloudstack/api/ResponseGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@
154154
import org.apache.cloudstack.direct.download.DirectDownloadCertificate;
155155
import org.apache.cloudstack.direct.download.DirectDownloadCertificateHostMap;
156156
import org.apache.cloudstack.direct.download.DirectDownloadManager;
157-
import org.apache.cloudstack.gui.themes.GuiThemeJoin;
157+
import org.apache.cloudstack.gui.theme.GuiThemeJoin;
158158
import org.apache.cloudstack.management.ManagementServerHost;
159159
import org.apache.cloudstack.network.lb.ApplicationLoadBalancerRule;
160160
import org.apache.cloudstack.region.PortableIp;

api/src/main/java/org/apache/cloudstack/api/command/user/gui/themes/CreateGuiThemeCmd.java renamed to api/src/main/java/org/apache/cloudstack/api/command/user/gui/theme/CreateGuiThemeCmd.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.api.command.user.gui.themes;
17+
package org.apache.cloudstack.api.command.user.gui.theme;
1818

1919
import org.apache.cloudstack.acl.RoleType;
2020
import org.apache.cloudstack.api.APICommand;
@@ -25,9 +25,9 @@
2525
import org.apache.cloudstack.api.ServerApiException;
2626
import org.apache.cloudstack.api.response.GuiThemeResponse;
2727
import org.apache.cloudstack.context.CallContext;
28-
import org.apache.cloudstack.gui.themes.GuiTheme;
29-
import org.apache.cloudstack.gui.themes.GuiThemeJoin;
30-
import org.apache.cloudstack.gui.themes.GuiThemeService;
28+
import org.apache.cloudstack.gui.theme.GuiTheme;
29+
import org.apache.cloudstack.gui.theme.GuiThemeJoin;
30+
import org.apache.cloudstack.gui.theme.GuiThemeService;
3131

3232
import javax.inject.Inject;
3333

api/src/main/java/org/apache/cloudstack/api/command/user/gui/themes/ListGuiThemesCmd.java renamed to api/src/main/java/org/apache/cloudstack/api/command/user/gui/theme/ListGuiThemesCmd.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.api.command.user.gui.themes;
17+
package org.apache.cloudstack.api.command.user.gui.theme;
1818

1919
import org.apache.cloudstack.acl.RoleType;
2020
import org.apache.cloudstack.api.APICommand;
@@ -25,8 +25,8 @@
2525
import org.apache.cloudstack.api.response.DomainResponse;
2626
import org.apache.cloudstack.api.response.GuiThemeResponse;
2727
import org.apache.cloudstack.api.response.ListResponse;
28-
import org.apache.cloudstack.gui.themes.GuiTheme;
29-
import org.apache.cloudstack.gui.themes.GuiThemeService;
28+
import org.apache.cloudstack.gui.theme.GuiTheme;
29+
import org.apache.cloudstack.gui.theme.GuiThemeService;
3030

3131
import javax.inject.Inject;
3232

api/src/main/java/org/apache/cloudstack/api/command/user/gui/themes/RemoveGuiThemeCmd.java renamed to api/src/main/java/org/apache/cloudstack/api/command/user/gui/theme/RemoveGuiThemeCmd.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.api.command.user.gui.themes;
17+
package org.apache.cloudstack.api.command.user.gui.theme;
1818

1919
import org.apache.cloudstack.acl.RoleType;
2020
import org.apache.cloudstack.api.APICommand;
@@ -24,8 +24,8 @@
2424
import org.apache.cloudstack.api.response.GuiThemeResponse;
2525
import org.apache.cloudstack.api.response.SuccessResponse;
2626
import org.apache.cloudstack.context.CallContext;
27-
import org.apache.cloudstack.gui.themes.GuiTheme;
28-
import org.apache.cloudstack.gui.themes.GuiThemeService;
27+
import org.apache.cloudstack.gui.theme.GuiTheme;
28+
import org.apache.cloudstack.gui.theme.GuiThemeService;
2929

3030
import javax.inject.Inject;
3131

api/src/main/java/org/apache/cloudstack/api/command/user/gui/themes/UpdateGuiThemeCmd.java renamed to api/src/main/java/org/apache/cloudstack/api/command/user/gui/theme/UpdateGuiThemeCmd.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.api.command.user.gui.themes;
17+
package org.apache.cloudstack.api.command.user.gui.theme;
1818

1919
import org.apache.cloudstack.acl.RoleType;
2020
import org.apache.cloudstack.api.APICommand;
@@ -25,9 +25,9 @@
2525
import org.apache.cloudstack.api.ServerApiException;
2626
import org.apache.cloudstack.api.response.GuiThemeResponse;
2727
import org.apache.cloudstack.context.CallContext;
28-
import org.apache.cloudstack.gui.themes.GuiTheme;
29-
import org.apache.cloudstack.gui.themes.GuiThemeJoin;
30-
import org.apache.cloudstack.gui.themes.GuiThemeService;
28+
import org.apache.cloudstack.gui.theme.GuiTheme;
29+
import org.apache.cloudstack.gui.theme.GuiThemeJoin;
30+
import org.apache.cloudstack.gui.theme.GuiThemeService;
3131

3232
import javax.inject.Inject;
3333

api/src/main/java/org/apache/cloudstack/api/response/GuiThemeResponse.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
import org.apache.cloudstack.api.ApiConstants;
2222
import org.apache.cloudstack.api.BaseResponse;
2323
import org.apache.cloudstack.api.EntityReference;
24-
import org.apache.cloudstack.gui.themes.GuiThemeJoin;
24+
import org.apache.cloudstack.gui.theme.GuiThemeJoin;
2525

2626
import java.util.Date;
2727

api/src/main/java/org/apache/cloudstack/gui/themes/GuiTheme.java renamed to api/src/main/java/org/apache/cloudstack/gui/theme/GuiTheme.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.gui.themes;
17+
package org.apache.cloudstack.gui.theme;
1818

1919
import org.apache.cloudstack.api.Identity;
2020
import org.apache.cloudstack.api.InternalIdentity;

api/src/main/java/org/apache/cloudstack/gui/themes/GuiThemeDetails.java renamed to api/src/main/java/org/apache/cloudstack/gui/theme/GuiThemeDetails.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.gui.themes;
17+
package org.apache.cloudstack.gui.theme;
1818

1919
import org.apache.cloudstack.api.InternalIdentity;
2020

api/src/main/java/org/apache/cloudstack/gui/themes/GuiThemeJoin.java renamed to api/src/main/java/org/apache/cloudstack/gui/theme/GuiThemeJoin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.gui.themes;
17+
package org.apache.cloudstack.gui.theme;
1818

1919
import org.apache.cloudstack.api.Identity;
2020
import org.apache.cloudstack.api.InternalIdentity;

api/src/main/java/org/apache/cloudstack/gui/themes/GuiThemeService.java renamed to api/src/main/java/org/apache/cloudstack/gui/theme/GuiThemeService.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
// KIND, either express or implied. See the License for the
1515
// specific language governing permissions and limitations
1616
// under the License.
17-
package org.apache.cloudstack.gui.themes;
17+
package org.apache.cloudstack.gui.theme;
1818

19-
import org.apache.cloudstack.api.command.user.gui.themes.CreateGuiThemeCmd;
20-
import org.apache.cloudstack.api.command.user.gui.themes.ListGuiThemesCmd;
21-
import org.apache.cloudstack.api.command.user.gui.themes.RemoveGuiThemeCmd;
22-
import org.apache.cloudstack.api.command.user.gui.themes.UpdateGuiThemeCmd;
19+
import org.apache.cloudstack.api.command.user.gui.theme.CreateGuiThemeCmd;
20+
import org.apache.cloudstack.api.command.user.gui.theme.ListGuiThemesCmd;
21+
import org.apache.cloudstack.api.command.user.gui.theme.RemoveGuiThemeCmd;
22+
import org.apache.cloudstack.api.command.user.gui.theme.UpdateGuiThemeCmd;
2323
import org.apache.cloudstack.api.response.GuiThemeResponse;
2424
import org.apache.cloudstack.api.response.ListResponse;
2525

0 commit comments

Comments
 (0)