refactor modèle pojo swimmingpool

This commit is contained in:
Nicolas Héron 2018-09-07 10:25:57 +02:00
commit 9ca8ec68d7
12 changed files with 12 additions and 12 deletions

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
/** /**
* Created by IntelliJ IDEA. * Created by IntelliJ IDEA.

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
import java.math.BigDecimal; import java.math.BigDecimal;

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
public enum Gender { public enum Gender {
male, female male, female

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
import java.util.Date; import java.util.Date;

View file

@ -1,4 +1,4 @@
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
import java.math.BigDecimal; import java.math.BigDecimal;

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
public enum PriceType { public enum PriceType {

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlRootElement;
import java.util.ArrayList; import java.util.ArrayList;

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
public enum SeasonType { public enum SeasonType {

View file

@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
package org.chtijbug.example.swimmingpool; package org.training.leisure.swimmingpool;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.Date; import java.util.Date;

View file

@ -17,8 +17,8 @@ package org.chtijbug.swimmingpool.web;
import org.chtijbug.drools.generic.restclient.rest.UsedRestAPI; import org.chtijbug.drools.generic.restclient.rest.UsedRestAPI;
import org.chtijbug.example.swimmingpool.Quote;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.training.leisure.swimmingpool.Quote;
import javax.annotation.Resource; import javax.annotation.Resource;