/*- * ============LICENSE_START======================================================= * ONAP Policy Engine * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ * Licensed 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. * ============LICENSE_END========================================================= */ package org.onap.policy.rest.adapter; import java.util.List; public class ClosedLoopFaultTrapDatas { private List trap1; private List trap2; private List trap3; private List trap4; private List trap5; private List trap6; public List getTrap1() { return trap1; } public void setTrap1(List trap1) { this.trap1 = trap1; } public List getTrap2() { return trap2; } public void setTrap2(List trap2) { this.trap2 = trap2; } public List getTrap3() { return trap3; } public void setTrap3(List trap3) { this.trap3 = trap3; } public List getTrap4() { return trap4; } public void setTrap4(List trap4) { this.trap4 = trap4; } public List getTrap5() { return trap5; } public void setTrap5(List trap5) { this.trap5 = trap5; } public List getTrap6() { return trap6; } public void setTrap6(List trap6) { this.trap6 = trap6; } }