Home | History | Annotate | Download | only in ims

Lines Matching defs:networkID

55     private String networkID;
67 public PVisitedNetworkID(String networkID) {
70 setVisitedNetworkID(networkID);
103 * @param networkID - string value
105 public void setVisitedNetworkID(String networkID) {
106 if (networkID == null)
107 throw new NullPointerException(" the networkID parameter is null");
109 this.networkID = networkID;
117 * @param networkID - token value
119 public void setVisitedNetworkID(Token networkID) {
120 if (networkID == null)
121 throw new NullPointerException(" the networkID parameter is null");
123 this.networkID = networkID.getTokenValue();
133 return networkID;
157 if (this.networkID != null)
158 retval.networkID = this.networkID;