Polish sample package names

This commit is contained in:
Phillip Webb
2015-06-23 00:47:12 -07:00
parent 9c0335fc29
commit 1ce617f1ae
163 changed files with 401 additions and 760 deletions

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package sample.ui;
package sample.web.ui;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

View File

@@ -11,7 +11,7 @@
* specific language governing permissions and limitations under the License.
*/
package sample.ui;
package sample.web.ui;
import java.util.Calendar;

View File

@@ -11,7 +11,7 @@
* specific language governing permissions and limitations under the License.
*/
package sample.ui;
package sample.web.ui;
/**
* @author Rob Winch

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
package sample.ui;
package sample.web.ui;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

View File

@@ -11,7 +11,7 @@
* specific language governing permissions and limitations under the License.
*/
package sample.ui.mvc;
package sample.web.ui.mvc;
import javax.validation.Valid;
@@ -25,8 +25,8 @@ import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.ModelAndView;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
import sample.ui.Message;
import sample.ui.MessageRepository;
import sample.web.ui.Message;
import sample.web.ui.MessageRepository;
/**
* @author Rob Winch