squid:S1213 - The members of an interface declaration or class should appear in a pre-defined order
This commit is contained in:
@ -36,6 +36,15 @@ public class Hero {
|
||||
private final Armor armor;
|
||||
private final Weapon weapon;
|
||||
|
||||
private Hero(HeroBuilder builder) {
|
||||
this.profession = builder.profession;
|
||||
this.name = builder.name;
|
||||
this.hairColor = builder.hairColor;
|
||||
this.hairType = builder.hairType;
|
||||
this.weapon = builder.weapon;
|
||||
this.armor = builder.armor;
|
||||
}
|
||||
|
||||
public Profession getProfession() {
|
||||
return profession;
|
||||
}
|
||||
@ -88,15 +97,6 @@ public class Hero {
|
||||
return sb.toString();
|
||||
}
|
||||
|
||||
private Hero(HeroBuilder builder) {
|
||||
this.profession = builder.profession;
|
||||
this.name = builder.name;
|
||||
this.hairColor = builder.hairColor;
|
||||
this.hairType = builder.hairType;
|
||||
this.weapon = builder.weapon;
|
||||
this.armor = builder.armor;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* The builder class.
|
||||
|
@ -24,14 +24,6 @@ import org.apache.isis.applib.annotation.SemanticsOf;
|
||||
@DomainService(nature = NatureOfService.VIEW_CONTRIBUTIONS_ONLY)
|
||||
public class HomePageService {
|
||||
|
||||
// region > homePage (action)
|
||||
|
||||
@Action(semantics = SemanticsOf.SAFE)
|
||||
@HomePage
|
||||
public HomePageViewModel homePage() {
|
||||
return container.injectServicesInto(new HomePageViewModel());
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
@ -40,4 +32,13 @@ public class HomePageService {
|
||||
DomainObjectContainer container;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > homePage (action)
|
||||
|
||||
@Action(semantics = SemanticsOf.SAFE)
|
||||
@HomePage
|
||||
public HomePageViewModel homePage() {
|
||||
return container.injectServicesInto(new HomePageViewModel());
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -24,6 +24,15 @@ import domainapp.dom.modules.simple.SimpleObjects;
|
||||
@ViewModel
|
||||
public class HomePageViewModel {
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
SimpleObjects simpleObjects;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > title
|
||||
public String title() {
|
||||
return getObjects().size() + " objects";
|
||||
@ -37,12 +46,4 @@ public class HomePageViewModel {
|
||||
return simpleObjects.listAll();
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
SimpleObjects simpleObjects;
|
||||
|
||||
// endregion
|
||||
}
|
||||
|
@ -48,17 +48,16 @@ import org.apache.isis.applib.util.ObjectContracts;
|
||||
@DomainObjectLayout(bookmarking = BookmarkPolicy.AS_ROOT, cssClassFa = "fa-flag")
|
||||
public class SimpleObject implements Comparable<SimpleObject> {
|
||||
|
||||
|
||||
// region > identificatiom
|
||||
public TranslatableString title() {
|
||||
return TranslatableString.tr("Object: {name}", "name", getName());
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > name (property)
|
||||
|
||||
private String name;
|
||||
|
||||
// region > identificatiom
|
||||
public TranslatableString title() {
|
||||
return TranslatableString.tr("Object: {name}", "name", getName());
|
||||
}
|
||||
|
||||
@javax.jdo.annotations.Column(allowsNull = "false", length = 40)
|
||||
@Title(sequence = "1")
|
||||
|
@ -33,6 +33,14 @@ import org.apache.isis.applib.services.i18n.TranslatableString;
|
||||
@DomainService(repositoryFor = SimpleObject.class)
|
||||
@DomainServiceLayout(menuOrder = "10")
|
||||
public class SimpleObjects {
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
DomainObjectContainer container;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > title
|
||||
public TranslatableString title() {
|
||||
@ -81,12 +89,4 @@ public class SimpleObjects {
|
||||
return obj;
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > injected services
|
||||
|
||||
@javax.inject.Inject
|
||||
DomainObjectContainer container;
|
||||
|
||||
// endregion
|
||||
}
|
||||
|
@ -22,6 +22,15 @@ import domainapp.dom.modules.simple.SimpleObjects;
|
||||
|
||||
public class SimpleObjectCreate extends FixtureScript {
|
||||
|
||||
// endregion
|
||||
|
||||
|
||||
// region > simpleObject (output)
|
||||
private SimpleObject simpleObject;
|
||||
|
||||
@javax.inject.Inject
|
||||
private SimpleObjects simpleObjects;
|
||||
|
||||
// region > name (input)
|
||||
private String name;
|
||||
|
||||
@ -36,13 +45,7 @@ public class SimpleObjectCreate extends FixtureScript {
|
||||
this.name = name;
|
||||
return this;
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
|
||||
// region > simpleObject (output)
|
||||
private SimpleObject simpleObject;
|
||||
|
||||
|
||||
/**
|
||||
* The created simple object (output).
|
||||
*/
|
||||
@ -62,8 +65,5 @@ public class SimpleObjectCreate extends FixtureScript {
|
||||
// also make available to UI
|
||||
ec.addResult(this, simpleObject);
|
||||
}
|
||||
|
||||
@javax.inject.Inject
|
||||
private SimpleObjects simpleObjects;
|
||||
|
||||
|
||||
}
|
||||
|
@ -20,13 +20,12 @@ import org.apache.isis.applib.services.jdosupport.IsisJdoSupport;
|
||||
|
||||
public class SimpleObjectsTearDown extends FixtureScript {
|
||||
|
||||
@javax.inject.Inject
|
||||
private IsisJdoSupport isisJdoSupport;
|
||||
|
||||
@Override
|
||||
protected void execute(ExecutionContext executionContext) {
|
||||
isisJdoSupport.executeUpdate("delete from \"simple\".\"SimpleObject\"");
|
||||
}
|
||||
|
||||
|
||||
@javax.inject.Inject
|
||||
private IsisJdoSupport isisJdoSupport;
|
||||
|
||||
|
||||
}
|
||||
|
@ -32,13 +32,18 @@ public class RecreateSimpleObjects extends FixtureScript {
|
||||
public final List<String> names = Collections.unmodifiableList(Arrays.asList("Foo", "Bar", "Baz",
|
||||
"Frodo", "Froyo", "Fizz", "Bip", "Bop", "Bang", "Boo"));
|
||||
|
||||
public RecreateSimpleObjects() {
|
||||
withDiscoverability(Discoverability.DISCOVERABLE);
|
||||
}
|
||||
|
||||
// region > number (optional input)
|
||||
private Integer number;
|
||||
|
||||
// endregion
|
||||
|
||||
// region > simpleObjects (output)
|
||||
private final List<SimpleObject> simpleObjects = Lists.newArrayList();
|
||||
|
||||
public RecreateSimpleObjects() {
|
||||
withDiscoverability(Discoverability.DISCOVERABLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* The number of objects to create, up to 10; optional, defaults to 3.
|
||||
*/
|
||||
@ -50,12 +55,7 @@ public class RecreateSimpleObjects extends FixtureScript {
|
||||
this.number = number;
|
||||
return this;
|
||||
}
|
||||
|
||||
// endregion
|
||||
|
||||
// region > simpleObjects (output)
|
||||
private final List<SimpleObject> simpleObjects = Lists.newArrayList();
|
||||
|
||||
|
||||
/**
|
||||
* The simpleobjects created by this fixture (output).
|
||||
*/
|
||||
|
@ -44,18 +44,22 @@ public class Spell extends BaseEntity {
|
||||
|
||||
private String name;
|
||||
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(name = "SPELL_ID")
|
||||
private Long id;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "SPELLBOOK_ID_FK", referencedColumnName = "SPELLBOOK_ID")
|
||||
private Spellbook spellbook;
|
||||
|
||||
public Spell() {}
|
||||
|
||||
public Spell(String name) {
|
||||
this();
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(name = "SPELL_ID")
|
||||
private Long id;
|
||||
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@ -63,11 +67,7 @@ public class Spell extends BaseEntity {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "SPELLBOOK_ID_FK", referencedColumnName = "SPELLBOOK_ID")
|
||||
private Spellbook spellbook;
|
||||
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
@ -48,29 +48,11 @@ import com.iluwatar.servicelayer.wizard.Wizard;
|
||||
@Table(name = "SPELLBOOK")
|
||||
public class Spellbook extends BaseEntity {
|
||||
|
||||
public Spellbook() {
|
||||
spells = new HashSet<>();
|
||||
wizards = new HashSet<>();
|
||||
}
|
||||
|
||||
public Spellbook(String name) {
|
||||
this();
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(name = "SPELLBOOK_ID")
|
||||
private Long id;
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
private String name;
|
||||
|
||||
@ManyToMany(mappedBy = "spellbooks", fetch = FetchType.EAGER)
|
||||
@ -79,6 +61,24 @@ public class Spellbook extends BaseEntity {
|
||||
@OneToMany(mappedBy = "spellbook", orphanRemoval = true, cascade = CascadeType.ALL)
|
||||
private Set<Spell> spells;
|
||||
|
||||
public Spellbook() {
|
||||
spells = new HashSet<>();
|
||||
wizards = new HashSet<>();
|
||||
}
|
||||
|
||||
public Spellbook(String name) {
|
||||
this();
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
@ -45,6 +45,16 @@ import com.iluwatar.servicelayer.spellbook.Spellbook;
|
||||
@Table(name = "WIZARD")
|
||||
public class Wizard extends BaseEntity {
|
||||
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(name = "WIZARD_ID")
|
||||
private Long id;
|
||||
|
||||
private String name;
|
||||
|
||||
@ManyToMany(cascade = CascadeType.ALL)
|
||||
private Set<Spellbook> spellbooks;
|
||||
|
||||
public Wizard() {
|
||||
spellbooks = new HashSet<>();
|
||||
}
|
||||
@ -53,12 +63,7 @@ public class Wizard extends BaseEntity {
|
||||
this();
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Id
|
||||
@GeneratedValue
|
||||
@Column(name = "WIZARD_ID")
|
||||
private Long id;
|
||||
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@ -66,12 +71,7 @@ public class Wizard extends BaseEntity {
|
||||
public void setId(Long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
private String name;
|
||||
|
||||
@ManyToMany(cascade = CascadeType.ALL)
|
||||
private Set<Spellbook> spellbooks;
|
||||
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
Reference in New Issue
Block a user