com.apitrary.api.client.ApitraryApi Maven / Gradle / Ivy
/*
* Copyright 2012 Denis Neuling
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.apitrary.api.client;
/**
*
* ApitraryApi class.
*
*
* @author Denis Neuling ([email protected])
*
*/
public class ApitraryApi {
private String apiId;
private String apiKey;
/**
*
* Constructor for ApitraryApi.
*
*
* @param apiId
* a {@link java.lang.String} object.
* @param apiKey
* a {@link java.lang.String} object.
*/
public ApitraryApi(String apiId, String apiKey) {
this.apiId = apiId;
this.apiKey = apiKey;
}
/**
*
* Getter for the field apiId
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getApiId() {
return apiId;
}
/**
*
* Setter for the field apiId
.
*
*
* @param apiId
* a {@link java.lang.String} object.
*/
public void setApiId(String apiId) {
this.apiId = apiId;
}
/**
*
* Getter for the field apiKey
.
*
*
* @return a {@link java.lang.String} object.
*/
public String getApiKey() {
return apiKey;
}
/**
*
* Setter for the field apiKey
.
*
*
* @param apiKey
* a {@link java.lang.String} object.
*/
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy