1 /* 2 * Copyright 2001-2008 The Apache Software Foundation. 3 * 4 * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0 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 */ 17 18 19 package org.apache.juddi.api_v3; 20 21 import java.io.Serializable; 22 23 import javax.xml.bind.annotation.XmlAccessType; 24 import javax.xml.bind.annotation.XmlAccessorType; 25 import javax.xml.bind.annotation.XmlElement; 26 import javax.xml.bind.annotation.XmlTransient; 27 import javax.xml.bind.annotation.XmlType; 28 29 30 /** 31 * <p>Java class for get_allClientSubscriptionInfoDetail type. Specific to juddi. 32 * 33 * @author <a href="mailto:kstam@apache.org">Kurt T Stam</a> 34 */ 35 @XmlAccessorType(XmlAccessType.FIELD) 36 @XmlType(name = "get_allClientSubscriptionInfoDetail", propOrder = { 37 "authInfo" 38 }) 39 public class GetAllClientSubscriptionInfoDetail implements Serializable{ 40 @XmlTransient 41 private static final long serialVersionUID = 699262934433717857L; 42 @XmlElement(namespace = "urn:uddi-org:api_v3") 43 protected String authInfo; 44 45 /** 46 * Gets the value of the authInfo property. 47 * 48 * @return 49 * possible object is 50 * {@link String } 51 * 52 */ 53 public String getAuthInfo() { 54 return authInfo; 55 } 56 57 /** 58 * Sets the value of the authInfo property. 59 * 60 * @param value 61 * allowed object is 62 * {@link String } 63 * 64 */ 65 public void setAuthInfo(String value) { 66 this.authInfo = value; 67 } 68 69 }