All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.podio.common.AuthorizationInterface Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.common;

import java.net.URL;

public class AuthorizationInterface {

	private int id;

	private String name;

	private URL url;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public URL getUrl() {
		return url;
	}

	public void setUrl(URL url) {
		this.url = url;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy