Skip to content

Commit

Permalink
AddCountryDto: move to ru.mystamps.web.feature.country package.
Browse files Browse the repository at this point in the history
Addressed to #927

No functional changes.
  • Loading branch information
php-coder committed Jul 19, 2018
1 parent 1b06204 commit ec5786a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package ru.mystamps.web.service.dto;
package ru.mystamps.web.feature.country;

public interface AddCountryDto {
String getName();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import lombok.Getter;
import lombok.Setter;

import ru.mystamps.web.service.dto.AddCountryDto;
import ru.mystamps.web.support.beanvalidation.DenyValues;
import ru.mystamps.web.support.beanvalidation.Group;
import ru.mystamps.web.support.beanvalidation.UniqueCountryName;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/ru/mystamps/web/service/CountryService.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import java.util.List;

import ru.mystamps.web.dao.dto.LinkEntityDto;
import ru.mystamps.web.service.dto.AddCountryDto;
import ru.mystamps.web.feature.country.AddCountryDto;

@SuppressWarnings("PMD.TooManyMethods")
public interface CountryService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
import ru.mystamps.web.dao.CountryDao;
import ru.mystamps.web.dao.dto.AddCountryDbDto;
import ru.mystamps.web.dao.dto.LinkEntityDto;
import ru.mystamps.web.service.dto.AddCountryDto;
import ru.mystamps.web.feature.country.AddCountryDto;
import ru.mystamps.web.support.spring.security.HasAuthority;
import ru.mystamps.web.util.LocaleUtils;
import ru.mystamps.web.util.SlugUtils;
Expand Down

0 comments on commit ec5786a

Please sign in to comment.