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

com.alon.spring.crud.api.projection.ProjectionRepresentation Maven / Gradle / Ivy

package com.alon.spring.crud.api.projection;

import java.util.Map;

public class ProjectionRepresentation {

    public String projectionName;
    public boolean singleDefault;
    public boolean collectionDefault;
    public Map representation;

    public ProjectionRepresentation() {}

    public ProjectionRepresentation(String projectionName, Map representation) {
        this.projectionName = projectionName;
        this.representation = representation;
    }

    public String getProjectionName() {
        return projectionName;
    }

    public void setProjectionName(String projectionName) {
        this.projectionName = projectionName;
    }

    public boolean isSingleDefault() {
        return singleDefault;
    }

    public void setSingleDefault(boolean singleDefault) {
        this.singleDefault = singleDefault;
    }

    public boolean isCollectionDefault() {
        return collectionDefault;
    }

    public void setCollectionDefault(boolean collectionDefault) {
        this.collectionDefault = collectionDefault;
    }

    public Map getRepresentation() {
        return representation;
    }

    public void setRepresentation(Map representation) {
        this.representation = representation;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy