/* * Copyright (c) 2010, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. * * WSO2 Inc. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ package org.wso2.carbon.security.config.service; public class SecurityScenarioData { private String scenarioId; private String summary; private String category; private String description; private boolean currentScenario; private String type; private String policyRegistryPath; public String getScenarioId() { return scenarioId; } public void setScenarioId(String scenarioId) { this.scenarioId = scenarioId; } public String getSummary() { return summary; } public void setSummary(String summary) { this.summary = summary; } public String getCategory() { return category; } public void setCategory(String category) { this.category = category; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public boolean getCurrentScenario() { return currentScenario; } public void setCurrentScenario(boolean currentScenario) { this.currentScenario = currentScenario; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getPolicyRegistryPath() { return policyRegistryPath; } public void setPolicyRegistryPath(String policyRegistryPath) { this.policyRegistryPath = policyRegistryPath; } }