com.google.code.linkedinapi.schema.Location Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2010-2011 Nabeel Mukhtar
*
* 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.google.code.linkedinapi.schema;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{}description"/>
* <element ref="{}is-headquarters"/>
* <element ref="{}is-active"/>
* <element ref="{}address"/>
* <element ref="{}contact-info"/>
* <element ref="{}name"/>
* <element ref="{}postal-code"/>
* <element ref="{}country"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
public interface Location
extends SchemaEntity
{
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
String getDescription();
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
void setDescription(String value);
/**
* Gets the value of the isHeadquarters property.
*
*/
boolean isIsHeadquarters();
/**
* Sets the value of the isHeadquarters property.
*
*/
void setIsHeadquarters(boolean value);
/**
* Gets the value of the isActive property.
*
*/
boolean isIsActive();
/**
* Sets the value of the isActive property.
*
*/
void setIsActive(boolean value);
/**
* Gets the value of the address property.
*
* @return
* possible object is
* {@link Address }
*
*/
Address getAddress();
/**
* Sets the value of the address property.
*
* @param value
* allowed object is
* {@link Address }
*
*/
void setAddress(Address value);
/**
* Gets the value of the contactInfo property.
*
* @return
* possible object is
* {@link ContactInfo }
*
*/
ContactInfo getContactInfo();
/**
* Sets the value of the contactInfo property.
*
* @param value
* allowed object is
* {@link ContactInfo }
*
*/
void setContactInfo(ContactInfo value);
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
String getName();
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
void setName(String value);
/**
* Gets the value of the postalCode property.
*
* @return
* possible object is
* {@link String }
*
*/
String getPostalCode();
/**
* Sets the value of the postalCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
void setPostalCode(String value);
/**
* Gets the value of the country property.
*
* @return
* possible object is
* {@link Country }
*
*/
Country getCountry();
/**
* Sets the value of the country property.
*
* @param value
* allowed object is
* {@link Country }
*
*/
void setCountry(Country value);
}