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

com.xcase.box.transputs.GetAuthTokenRequest Maven / Gradle / Ivy

/**
 * Copyright 2016 Xcase All rights reserved.
 */
package com.xcase.box.transputs;

/**
 *
 * @author martin
 */
public interface GetAuthTokenRequest extends BoxRequest {

    /**
     * @return the password
     */
    public String getPassword();

    /**
     * @param password the password to set
     */
    public void setPassword(String password);

    /**
     * @return the ticket
     */
    public String getTicket();

    /**
     * @param ticket the ticket to set
     */
    public void setTicket(String ticket);

    /**
     * @return the username
     */
    public String getUsername();

    /**
     * @param username the username to set
     */
    public void setUsername(String username);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy