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

com.peertopark.java.restclient.ServiceAuth Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.peertopark.java.restclient;

import com.peertopark.java.commons.objects.Login;


/**
 *
 * @author hector
 */
public class ServiceAuth extends Login {


    public ServiceAuth() {
        super();
    }

    public ServiceAuth(String auth, String passwd) {
        super(auth, passwd);
    }

    public static ServiceAuth newInstance() {
        return new ServiceAuth();
    }
    
    public static ServiceAuth newInstance(String auth, String passwd) {
        return new ServiceAuth(auth, passwd);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy