Home | History | Annotate | Download | only in ims

Lines Matching refs:urn

43  * P-Preferred-Service: urn:urn-7:3gpp-service.exampletelephony.version1
58 * "The URN consists of a hierarchical service identifier or application
65 * the resulting URN is still valid, referring a more generic
80 * 1 sub-service or 1 sub-application is present in the URN declaration.
84 * urn:urn-7:3gpp-service OR urn:urn-7:3gpp-application alone with no sub-services
90 * of the application to make sense of the entire URN holistically. We can only check for the
105 String urn = this.lexer.getBuffer();
106 if(urn.contains(ParameterNamesIms.SERVICE_ID)){
108 if(urn.contains(ParameterNamesIms.SERVICE_ID_LABEL))
110 String serviceID = urn.split(ParameterNamesIms.SERVICE_ID_LABEL+".")[1];
114 throw new InvalidArgumentException("URN should atleast have one sub-service");
122 else if(urn.contains(ParameterNamesIms.APPLICATION_ID_LABEL))
124 String appID = urn.split(ParameterNamesIms.APPLICATION_ID_LABEL)[1];
127 throw new InvalidArgumentException("URN should atleast have one sub-application");
137 throw new InvalidArgumentException("URN is not well formed");