Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 476 Bytes

package-types.md

File metadata and controls

13 lines (9 loc) · 476 Bytes

Package types

This application comes with 2 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:

@org.play.wsjl.SharedKernel
package org.play.wsjl;