Cisco Cisco Prime Home 2.4 Developer's Guide

Page of 78
Cisco Prime Home – Integration Guide
 
 
OL-28557-01   v5.0.1
 
73 
* This code is provided AS-IS for illustration purposes. 
*/ 
 
package com.clearaccess.subscriber.api; 
 
public class Address { 
private final String 
street, 
city, 
state, 
postalCode; 
 
public Address(final String street, final String city, final 
String state, final String postalCode) { 
this.street = street; 
this.city = city; 
this.state = state; 
this.postalCode = postalCode; 

 
public String getStreet() { 
return street; 

 
public String getCity() { 
return city; 

 
public String getState() { 
return state; 

 
public String getPostalCode() { 
return postalCode;