package org.apereo.cas.mgmt.services.web.beans; import java.io.Serializable; /** * The attribute release strategy used for edits. * @author Misagh Moayyed * @since 4.1 */ public class RegisteredServiceAttributeReleasePolicyStrategyEditBean extends AbstractRegisteredServiceAttributeReleasePolicyStrategyBean implements Serializable { private static final long serialVersionUID = 6295156552393546070L; private String type = Types.ALLOWED.toString(); private Object attributes; private String scriptFile; public String getScriptFile() { return scriptFile; } public void setScriptFile(final String scriptFile) { this.scriptFile = scriptFile; } public String getType() { return this.type; } public void setType(final String type) { this.type = type; } public Object getAttributes() { return this.attributes; } public void setAttributes(final Object attributes) { this.attributes = attributes; } }