Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 565 Bytes

File metadata and controls

20 lines (14 loc) · 565 Bytes

Package types

This application comes with two package level annotations:

  • SharedKernel used to mark packages containing classes shared between multiple contexts;
  • BusinessContext used to mark packages containing classes to answer a specific business need. Classes in this package can't be used in another package.

To mark a package, you have to add a package-info.java file at the package root with:

@com.seed4j.sample.SharedKernel
package com.seed4j.sample;

or:

@com.seed4j.sample.BusinessContext
package com.seed4j.sample;