/* * Seldon -- open source prediction engine * ======================================= * Copyright 2011-2015 Seldon Technologies Ltd and Rummble Ltd (http://www.seldon.io/) * ********************************************************************************************** * * 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 io.seldon.client.test.js; /** * Created by: marc on 16/10/2012 at 12:00 */ public class JsTestState { private String endpoint; private String consumerKey; private String userPrefix; private String itemPrefix; private String jsonpCallback; private String httpReferer; private boolean enabled; public String getEndpoint() { return endpoint; } public void setEndpoint(String endpoint) { this.endpoint = endpoint; } public String getConsumerKey() { return consumerKey; } public void setConsumerKey(String consumerKey) { this.consumerKey = consumerKey; } public String getUserPrefix() { return userPrefix; } public void setUserPrefix(String userPrefix) { this.userPrefix = userPrefix; } public String getItemPrefix() { return itemPrefix; } public void setItemPrefix(String itemPrefix) { this.itemPrefix = itemPrefix; } public String getJsonpCallback() { return jsonpCallback; } public void setJsonpCallback(String jsonpCallback) { this.jsonpCallback = jsonpCallback; } public boolean isEnabled() { return enabled; } public void setEnabled(boolean enabled) { this.enabled = enabled; } public String getHttpReferer() { return httpReferer; } public void setHttpReferer(String httpReferer) { this.httpReferer = httpReferer; } }