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

com.google.sitebricks.example.NextPage Maven / Gradle / Ivy

package com.google.sitebricks.example;

import com.google.sitebricks.At;

/**
 * The target page that receives the state.
 *
 * @author [email protected] (Dhanji R. Prasanna)
 */
@At("/nextpage")
public class NextPage {
  private String persistedValue;

  public NextPage(String persistedValue) {
    this.persistedValue = persistedValue;
  }

  public String getPersistedValue() {
    return persistedValue;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy