blob: f4312f308f79f52120a86c1d5a34c98b0896453f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2017 Red Hat Inc. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Red Hat - Initial Contribution
*******************************************************************************/
package org.eclipse.linuxtools.internal.mylyn.osio.rest.core.response.data;
public class GenericLinks {
private String self;
private String related;
private Object meta;
public String getSelf() {
return self;
}
public String getRelated() {
return related;
}
public Object getMeta() {
return meta;
}
}