Home | History | Annotate | Download | only in parser

Lines Matching refs:ORGANIZATION

31 /** Parser for Organization header.
44 * @param organization the header to parse
46 public OrganizationParser(String organization) {
47 super(organization);
60 * @return SIPHeader (Organization object)
67 Organization organization = new Organization();
69 headerName(TokenTypes.ORGANIZATION);
71 organization.setHeaderName(SIPHeaderNames.ORGANIZATION);
76 organization.setOrganization(value.trim());
78 return organization;