X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=ONAP-PAP-REST%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fpap%2Fxacml%2Frest%2Fadapters%2FGridData.java;fp=ONAP-PAP-REST%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fpolicy%2Fpap%2Fxacml%2Frest%2Fadapters%2FGridData.java;h=7e05efc63cf2957966e614f8d9a0ed26553e5668;hb=ef9258807505ff24e8221bae25d06ab65029397c;hp=1ed4bf3b552dab205972cdd27dde986d5eb4dafc;hpb=1ef83d84ac1f803280686cca6960d1dc20695ace;p=policy%2Fengine.git diff --git a/ONAP-PAP-REST/src/main/java/org/onap/policy/pap/xacml/rest/adapters/GridData.java b/ONAP-PAP-REST/src/main/java/org/onap/policy/pap/xacml/rest/adapters/GridData.java index 1ed4bf3b5..7e05efc63 100644 --- a/ONAP-PAP-REST/src/main/java/org/onap/policy/pap/xacml/rest/adapters/GridData.java +++ b/ONAP-PAP-REST/src/main/java/org/onap/policy/pap/xacml/rest/adapters/GridData.java @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * ONAP-PAP-REST * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. + * Copyright (C) 2017-2018 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. @@ -20,43 +20,43 @@ package org.onap.policy.pap.xacml.rest.adapters; -import java.util.ArrayList; +import java.util.List; public class GridData { - private ArrayList attributes; - private ArrayList alAttributes; - private ArrayList transportProtocols; - private ArrayList appProtocols; + private List attributes; + private List alAttributes; + private List transportProtocols; + private List appProtocols; - public ArrayList getAttributes() { + public List getAttributes() { return attributes; } - public void setAttributes(ArrayList attributes) { + public void setAttributes(List attributes) { this.attributes = attributes; } - public ArrayList getAlAttributes() { + public List getAlAttributes() { return alAttributes; } - public void setAlAttributes(ArrayList alAttributes) { + public void setAlAttributes(List alAttributes) { this.alAttributes = alAttributes; } - public ArrayList getAppProtocols() { + public List getAppProtocols() { return appProtocols; } - public void setAppProtocols(ArrayList appProtocols) { + public void setAppProtocols(List appProtocols) { this.appProtocols = appProtocols; } - public ArrayList getTransportProtocols() { + public List getTransportProtocols() { return transportProtocols; } - public void setTransportProtocols(ArrayList transportProtocols) { + public void setTransportProtocols(List transportProtocols) { this.transportProtocols = transportProtocols; } }