View Javadoc
1   /*
2    * Copyright 2006-2008 The Kuali Foundation
3    * 
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    * http://www.opensource.org/licenses/ecl2.php
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.ole.module.purap.businessobject;
17  
18  import java.io.Serializable;
19  
20  /**
21   * This holds information we need to start shopping with B2B.
22   */
23  public class B2BInformation implements Serializable {
24  
25      private String punchoutURL;
26      private String punchbackURL;
27      private String environment;
28      private String userAgent;
29      private String identity;
30      private String password;
31  
32      public String getPunchbackURL() {
33          return punchbackURL;
34      }
35  
36      public void setPunchbackURL(String punchbackURL) {
37          this.punchbackURL = punchbackURL;
38      }
39  
40      public String getPunchoutURL() {
41          return punchoutURL;
42      }
43  
44      public void setPunchoutURL(String punchoutURL) {
45          this.punchoutURL = punchoutURL;
46      }
47  
48      public String getEnvironment() {
49          return environment;
50      }
51  
52      public void setEnvironment(String environment) {
53          this.environment = environment;
54      }
55  
56      public String getUserAgent() {
57          return userAgent;
58      }
59  
60      public void setUserAgent(String userAgent) {
61          this.userAgent = userAgent;
62      }
63  
64      public String getIdentity() {
65          return identity;
66      }
67  
68      public void setIdentity(String identity) {
69          this.identity = identity;
70      }
71  
72      public String getPassword() {
73          return password;
74      }
75  
76      public void setPassword(String password) {
77          this.password = password;
78      }
79  
80  }