Skip to content
This repository was archived by the owner on Jan 28, 2021. It is now read-only.

Commit c5d069a

Browse files
committed
#87 - changes org.incode.examples to org.incode.example
1 parent 6cf91e4 commit c5d069a

File tree

151 files changed

+335
-364
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+335
-364
lines changed

modules/examples/alias/integtests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
<properties>
6868
<isis.integTest.module>
69-
org.incode.examples.alias.integtests.AliasModuleIntegTestModule
69+
org.incode.example.alias.integtests.AliasModuleIntegTestModule
7070
</isis.integTest.module>
7171
</properties>
7272

modules/examples/alias/integtests/src/test/java/org/incode/examples/alias/integtests/AliasModuleBootstrapIntegTest.java modules/examples/alias/integtests/src/test/java/org/incode/example/alias/integtests/AliasModuleBootstrapIntegTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
package org.incode.examples.alias.integtests;
19+
package org.incode.example.alias.integtests;
2020

2121
import javax.inject.Inject;
2222

modules/examples/alias/integtests/src/test/java/org/incode/examples/alias/integtests/AliasModuleIntegTestAbstract.java modules/examples/alias/integtests/src/test/java/org/incode/example/alias/integtests/AliasModuleIntegTestAbstract.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.alias.integtests;
1+
package org.incode.example.alias.integtests;
22

33
import javax.inject.Inject;
44

modules/examples/alias/integtests/src/test/java/org/incode/examples/alias/integtests/AliasModuleIntegTestModule.java modules/examples/alias/integtests/src/test/java/org/incode/example/alias/integtests/AliasModuleIntegTestModule.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.alias.integtests;
1+
package org.incode.example.alias.integtests;
22

33
import java.util.Set;
44

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.alias.integtests.tests.alias;
1+
package org.incode.example.alias.integtests.tests.alias;
22

33
import java.sql.SQLIntegrityConstraintViolationException;
44
import java.util.Collection;
@@ -15,7 +15,7 @@
1515

1616
import org.apache.isis.applib.AbstractSubscriber;
1717

18-
import org.incode.examples.alias.integtests.AliasModuleIntegTestAbstract;
18+
import org.incode.example.alias.integtests.AliasModuleIntegTestAbstract;
1919
import org.incode.example.alias.demo.usage.fixture.DemoObject_withAliases_tearDown;
2020
import org.incode.example.alias.demo.shared.dom.DemoObjectMenu;
2121
import org.incode.example.alias.dom.impl.Alias;
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.alias.integtests.tests.demo;
1+
package org.incode.example.alias.integtests.tests.demo;
22

33
import java.util.List;
44

@@ -8,7 +8,7 @@
88
import org.junit.Before;
99
import org.junit.Test;
1010

11-
import org.incode.examples.alias.integtests.AliasModuleIntegTestAbstract;
11+
import org.incode.example.alias.integtests.AliasModuleIntegTestAbstract;
1212
import org.incode.example.alias.demo.usage.fixture.DemoObject_withAliases_create2;
1313
import org.incode.example.alias.demo.shared.dom.DemoObject;
1414
import org.incode.example.alias.demo.shared.dom.DemoObjectMenu;

modules/examples/classification/integtests/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
<properties>
6868
<isis.integTest.module>
69-
org.incode.examples.classification.integtests.ClassificationModuleIntegTestModule
69+
org.incode.example.classification.integtests.ClassificationModuleIntegTestModule
7070
</isis.integTest.module>
7171
</properties>
7272

Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* specific language governing permissions and limitations
1717
* under the License.
1818
*/
19-
package org.incode.examples.classification.integtests;
19+
package org.incode.example.classification.integtests;
2020

2121
import javax.inject.Inject;
2222

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests;
1+
package org.incode.example.classification.integtests;
22

33
import javax.inject.Inject;
44

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests;
1+
package org.incode.example.classification.integtests;
22

33
import java.util.Set;
44

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.applicability;
1+
package org.incode.example.classification.integtests.tests.applicability;
22

33
import java.util.List;
44

@@ -15,7 +15,7 @@
1515
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1616
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1717
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
18-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
18+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1919

2020
import static org.assertj.core.api.Assertions.assertThat;
2121

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.applicability;
1+
package org.incode.example.classification.integtests.tests.applicability;
22

33
import javax.inject.Inject;
44

@@ -11,7 +11,7 @@
1111
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1212
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1313
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
14-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
14+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1515

1616
public class Applicability_UiSubscriber_IntegTest extends ClassificationModuleIntegTestAbstract {
1717

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44
import javax.jdo.JDODataStoreException;
@@ -13,7 +13,7 @@
1313
import org.incode.example.classification.dom.impl.category.taxonomy.Taxonomy;
1414
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1515
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
16-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
16+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1717
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1818
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1919

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import java.util.List;
44

@@ -13,7 +13,7 @@
1313
import org.incode.example.classification.dom.impl.classification.Classification;
1414
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1515
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
16-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
16+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1717
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPath;
1818
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1919
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -11,7 +11,7 @@
1111
import org.incode.example.classification.dom.impl.category.taxonomy.Taxonomy;
1212
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1313
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
14-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
14+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1515
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1616
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1717

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -10,7 +10,7 @@
1010
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1111
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1212
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
13-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
13+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1414
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1515
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1616

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import java.util.List;
44

@@ -13,7 +13,7 @@
1313
import org.incode.example.classification.dom.impl.category.taxonomy.Taxonomy;
1414
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1515
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
16-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
16+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1717
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1818
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1919
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_tearDown;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import java.util.List;
44

@@ -12,7 +12,7 @@
1212
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1313
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1414
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
15-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
15+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1616
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1717
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1818

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -12,7 +12,7 @@
1212
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1313
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1414
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
15-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
15+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1616
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1717
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1818

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -14,7 +14,7 @@
1414
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1515
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1616
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
17-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
17+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1818
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1919
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
2020
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_tearDown;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -12,7 +12,7 @@
1212
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1313
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1414
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
15-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
15+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1616
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1717
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1818
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_tearDown;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -10,7 +10,7 @@
1010
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1111
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1212
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
13-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
13+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1414
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1515
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1616

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -14,7 +14,7 @@
1414
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1515
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1616
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
17-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
17+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1818
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1919
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
2020

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category;
1+
package org.incode.example.classification.integtests.tests.category;
22

33
import javax.inject.Inject;
44

@@ -13,7 +13,7 @@
1313
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1414
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1515
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
16-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
16+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1717
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1818
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1919

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category.taxonomy;
1+
package org.incode.example.classification.integtests.tests.category.taxonomy;
22

33
import java.util.List;
44

@@ -22,7 +22,7 @@
2222
import org.incode.example.classification.dom.impl.category.taxonomy.Taxonomy;
2323
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
2424
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
25-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
25+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
2626

2727
import static org.assertj.core.api.Assertions.assertThat;
2828

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.category.taxonomy;
1+
package org.incode.example.classification.integtests.tests.category.taxonomy;
22

33
import java.util.List;
44

@@ -14,7 +14,7 @@
1414
import org.incode.example.classification.dom.impl.classification.Classification;
1515
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1616
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
17-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
17+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1818
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPath;
1919
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
2020
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.classification;
1+
package org.incode.example.classification.integtests.tests.classification;
22

33
import javax.inject.Inject;
44

@@ -9,7 +9,7 @@
99
import org.incode.example.classification.dom.impl.category.CategoryRepository;
1010
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1111
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
12-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
12+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1313
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1414
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
1515

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.classification;
1+
package org.incode.example.classification.integtests.tests.classification;
22

33
import javax.inject.Inject;
44

@@ -11,7 +11,7 @@
1111
import org.incode.example.classification.dom.impl.classification.Classification;
1212
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1313
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
14-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
14+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1515
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPath;
1616
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1717
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.classification;
1+
package org.incode.example.classification.integtests.tests.classification;
22

33
import javax.inject.Inject;
44

@@ -11,7 +11,7 @@
1111
import org.incode.example.classification.dom.impl.classification.Classification;
1212
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
1313
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
14-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
14+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
1515
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPath;
1616
import org.incode.example.classification.demo.shared.demowithatpath.dom.DemoObjectWithAtPathMenu;
1717
import org.incode.example.classification.demo.usage.fixture.DemoObjectWithAtPath_and_OtherObjectWithAtPath_create3;
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package org.incode.examples.classification.integtests.tests.classification;
1+
package org.incode.example.classification.integtests.tests.classification;
22

33
import java.util.ArrayList;
44
import java.util.Collection;
@@ -27,7 +27,7 @@
2727
import org.incode.example.classification.dom.impl.classification.Classification;
2828
import org.incode.example.classification.dom.impl.classification.ClassificationRepository;
2929
import org.incode.example.classification.dom.spi.ApplicationTenancyService;
30-
import org.incode.examples.classification.integtests.ClassificationModuleIntegTestAbstract;
30+
import org.incode.example.classification.integtests.ClassificationModuleIntegTestAbstract;
3131

3232
import static org.assertj.core.api.Assertions.assertThat;
3333

0 commit comments

Comments
 (0)