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

com.github.sarxos.webcam.ds.ipcam.IpCamAuth Maven / Gradle / Ivy

package com.github.sarxos.webcam.ds.ipcam;

import org.apache.http.auth.UsernamePasswordCredentials;


public class IpCamAuth extends UsernamePasswordCredentials {

	private static final long serialVersionUID = 807247154917333425L;

	public IpCamAuth(String user, String password) {
		super(user, password);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy