All Downloads are FREE. Search and download functionalities are using the official Maven repository.

play.mvc.ReadonlySession Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package play.mvc;

import play.libs.Codec;

class ReadonlySession extends Scope.Session {
  @Override void change() {
    throw new IllegalStateException("This is read-only session");
  }

  ReadonlySession() {
    super(Codec.ulid());
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy