001/*
002 * Copyright 2006-2008 The Kuali Foundation
003 * 
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 * 
008 * http://www.opensource.org/licenses/ecl2.php
009 * 
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.module.purap.businessobject;
017
018import java.io.Serializable;
019
020/**
021 * This holds information we need to start shopping with B2B.
022 */
023public class B2BInformation implements Serializable {
024
025    private String punchoutURL;
026    private String punchbackURL;
027    private String environment;
028    private String userAgent;
029    private String identity;
030    private String password;
031
032    public String getPunchbackURL() {
033        return punchbackURL;
034    }
035
036    public void setPunchbackURL(String punchbackURL) {
037        this.punchbackURL = punchbackURL;
038    }
039
040    public String getPunchoutURL() {
041        return punchoutURL;
042    }
043
044    public void setPunchoutURL(String punchoutURL) {
045        this.punchoutURL = punchoutURL;
046    }
047
048    public String getEnvironment() {
049        return environment;
050    }
051
052    public void setEnvironment(String environment) {
053        this.environment = environment;
054    }
055
056    public String getUserAgent() {
057        return userAgent;
058    }
059
060    public void setUserAgent(String userAgent) {
061        this.userAgent = userAgent;
062    }
063
064    public String getIdentity() {
065        return identity;
066    }
067
068    public void setIdentity(String identity) {
069        this.identity = identity;
070    }
071
072    public String getPassword() {
073        return password;
074    }
075
076    public void setPassword(String password) {
077        this.password = password;
078    }
079
080}