Added range type to subject-feature-definition/parameter
[groupbasedpolicy.git] / groupbasedpolicy / src / main / java / org / opendaylight / groupbasedpolicy / renderer / opflex / lib / messages / EndpointIdentity.java
1 /*
2  * Copyright (C) 2014 Cisco Systems, Inc.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Authors : Thomas Bachman
9  */
10 package org.opendaylight.groupbasedpolicy.renderer.opflex.lib.messages;
11
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Uri;
13
14 public class EndpointIdentity {
15         private String identifier;
16         private Uri context;
17
18         public String getIdentifier() {
19                 return identifier;
20         }
21         public void setIdentifier(String identifier) {
22                 this.identifier = identifier;
23         }
24         public Uri getContext() {
25                 return context;
26         }
27         public void setContext(Uri context) {
28                 this.context = context;
29         }
30
31 }