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

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

The newest version!
package com.google.sitebricks.example;

import com.google.sitebricks.At;

/**
 * @author Dhanji R. Prasanna ([email protected])
 */
@At("/showif")
public class ShowIf {
    private boolean show;
    private String message = "Hello from google-sitebricks!";

    public String getMessage() {
        return message;
    }

    public boolean isShow() {
        return show;
    }

    public void setShow(boolean show) {
        this.show = show;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy