Home | History | Annotate | Download | only in ims

Lines Matching refs:urn

42  * P-Asserted-Service: urn:urn-7:3gpp-service.exampletelephony.version1
67 String urn = this.lexer.getBuffer();
68 if(urn.contains(ParameterNamesIms.SERVICE_ID)){
70 if(urn.contains(ParameterNamesIms.SERVICE_ID_LABEL))
72 String serviceID = urn.split(ParameterNamesIms.SERVICE_ID_LABEL+".")[1];
76 throw new InvalidArgumentException("URN should atleast have one sub-service");
82 pps.setSubserviceIdentifiers(urn.split(ParameterNamesIms.SERVICE_ID_LABEL)[1]);
84 else if(urn.contains(ParameterNamesIms.APPLICATION_ID_LABEL))
86 String appID = urn.split(ParameterNamesIms.APPLICATION_ID_LABEL+".")[1];
89 throw new InvalidArgumentException("URN should atleast have one sub-application");
94 pps.setApplicationIdentifiers(urn.split(ParameterNamesIms.APPLICATION_ID_LABEL)[1]);
99 throw new InvalidArgumentException("URN is not well formed");